/* ================================================================
   MTHS — Kurumsal Tasarım Sistemi v3.0
   T.C. Ticaret Bakanlığı Lisanslı MTHS Hizmet Sağlayıcısı
   Renk: Koyu Kırmızı · Gri · Beyaz · Siyah
   PageSpeed 90+ optimize
================================================================ */

/* ─── VARIABLES ──────────────────────────────── */
:root {
  --red-900:   #5b0000;
  --red-800:   #8a0000;
  --red-700:   rgb(217, 38, 38);   /* Ana marka rengi: #D92626 */
  --red-600:   #f04444;
  --red-500:   #f87171;
  --red-100:   #FEF2F2;
  --red-50:    #FFF8F8;

  --gray-950:  #080808;
  --gray-900:  #111827;
  --gray-800:  #1F2937;
  --gray-700:  #374151;
  --gray-600:  #4B5563;
  --gray-500:  #6B7280;
  --gray-400:  #9CA3AF;
  --gray-300:  #D1D5DB;
  --gray-200:  #E5E7EB;
  --gray-100:  #F3F4F6;
  --gray-50:   #F9FAFB;
  --white:     #FFFFFF;

  --green:     #16a34a;
  --green-bg:  #f0fdf4;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow:    0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.18s ease;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 860px;  margin: 0 auto; padding: 0 32px; }
.section          { padding: 88px 0; }
.section-sm       { padding: 60px 0; }
.section-xs       { padding: 40px 0; }
.bg-white         { background: var(--white); }
.bg-light         { background: var(--gray-50); }
.bg-alt           { background: var(--gray-100); }
.bg-dark          { background: var(--gray-900); }
.bg-red           { background: var(--red-700); }
.text-center      { text-align: center; }
.text-white       { color: var(--white) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ─── GRID ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.14; font-weight: 800; }
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--red-700); margin-bottom: 14px;
}
.overline::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--red-700); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800; color: var(--gray-900);
  margin-bottom: 16px; line-height: 1.12;
}
.section-subtitle {
  font-size: 1.02rem; color: var(--gray-600);
  max-width: 580px; line-height: 1.8;
}

/* ─── BADGE ──────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 5px 13px; border-radius: 20px;
  margin-bottom: 18px;
}
.badge-red    { background: var(--red-100); color: var(--red-700); border: 1px solid rgba(123,24,24,0.15); }
.badge-white  { background: rgba(255,255,255,0.18); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.badge-dark   { background: var(--gray-800); color: var(--gray-300); }
.badge-green  { background: var(--green-bg); color: var(--green); border: 1px solid rgba(22,163,74,0.2); }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700; padding: 11px 24px;
  border-radius: var(--radius-sm); transition: all var(--transition);
  text-decoration: none; white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn-lg { padding: 14px 32px; font-size: 0.95rem; border-radius: var(--radius); }
.btn-primary {
  background: var(--red-700); color: var(--white); border-color: var(--red-700);
}
.btn-primary:hover {
  background: var(--red-800); border-color: var(--red-800);
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,24,24,0.35);
}
.btn-outline {
  background: transparent; color: var(--gray-700); border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--red-700); color: var(--red-700); background: var(--red-50); }
.btn-white {
  background: var(--white); color: var(--red-700); border-color: var(--white);
}
.btn-white:hover { background: var(--red-50); border-color: var(--red-50); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

/* ─── ANNOUNCE BAR ───────────────────────────── */
.announce {
  background: var(--red-800); color: rgba(255,255,255,0.88);
  font-size: 0.77rem; font-weight: 500; text-align: center;
  padding: 9px 20px; letter-spacing: 0.2px;
}
    .announce a {
        color: #ffffff;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

/* ─── NAVIGATION ─────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex; align-items: center; height: 70px; gap: 0;
}
/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; margin-right: 36px; flex-shrink: 0;
}
.nav-logo-mark {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 900px) {
  .nav-logo-img { height: 36px; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 30px; }
}
.nav-logo-text strong { display: block; font-size: 0.87rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; }
.nav-logo-text small  { font-size: 0.62rem; color: var(--gray-500); font-weight: 500; }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; font-size: 0.86rem; font-weight: 600;
  color: var(--gray-700); border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition);
}
.nav-menu > li > a:hover  { color: var(--red-700); background: var(--red-50); }
.nav-menu > li > a.active { color: var(--red-700); background: var(--red-100); }
.nav-menu > li > a svg   { transition: transform var(--transition); }
.nav-menu > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 0.84rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--red-50); color: var(--red-700); }
.dropdown .dd-icon {
  width: 26px; height: 26px; background: var(--gray-100); border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center; color: var(--gray-500);
  flex-shrink: 0; transition: background var(--transition), color var(--transition);
}
.dropdown a:hover .dd-icon { background: var(--red-100); color: var(--red-700); }
.dropdown-divider { height: 1px; background: var(--gray-100); margin: 4px 0; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 700; color: var(--gray-700);
  padding: 7px 10px; border-radius: var(--radius-sm); transition: color var(--transition);
}
.nav-phone:hover { color: var(--red-700); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius-sm); }
.burger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.28s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; flex-direction: column; border-top: 1px solid var(--gray-100); }
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px; font-size: 0.9rem; font-weight: 600;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a.sub { padding-left: 40px; font-size: 0.84rem; font-weight: 500; color: var(--gray-500); }
.mobile-nav a:hover { color: var(--red-700); background: var(--red-50); }
.mobile-nav a.active { color: var(--red-700); background: var(--red-100); }
.mobile-nav-sep { height: 1px; background: var(--gray-200); margin: 4px 0; }

/* ─── HOME HERO ──────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--red-900) 0%, var(--red-800) 40%, var(--red-700) 80%, var(--red-600) 100%);
  min-height: 620px; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; bottom: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,60,60,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px;
  align-items: center; padding: 72px 0;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,24,24,0.35); border: 1px solid rgba(252,165,165,0.35);
  color: white; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 22px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: #fca5a5; border-radius: 50%; flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 900;
  color: var(--white); line-height: 1.07; margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: #fca5a5; }
.hero-desc {
  font-size: 1.02rem; color: rgba(255,255,255,0.75);
  line-height: 1.82; max-width: 500px; margin-bottom: 34px;
}
.hero-actions { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}
.hero-trust-item svg { color: #fca5a5; flex-shrink: 0; }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(10px);
}
.hero-panel-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px;
}
.hero-panel-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,0.12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-panel-header strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--white); }
.hero-panel-header span  { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.hero-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 18px 14px; text-align: center;
}
.hero-stat-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 5px; }
.hero-stat-num sup { font-size: 1rem; font-weight: 700; }
.hero-stat-num sub { font-size: 0.9rem; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); line-height: 1.4; }
.hero-panel-cta {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 14px 16px; margin-top: 4px;
}
.hero-panel-cta-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.hero-panel-cta-text span  { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  background: linear-gradient(135deg, #3D0000 0%, var(--red-800) 45%, var(--red-700) 100%);
  padding: 56px 0 64px; position: relative; overflow: hidden;
}
/* Dot pattern */
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
/* Decorative glow */
.page-hero::after {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  top: -180px; right: -80px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero p  { font-size: 1rem; color: rgba(255,255,255,0.78); max-width: 620px; line-height: 1.78; }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* ─── LOGO STRIP ──────────────────────────────── */
.logo-strip {
  background: var(--white); border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); padding: 28px 0; overflow: hidden;
}
.logo-strip-label {
  text-align: center; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--gray-400); margin-bottom: 22px;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 52px; align-items: center;
  animation: marquee 34s linear infinite; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  font-size: 0.8rem; font-weight: 700; color: var(--gray-400);
  white-space: nowrap; letter-spacing: 0.3px; transition: color var(--transition);
}
.logo-item:hover { color: var(--red-700); }

/* ─── FEATURE CARD ────────────────────────────── */
.feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--red-700);
}
.feature-icon {
  width: 48px; height: 48px; background: var(--red-100); color: var(--red-700);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 9px; color: var(--gray-900); }
.feature-card p  { font-size: 0.855rem; color: var(--gray-600); line-height: 1.72; }

/* ─── STAT STRIP ──────────────────────────────── */
.stat-strip { background: var(--gray-900); padding: 60px 0; }
.stat-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-strip-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-strip-item:last-child { border-right: none; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-num em { font-style: normal; color: #fca5a5; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ─── PROCESS ─────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 27px;
  left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 2px; background: var(--gray-200);
}
.process-step { text-align: center; padding: 0 20px; }
.process-num {
  width: 54px; height: 54px; background: var(--red-700); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 800; margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--gray-200);
}
.process-step h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.process-step p  { font-size: 0.82rem; color: var(--gray-500); line-height: 1.68; }

/* ─── INFO BOX ────────────────────────────────── */
.info-box {
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.info-box-danger  { background: var(--red-50);  border: 1px solid rgba(123,24,24,0.15); }
.info-box-warning { background: #FFFBEB; border: 1px solid rgba(217,119,6,0.2); }
.info-box-success { background: var(--green-bg); border: 1px solid rgba(22,163,74,0.2); }
.info-box-icon { flex-shrink: 0; margin-top: 1px; }
.info-box p { font-size: 0.875rem; color: var(--gray-700); line-height: 1.72; }

/* ─── TABLE ───────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th {
  background: var(--gray-900); color: var(--white);
  padding: 14px 20px; text-align: left; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.5px;
}
.data-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600); vertical-align: top; line-height: 1.65;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-50); }
.data-table tr:hover td { background: var(--red-50); }
.table-wrap { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ─── CHECKLIST ───────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 11px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.88rem; color: var(--gray-600); line-height: 1.65;
}
.check-list li .chk {
  width: 20px; height: 20px; background: var(--red-700); border-radius: 50%; color:#fff;
  flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center;
}
.check-list li .chk svg { width: 10px; height: 10px; }

/* ─── FORM ────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-group label .req { color: var(--red-700); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--gray-900);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--red-700); box-shadow: 0 0 0 3px rgba(123,24,24,0.09);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }

/* ─── PRICING CARD ────────────────────────────── */
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: all var(--transition); position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--red-700); box-shadow: 0 0 0 1px var(--red-700), var(--shadow-lg); }
.pricing-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red-700); color: var(--white); font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 16px; border-radius: 20px;
}
.pricing-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: var(--red-100); border-radius: var(--radius); color: var(--red-700);
  display: flex; align-items: center; justify-content: center;
}
.pricing-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.pricing-cta { display: block; margin-top: 28px; }
.pricing-features { list-style: none; text-align: left; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--gray-600); }
.pricing-features li svg { color: var(--green); flex-shrink: 0; }

/* ─── FAQ ACCORDION ───────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 15px; padding-top: 20px; }
/* ─── FAQ ACCORDION ───────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 15px; padding-top: 20px; }
.faq-item { 
  background: #ffffff !important; 
  border: 1px solid #e5e7eb !important; 
  border-radius: 12px !important; 
  margin-bottom: 0 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
  transition: all 0.3s ease;
  list-style: none !important;
}
.faq-item:hover { border-color: #7B1818 !important; box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important; }
.faq-item summary {
  display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 16px;
  padding: 22px 28px !important; font-size: 1.05rem !important; font-weight: 700 !important; color: #111827 !important;
  cursor: pointer !important; list-style: none !important; position: relative !important;
}
.faq-item summary::-webkit-details-marker { display: none !important; }
.faq-item summary::after {
  content: '+' !important; font-size: 1.6rem !important; font-weight: 300 !important; color: #7B1818 !important;
  transition: transform 0.3s;
}
.faq-item[open] summary { border-bottom: 1px solid #f9fafb !important; color: #7B1818 !important; }
.faq-item[open] summary::after { content: '−' !important; transform: rotate(180deg); }
.faq-body { 
  padding: 24px 28px !important; 
  font-size: 0.95rem !important; color: #374151 !important; 
  line-height: 1.8 !important; 
  background: #fff !important;
}

/* ─── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); color: var(--white); margin-bottom: 14px; }
.cta-banner p  { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 30px; line-height: 1.78; }
.cta-actions   { display: flex; justify-content: center; gap: 13px; flex-wrap: wrap; }

/* ─── SIDEBAR ─────────────────────────────────── */
.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 16px; color: var(--gray-900); }
.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; font-size: 0.84rem; color: var(--gray-600);
  border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition);
}
.sidebar-links a:hover { background: var(--red-50); color: var(--red-700); }
.sidebar-links a svg { flex-shrink: 0; }

/* ─── SECTOR / FIRM LIST ──────────────────────── */
.sector-section { margin-bottom: 44px; }
.sector-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--red-700); border-bottom: 2px solid var(--red-700); padding-bottom: 10px;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.firm-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px;
}
.firm-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 0.83rem; color: var(--gray-700); font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.firm-item:hover { border-color: var(--red-700); color: var(--red-700); background: var(--red-50); }

/* ─── COMPARISON GRID ─────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.compare-card { border-radius: var(--radius-lg); padding: 24px; }
.compare-bad  { background: var(--red-50); border: 2px solid rgba(123,24,24,0.2); }
.compare-good { background: var(--green-bg); border: 2px solid rgba(22,163,74,0.25); }
.compare-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.compare-bad  .compare-label { color: var(--red-700); }
.compare-good .compare-label { color: var(--green); }
.compare-items { display: flex; flex-direction: column; gap: 8px; }
.compare-item { font-size: 0.84rem; line-height: 1.6; color: var(--gray-700); }

/* ─── CAPTCHA ─────────────────────────────────── */
.captcha-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--gray-100); border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 8px;
}
#captchaDisplay {
  font-family: 'Courier New', monospace; font-size: 1.3rem; font-weight: 700;
  letter-spacing: 6px; color: var(--gray-900); user-select: none;
  background: var(--white); padding: 6px 14px; border-radius: var(--radius-xs);
  border: 1px solid var(--gray-300); min-width: 120px; text-align: center;
}
.captcha-refresh {
  background: var(--red-700); color: var(--white); border: none;
  padding: 6px 12px; border-radius: var(--radius-xs); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition); white-space: nowrap;
}
.captcha-refresh:hover { background: var(--red-800); }

/* ─── FOOTER ──────────────────────────────────── */
.footer { background: var(--gray-900); color: var(--gray-400); }
.footer-main { padding: 72px 0 52px; }
.footer-grid {
  display: grid; grid-template-columns: 2.1fr 1fr 1fr 1.3fr; gap: 52px;
}

/* Footer brand */
.footer-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-logo-mark {
  width: 40px; height: 40px; background: var(--red-700); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 0.72rem; flex-shrink: 0;
}
.footer-logo-text strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.footer-logo-text small  { font-size: 0.64rem; color: var(--gray-500); }
.footer-brand > p { font-size: 0.84rem; line-height: 1.82; color: var(--gray-500); margin-bottom: 22px; max-width: 290px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--gray-500);
}
.footer-contact-row svg { color: var(--red-600); flex-shrink: 0; margin-top: 1px; }
.footer-contact-row a { color: var(--gray-400); transition: color var(--transition); }
.footer-contact-row a:hover { color: var(--white); }
.footer-license {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 14px 16px; margin-top: 22px;
}
.footer-license-icon {
  width: 34px; height: 34px; background: var(--red-700); border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-license strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--white); margin-bottom: 1px; }
.footer-license span   { font-size: 0.68rem; color: var(--gray-600); }

/* Footer columns */
.footer-col h4 {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.84rem; color: var(--gray-500);
  transition: color var(--transition); display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--red-700); border-radius: 50%; flex-shrink: 0; opacity: 0.7;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { opacity: 1; }

/* Footer reach column */
.footer-reach-phone {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  margin-bottom: 8px; text-decoration: none; transition: color var(--transition);
}
.footer-reach-phone:hover { color: #fca5a5; }
.footer-reach-phone svg { color: var(--red-600); }
.footer-hours { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.footer-reach-email {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--gray-500); margin-bottom: 20px;
  text-decoration: none; transition: color var(--transition);
}
.footer-reach-email:hover { color: var(--gray-300); }

/* Footer bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 0.78rem; color: var(--gray-600);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--gray-600); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gray-400); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-panel  { max-width: 480px; }
  .hero-desc   { max-width: 100%; }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-item { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .stat-strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid::before { display: none; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-phone { display: none; }
  .burger { display: flex; }
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-inner { gap: 36px; padding: 52px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { flex-direction: column; text-align: center; }
  .testimonial-slide-inner { padding: 28px 20px; }
  .leader-grid { grid-template-columns: 1fr; }
}

/* ─── TRUST / MINISTRY BAR ───────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}
.trust-bar-grid {
  display: flex; align-items: center; gap: 48px;
  justify-content: center; flex-wrap: wrap;
}
.trust-bar-ministry {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.trust-bar-ministry img {
  height: 52px; width: auto; object-fit: contain; flex-shrink: 0;
}
.trust-bar-ministry-text strong {
  display: block; font-size: 0.82rem; font-weight: 800; color: var(--gray-900); margin-bottom: 3px;
}
.trust-bar-ministry-text span {
  font-size: 0.75rem; color: var(--gray-500);
}
.trust-bar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
}
.trust-bar-item-icon {
  width: 40px; height: 40px; background: var(--red-100); color: var(--red-700);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-bar-item-text strong {
  display: block; font-size: 0.84rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px;
}
.trust-bar-item-text span { font-size: 0.75rem; color: var(--gray-500); }
.trust-bar-cta-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

/* ─── LEADER SECTION ──────────────────────────── */
.leader-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.leader-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(123,24,24,0.12) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.leader-section .container { position: relative; z-index: 1; }
.leader-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.leader-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 900;
  color: var(--white); line-height: 1.12; margin-bottom: 16px;
}
.leader-heading em { font-style: normal; color: #fca5a5; }
.leader-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 28px; }
.leader-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px;
}
.leader-stat-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 18px 14px; text-align: center;
}
.leader-stat-num {
  font-size: 1.9rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 5px;
}
.leader-stat-num em { font-style: normal; color: #fca5a5; font-size: 1.3rem; }
.leader-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.leader-badges { display: flex; flex-direction: column; gap: 12px; }
.leader-badge-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 14px 16px;
}
.leader-badge-icon {
  width: 36px; height: 36px; background: rgba(123,24,24,0.4);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: #fca5a5; flex-shrink: 0;
}
.leader-badge-text strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--white); }
.leader-badge-text span { font-size: 0.74rem; color: rgba(255,255,255,0.45); }

/* ─── STATIC REFS GRID ────────────────────────── */
.refs-section { background: var(--gray-50); padding: 60px 0; border-bottom: 1px solid var(--gray-200); }
.refs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px;
}
.ref-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ref-item:hover {
  border-color: var(--red-700); box-shadow: var(--shadow-sm);
}
.ref-logo-mark {
  width: 34px; height: 34px; background: var(--red-50);
  border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: var(--red-700); letter-spacing: -0.5px;
}
.ref-name { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }
.ref-sector { font-size: 0.7rem; color: var(--gray-400); margin-top: 1px; }

/* ─── TESTIMONIAL SLIDER ──────────────────────── */
.testimonials-section {
  background: var(--white); padding: 88px 0; overflow: hidden;
}
.testimonial-slider {
  position: relative; overflow: hidden; margin-top: 52px; border-radius: var(--radius-xl);
}
.testimonial-track {
  display: flex; transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide { min-width: 100%; flex-shrink: 0; }
.testimonial-slide-inner {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: var(--radius-xl); padding: 56px 72px;
  display: grid; grid-template-columns: 1fr 260px; gap: 52px; align-items: center;
  position: relative; overflow: hidden;
}
.testimonial-slide-inner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,24,24,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial-quote-mark {
  font-size: 6rem; line-height: 0.7; color: rgba(123,24,24,0.4);
  font-family: Georgia, serif; margin-bottom: 16px; display: block;
}
.testimonial-text {
  font-size: 1.1rem; font-weight: 500; color: var(--white);
  line-height: 1.82; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-avatar {
  width: 44px; height: 44px; background: var(--red-700);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-author-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.testimonial-author-title { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.testimonial-company-panel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  position: relative; z-index: 1;
}
.testimonial-company-logo {
  width: 64px; height: 64px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: -1px;
}
.testimonial-company-name { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.testimonial-company-sector { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.testimonial-stars { display: flex; justify-content: center; gap: 3px; }
.testimonial-star { color: #fbbf24; font-size: 0.85rem; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.testimonial-dots .dot {
  width: 8px; height: 8px; border-radius: 4px; background: var(--gray-300);
  border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.testimonial-dots .dot.active {
  background: var(--red-700); width: 24px;
}

/* ─── FEATURES GRID (sections) ───────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
@media (max-width: 1100px) {
  .testimonial-slide-inner { grid-template-columns: 1fr; padding: 40px; }
  .testimonial-company-panel { max-width: 280px; margin: 0 auto; }
  .leader-grid { grid-template-columns: 1fr; gap: 40px; }
  .refs-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .testimonial-slide-inner { padding: 32px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─── INNER PAGE TRUST BAR ───────────────────── */
.page-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.page-trust-bar-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.page-trust-ministry {
  display: flex; align-items: center; gap: 10px;
}
.page-trust-ministry img {
  height: 34px; width: auto; object-fit: contain; flex-shrink: 0;
}
.page-trust-ministry-text strong {
  display: block; font-size: 0.78rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1px;
}
.page-trust-ministry-text span {
  font-size: 0.72rem; color: var(--gray-500);
}
.page-trust-sep {
  width: 1px; height: 22px; background: var(--gray-200); flex-shrink: 0;
}
.page-trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.79rem; font-weight: 600; color: var(--gray-700); white-space: nowrap;
}
.page-trust-badge-icon {
  width: 26px; height: 26px; background: var(--red-100);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--red-700); flex-shrink: 0;
}
.page-trust-cta { margin-left: auto; flex-shrink: 0; }
@media (max-width: 1100px) {
  .page-trust-cta { margin-left: 0; }
}
@media (max-width: 640px) {
  .page-trust-bar { padding: 14px 0; }
  .page-trust-sep { display: none; }
  .page-trust-bar-inner { gap: 14px; }
  .page-trust-badge { font-size: 0.72rem; }
}

/* ─── MISSING VARIABLES (aliases) ────────────────── */
:root {
  --shadow-md:   0 6px 24px rgba(0,0,0,0.11);
  --green-600:   #16a34a;
  --radius-md:   10px;
}

/* ─── UTILITY: bg-gray ───────────────────────────── */
.bg-gray { background: var(--gray-50); }

/* ─── SECTION HEADER (centered) ─────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 800; margin-top: 12px; margin-bottom: 12px; }
.section-header p { font-size: 0.95rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ─── GENERIC CARD ───────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}

/* ─── BADGE OUTLINE ──────────────────────────────── */
.badge-outline {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-300);
}

/* ─── PROCESS STEPS (basvuru sidebar) ───────────── */
.step-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-100);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-700); color: var(--white);
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ─── BASVURU FORM CONTROLS ──────────────────────── */
.form-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-label span { color: var(--red-700); }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--gray-900); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font);
}
.form-control:focus {
  outline: none; border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(123,24,24,0.09);
}
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit {
  width: 100%; padding: 13px 20px;
  background: var(--red-700); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font);
}
.form-submit:hover { background: var(--red-800); }

/* ─── CONTACT INFO (iletisim.html) ───────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px; background: var(--red-50);
  border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-form-group { margin-bottom: 16px; }
.contact-form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 5px;
}
.contact-form-control {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--gray-900); background: var(--white);
  transition: border-color var(--transition); font-family: var(--font);
}
.contact-form-control:focus {
  outline: none; border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(123,24,24,0.08);
}
select.contact-form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
textarea.contact-form-control { resize: vertical; min-height: 100px; line-height: 1.6; }

/* ─── MAP PLACEHOLDER ────────────────────────────── */
.map-placeholder {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  min-height: 200px; justify-content: center;
}

/* ─── SECTOR GRID (mths-firmalari.html) ──────────── */
.sector-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px;
}
.sector-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.sector-card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); }
.sector-card h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px;
}
.sector-icon {
  width: 28px; height: 28px; background: var(--red-100);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sector-card ul { display: flex; flex-direction: column; gap: 6px; }
.sector-card ul li { font-size: 0.8rem; color: var(--gray-600); padding-left: 12px; position: relative; }
.sector-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--red-700); font-weight: 700; }

/* ─── REQUIREMENTS TABLE (sistem-gereksinimleri) ─── */
.req-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.req-table thead th {
  padding: 12px 16px; text-align: left;
  background: var(--gray-50); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.req-table tbody td {
  padding: 14px 16px; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700); line-height: 1.55;
}
.req-table tbody tr:last-child td { border-bottom: none; }
.req-table tbody tr:hover td { background: var(--gray-50); }
.req-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.04em;
}
.req-badge-required    { background: #fee2e2; color: var(--red-700); }
.req-badge-recommended { background: #dcfce7; color: var(--green); }
.req-badge-optional    { background: var(--gray-100); color: var(--gray-600); }

/* ─── GAZETTE / REGULATION CARDS (yonetmelik.html) ── */
.gazette-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.gazette-number {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red-700);
  background: var(--red-50); border: 1px solid rgba(123,24,24,0.12);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 8px;
}
.gazette-date {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--gray-500); margin-bottom: 16px;
}
.article-item {
  border-left: 3px solid var(--red-700);
  padding: 14px 16px; margin-bottom: 12px;
  background: var(--gray-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-num {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red-700); margin-bottom: 4px;
}
.article-title {
  font-size: 0.88rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px;
}
.article-text { font-size: 0.82rem; color: var(--gray-600); line-height: 1.7; }

/* ─── CONTACT SUBMIT BUTTON ──────────────────────── */
.contact-submit {
  width: 100%; padding: 12px 20px;
  background: var(--red-700); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition); font-family: var(--font);
}
.contact-submit:hover { background: var(--red-800); }

/* ─── RESPONSIVE additions ───────────────────────── */
@media (max-width: 900px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sector-grid { grid-template-columns: 1fr; }
  .req-table { font-size: 0.8rem; }
  .req-table thead th, .req-table tbody td { padding: 10px 12px; }
  .gazette-card { padding: 22px; }
}

/* ════════════════════════════════════════════════════
   HERO SLIDER  (index.html)
════════════════════════════════════════════════════ */
.hs-wrap {
  position: relative; overflow: hidden;
  min-height: 580px;
}
.hs-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hs-slide {
  min-width: 100%; flex-shrink: 0;
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
}
/* Slide color themes */
.hs-red  { background: linear-gradient(135deg, #3D0000 0%, #7B1818 50%, #5a1111 100%); }
.hs-navy { background: linear-gradient(135deg, #0a0f1e 0%, #0f2044 50%, #1e3a6a 100%); }
.hs-dark { background: linear-gradient(135deg, #12001f 0%, #2a0f45 50%, #1a0533 100%); }

/* Dot pattern bg */
.hs-dots-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hs-glow {
  position: absolute; width: 520px; height: 520px;
  border-radius: 50%; pointer-events: none;
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.055) 0%, transparent 70%);
}
.hs-glow-blue  { background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%); }
.hs-glow-purple{ background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); }

/* Inner layout — content left side, right reserved for fixed login panel */
.hs-inner {
  display: block;
  max-width: calc(100% - 380px);
}
.hs-content { color: white; }
.hs-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: white; margin: 16px 0 20px;
  letter-spacing: -0.03em;
}
.hs-title em { font-style: normal; color: #fca5a5; } /* açık kırmızı vurgu */
.hs-desc {
  font-size: 1.05rem; color: white;
  line-height: 1.7; max-width: 500px; margin-bottom: 32px;
  opacity: 0.88;
}
.hs-desc strong { color: white; opacity: 1; font-weight: 700; }
.hs-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hs-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hs-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  color: white; opacity: 0.85;
}

/* Hero panel (slide 1) */
.hs-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px;
  backdrop-filter: blur(10px);
}
.hs-panel-blue {
  background: rgba(30,58,138,0.45);
  border-color: rgba(59,130,246,0.25);
}
.hs-panel-hdr {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hs-panel-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.hs-panel-hdr strong { display: block; color: white; font-size: 0.9rem; }
.hs-panel-hdr span   { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.hs-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 20px;
}
.hs-stat {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-sm);
  padding: 14px; text-align: center;
}
.hs-stat-num {
  font-size: 1.6rem; font-weight: 900; color: white; line-height: 1;
}
.hs-stat-num sup, .hs-stat-num sub { font-size: 0.6em; font-weight: 700; }
.hs-stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Badge list (slide 2 panel) */
.hs-badge-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.hs-badge-row {
  display: flex; align-items: flex-start; gap: 12px;
}
.hs-badge-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.hs-badge-row strong { display: block; font-size: 0.82rem; color: white; margin-bottom: 2px; }
.hs-badge-row span   { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* Ref panel (slide 3) */
.hs-ref-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 24px;
}
.hs-ref-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 16px;
}
.hs-ref-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 6px; text-align: center;
  font-size: 0.85rem; font-weight: 800; color: white;
  display: flex; flex-direction: column; gap: 4px;
}
.hs-ref-item span { font-size: 0.58rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.hs-ref-more {
  font-size: 0.75rem; color: rgba(255,255,255,0.55); text-align: center;
}
.hs-ref-more a { color: rgba(255,255,255,0.8); font-weight: 600; text-decoration: none; }
.hs-ref-more a:hover { color: white; }

/* ════════════════════════════════════════════════════
   HERO — SABİT GİRİŞ PANELİ (sağ)
════════════════════════════════════════════════════ */
.hs-login-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 360px;
  background: #ffffff;
  box-shadow: -6px 0 48px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; justify-content: center;
  padding: 44px 36px;
  z-index: 20;
  border-left: 1px solid rgba(123,24,24,0.08);
}
.hs-lp-brand {
    display: flex;
    align-items: center;
    gap: 0px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red-700);
    margin-bottom: 15px;
    justify-content: center;
}
.hs-lp-logo {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--red-700);
  color: white; font-weight: 900; font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(123,24,24,0.3);
}
.hs-lp-brand-text strong {
  display: block; font-size: 0.95rem; font-weight: 800;
  color: var(--gray-900); line-height: 1.2;
}
.hs-lp-brand-text span {
  font-size: 0.72rem; color: var(--gray-400); font-weight: 500;
}
.hs-lp-heading {
  font-size: 1.45rem; font-weight: 900; color: var(--gray-900);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px;
}
.hs-lp-sub {
  font-size: 0.82rem; color: var(--gray-400); margin-bottom: 24px; line-height: 1.5;
}
.hs-lp-feats {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.hs-lp-feats li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; color: var(--gray-600); font-weight: 500;
}
.hs-lp-feats li svg { color: #16a34a; flex-shrink: 0; }
.hs-lp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px;
  background: var(--red-700); color: white;
  border-radius: var(--radius);
  text-decoration: none; font-size: 0.95rem; font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(123,24,24,0.28);
  margin-bottom: 10px;
}
.hs-lp-btn:hover {
  background: var(--red-800); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(123,24,24,0.38);
}
.hs-lp-url {
  text-align: center; font-size: 0.7rem;
  color: var(--gray-300); font-family: monospace; margin-bottom: 20px;
}
.hs-lp-divider { height: 1px; background: var(--gray-100); margin-bottom: 16px; }
.hs-lp-note {
  text-align: center; font-size: 0.75rem; color: var(--gray-400); line-height: 1.6;
}
.hs-lp-note a { color: var(--red-700); font-weight: 700; text-decoration: none; }
.hs-lp-note a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   MOBİL / TABLET — PANELİ GİRİŞ ALANI (banner altı)
════════════════════════════════════════════════════ */
.hs-login-mobile {
  display: none; /* masaüstünde gizli — 900px altında açılır */
  background: var(--white);
  border-bottom: 2px solid var(--red-700);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.hs-lm-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.hs-lm-brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.hs-lm-logo {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--red-700); color: white;
  font-weight: 900; font-size: 0.65rem; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(123,24,24,0.25);
}
.hs-lm-title {
  font-size: 0.88rem; font-weight: 800; color: var(--gray-900); line-height: 1.2;
}
.hs-lm-url {
  font-size: 0.7rem; color: var(--gray-400); font-family: monospace;
}
.hs-lm-feats {
  display: flex; align-items: center; gap: 12px;
  flex: 1; flex-wrap: wrap;
}
.hs-lm-feats span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: var(--gray-500); font-weight: 500;
  white-space: nowrap;
}
.hs-lm-feats span svg { color: #16a34a; flex-shrink: 0; }
.hs-lm-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--red-700); color: white;
  border-radius: var(--radius-sm); text-decoration: none;
  font-size: 0.88rem; font-weight: 700; white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 12px rgba(123,24,24,0.25);
}
.hs-lm-btn:hover { background: var(--red-800); transform: translateY(-1px); }
.hs-lm-note {
  font-size: 0.73rem; color: var(--gray-400);
  padding: 0 0 12px; text-align: center;
}
.hs-lm-note a { color: var(--red-700); font-weight: 600; text-decoration: none; }
.hs-lm-note a:hover { text-decoration: underline; }

/* Göster/gizle kırılımları */
@media (max-width: 900px) {
  .hs-login-mobile { display: block; }
}
@media (max-width: 640px) {
  .hs-lm-feats { display: none; } /* küçük telefonda sadece marka + buton */
  .hs-lm-inner { justify-content: space-between; }
}
@media (max-width: 430px) {
  .hs-lm-inner { gap: 12px; padding: 14px 0; }
  .hs-lm-btn { width: 100%; justify-content: center; }
  .hs-lm-inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   HERO SLIDER — MOBİL RESPONSIVE (tüm kırılımlar)
═══════════════════════════════════════════════════ */

/* Tablet geniş: login panel dar olunca içerik سياق olmasın */
@media (max-width: 1100px) {
  .hs-inner { max-width: calc(100% - 360px); }
  .hs-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
}

/* Tablet dar / login panel gizli */
@media (max-width: 900px) {
  .hs-login-panel { display: none; }
  .hs-inner { max-width: 100%; }
  .hs-next { right: 20px; }
  .hs-dot-wrap { left: 50%; transform: translateX(-50%); }
  .hs-slide { padding: 88px 0 72px; }
  .hs-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
}

/* Tablet küçük / büyük telefon */
@media (max-width: 768px) {
  .hs-wrap { min-height: unset; }
  .hs-slide {
    padding: 80px 0 66px;
    min-height: 500px;
    display: flex; align-items: center;
  }
  .hs-slide .container { width: 100%; }
  .hs-title {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    margin: 10px 0 14px;
    letter-spacing: -0.025em;
  }
  .hs-desc {
    font-size: 0.93rem; line-height: 1.65;
    margin-bottom: 22px;
  }
  .hs-actions { gap: 10px; margin-bottom: 18px; }
  .hs-actions .btn-lg { padding: 10px 16px; font-size: 0.87rem; }
  .hs-trust { gap: 12px; padding-top: 14px; }
  .hs-trust-item { font-size: 0.73rem; }
  .hero-eyebrow {
    font-size: 0.65rem; padding: 4px 10px;
    letter-spacing: 1.5px; max-width: 100%;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
}

/* Telefon büyük */
@media (max-width: 540px) {
  .hs-slide { padding: 72px 0 60px; min-height: 460px; }
  .hs-title { font-size: clamp(1.4rem, 7.5vw, 1.8rem); margin: 8px 0 12px; }
  .hs-desc { font-size: 0.88rem; max-width: 100%; margin-bottom: 16px; }
  .hs-actions {
    flex-direction: column; align-items: stretch;
    gap: 8px; margin-bottom: 16px;
  }
  .hs-actions .btn-lg {
    width: 100%; justify-content: center;
    padding: 12px 16px; font-size: 0.88rem;
  }
  .hs-trust { flex-wrap: wrap; column-gap: 12px; row-gap: 8px; }
  .hero-eyebrow { letter-spacing: 1px; font-size: 0.61rem; }
  .hs-dot-wrap { bottom: 14px; }
  .container, .container-narrow { padding: 0 16px; }
}

/* Telefon orta — iPhone 14 Pro / Galaxy S serisi */
@media (max-width: 430px) {
  .hs-slide { padding: 64px 0 54px; min-height: 430px; }
  .hs-title { font-size: 1.45rem; line-height: 1.15; }
  .hs-desc {
    font-size: 0.84rem; line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .hs-trust-item:last-child { display: none; }
  .hero-eyebrow { display: none; }
}

/* Telefon küçük — iPhone SE, Galaxy A serisi */
@media (max-width: 380px) {
  .hs-slide { padding: 56px 0 48px; min-height: 390px; }
  .hs-title { font-size: 1.3rem; }
  .hs-desc { display: none; }
  .hs-trust { display: none; }
}

/* Arrows */
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; z-index: 10;
}
.hs-arrow:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); }
.hs-prev { left: 20px; }
.hs-next { right: 380px; }

/* Dots */
.hs-dot-wrap {
  position: absolute; bottom: 22px; left: calc(50% - 180px);
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  padding: 0; transition: background 0.2s, width 0.2s; flex-shrink: 0;
}
.hs-dot.active { background: white; width: 24px; border-radius: 4px; }

/* 20-ref grid */
.refs-grid-20 {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* ════════════════════════════════════════════════════
   MÜŞTERİ PANELİ BÖLÜMÜ
════════════════════════════════════════════════════ */
.panel-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a0a0a 100%);
}
.panel-inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: center;
}
.panel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(252,165,165,0.85);
  background: rgba(123,24,24,0.3); border: 1px solid rgba(252,165,165,0.2);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 20px;
}
.panel-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900;
  color: white; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.panel-desc {
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px;
}
.panel-features { display: flex; flex-direction: column; gap: 10px; }
.panel-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.panel-feat svg { color: #4ade80; flex-shrink: 0; }
.panel-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.panel-card-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.panel-card-mark {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--red-700); border-radius: var(--radius-sm);
  color: white; font-weight: 900; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.05em;
}
.panel-card-brand { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); line-height: 1.3; }
.panel-card-brand small { font-weight: 500; color: var(--gray-500); font-size: 0.75rem; }
.panel-card-url {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px;
}
.panel-card-url-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 4px; }
.panel-card-url-val { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); font-family: monospace; }
.panel-login-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px;
  background: var(--red-700); color: white;
  border-radius: var(--radius-sm); text-decoration: none;
  font-size: 0.92rem; font-weight: 700; margin-bottom: 14px;
  transition: background var(--transition);
}
.panel-login-btn:hover { background: var(--red-800); }
.panel-card-note { font-size: 0.75rem; color: var(--gray-400); text-align: center; }
.panel-card-note a { color: var(--red-700); font-weight: 600; }

/* ════════════════════════════════════════════════════
   ABOUT (MTHS HAKKINDA) BÖLÜMÜ
════════════════════════════════════════════════════ */
.about-section {
  padding: 96px 0; background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.about-lead {
  font-size: 1.05rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 18px;
}
.about-text {
  font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px;
}
.about-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.about-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--gray-700); font-weight: 500;
}
.about-card-top {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, var(--red-700), var(--red-800));
  border-radius: var(--radius-lg); padding: 28px; color: white; margin-bottom: 16px;
}
.about-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,0.15); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.about-card-top h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.about-card-top p  { font-size: 0.84rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }
.about-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-mini-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-mini-card:hover {
  border-color: rgba(123,24,24,0.25);
  box-shadow: 0 4px 20px rgba(123,24,24,0.08);
}
.about-mini-icon {
  width: 38px; height: 38px; background: var(--red-50);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--red-700); margin-bottom: 12px;
}
.about-mini-card h4 { font-size: 0.84rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.about-mini-card p  { font-size: 0.78rem; color: var(--gray-500); line-height: 1.55; margin: 0; }

/* ─── SWIPER TESTİMONİAL KARTLARI ─── */
.testimonialSwiper {
  padding-bottom: 52px !important;
}
.testimonialSwiper .swiper-slide {
  height: auto;
}
.t-card {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  height: 100%;
}
.t-card-body {
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.t-quote-icon {
  margin-bottom: 16px;
  opacity: 0.6;
}
.t-text {
  font-size: 1rem; color: var(--gray-700);
  line-height: 1.8; font-style: italic;
  flex: 1; margin-bottom: 28px;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.t-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-700), #b91c1c);
  color: white; font-weight: 800; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.t-name {
  font-size: 0.88rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 2px;
}
.t-role {
  font-size: 0.75rem; color: var(--gray-400); line-height: 1.4;
}
.t-card-aside {
  background: var(--gray-50);
  border-left: 1px solid var(--gray-100);
  padding: 36px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; justify-content: center;
  gap: 8px;
}
.t-company-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red-700), #b91c1c);
  border-radius: var(--radius);
  color: white; font-weight: 900; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em; margin-bottom: 4px;
  box-shadow: 0 4px 12px rgba(123,24,24,0.25);
}
.t-company-name {
  font-size: 0.85rem; font-weight: 700; color: var(--gray-900);
  line-height: 1.3;
}
.t-company-sector {
  font-size: 0.7rem; color: var(--gray-400);
  line-height: 1.4; margin-bottom: 8px;
}
.t-stars {
  color: #f59e0b; font-size: 1rem; letter-spacing: 1px;
  line-height: 1;
}
.t-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; color: #16a34a;
  background: #dcfce7; border-radius: 20px;
  padding: 3px 10px;
}

/* ═══════════════════════════════════════════════════
   İÇ SAYFA RESPONSIVE LAYOUT YARDIMCI SINIFLARI
═══════════════════════════════════════════════════ */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: flex-start;
}
.inner-layout-lg {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: flex-start;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.price-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.compare-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 52px;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .inner-layout,
  .inner-layout-lg {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .price-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .compare-grid-2,
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .price-grid-3 {
    grid-template-columns: 1fr;
  }
}

.map-v2-right {
    position: relative;
}

.turkey-map-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(123,24,24,0.15));
}
    /* tr.svg province paths — override default green fill */
    .turkey-map-svg #features path {
        fill: rgba(200,40,40,0.1);
        stroke: rgba(123,24,24,0.3);
        stroke-width: 0.5;
        transition: fill 0.2s;
    }

        .turkey-map-svg #features path:hover {
            fill: rgba(200,40,40,0.22);
        }
/* City overlay dots */
.map-dot {
    fill: var(--red-700);
    filter: drop-shadow(0 0 3px rgba(123,24,24,0.5));
}

.map-dot-xl {
    fill: #b91c1c;
}

.map-dot-lg {
    fill: var(--red-700);
}

.map-dot-md {
    fill: #dc2626;
}

.map-dot-sm {
    fill: #ef4444;
}

.map-pulse-ring {
    fill: none;
    stroke: var(--red-700);
    stroke-width: 1.5;
    animation: mapPulseRing 2.2s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.map-pulse-ring-2 {
    animation-delay: 1.1s;
}

@keyframes mapPulseRing {
    0% {
        stroke-width: 1.5;
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        stroke-width: 0.5;
        opacity: 0;
        transform: scale(3.5);
    }
}

.map-label {
    font-size: 9.5px;
    fill: var(--gray-700);
    font-family: var(--font);
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.map-v2-badge-tl,
.map-v2-badge-br,
.map-v2-badge-gr {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.map-v2-badge-tl {
    top: -71px;
    left: -14px;
    font-size: 15px;
}

.map-v2-badge-br {
    bottom: -12px;
    right: -12px;
}

.map-v2-badge-gr {
    bottom: -81px;
    left: -46px;
    font-size: 15px;
}



.map-v2-badge-num {
    font-size:15px;
    font-weight: 900;
    color: var(--red-700);
    line-height: 1;
}

    .map-v2-badge-num span {
        font-size: 0.65em;
        font-weight: 700;
    }

.map-v2-badge-lbl {
    font-size: 0.62rem;
    color: var(--gray-400);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}