/* =====================================================
   DijitalRent - Araç Filo Yönetim Sistemi
   Ortak Stil Dosyası (style.css)
   ===================================================== */

/* ---------- Değişkenler ---------- */
:root {
  --primary: #0b3d91;        /* koyu lacivert */
  --primary-dark: #082c68;
  --primary-light: #1e5cc8;
  --accent: #00c2a8;         /* teal vurgu */
  --accent-dark: #009e88;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 61, 145, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

/* ---------- Yardımcı Sınıflar ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

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

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(0, 194, 168, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--gray-500);
}

.highlight {
  color: var(--accent);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 194, 168, 0.32);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 194, 168, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ---------- Header / Navigasyon ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo svg {
  width: 34px;
  height: 34px;
}

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

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

.nav-menu a {
  padding: 10px 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: var(--gray-100);
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn {
  padding: 10px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 92, 200, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 194, 168, 0.3);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero görsel / mockup */
.hero-visual {
  position: relative;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-700);
}

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

.dash-header h4 {
  font-size: 1rem;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.metric-box {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.metric-box .m-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.metric-box .m-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.metric-box .m-trend {
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  padding-top: 10px;
}

.dash-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: 4px 4px 0 0;
  animation: growBar 1.2s ease forwards;
  transform-origin: bottom;
}

@keyframes growBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}

.floating-badge .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 194, 168, 0.15);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
}

.floating-badge.top {
  top: -24px;
  left: -28px;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.bottom {
  bottom: -24px;
  right: -20px;
  animation: float 4s ease-in-out infinite 1.5s;
}

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

/* ---------- Güven / Logo şeridi ---------- */
.trust {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.trust p {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.trust-logos span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-500);
}

/* ---------- Özellik Kartları ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 22px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card:nth-child(2n) .feature-icon {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.98rem;
}

/* ---------- Split / Görsel + Metin ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-content .eyebrow {
  margin-bottom: 18px;
}

.split-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.split-content p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.check-list li .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 194, 168, 0.15);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

.split-media {
  position: relative;
}

.media-frame {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  min-height: 340px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.media-frame .big-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  display: grid;
  place-items: center;
}

.media-frame .big-icon svg {
  width: 48px;
  height: 48px;
}

/* ---------- İstatistik Şeridi ---------- */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 70px 0;
}

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

.stat-item .stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-item .stat-num .highlight {
  color: var(--accent);
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-size: 0.98rem;
}

/* ---------- Adımlar ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 34px 26px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.step-card .step-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ---------- Fiyatlandırma ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.price-card.featured {
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.price-card.featured::before {
  content: "En Popüler";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.price-card .plan-desc {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.price-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 26px;
}

.price-card .check-list {
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- CTA Bandı ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cta-band .btn-primary:hover {
  background: var(--gray-100);
}

/* ---------- Sayfa Başlığı (iç sayfalar) ---------- */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ---------- Hakkımızda: Değerler ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.value-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-card .v-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 194, 168, 0.12);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ---------- Zaman Çizelgesi ---------- */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-left: 66px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item .year {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 1;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--gray-500);
}

/* ---------- Ekip ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Ürün detay ---------- */
.product-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card .p-top {
  padding: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.product-card:nth-child(3n+2) .p-top {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.product-card:nth-child(3n) .p-top {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
}

.product-card .p-top .p-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.product-card .p-top h3 {
  color: var(--white);
  font-size: 1.3rem;
}

.product-card .p-body {
  padding: 26px 30px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card .p-body p {
  color: var(--gray-500);
  margin-bottom: 18px;
}

.product-card .p-body .check-list {
  flex-grow: 1;
}

/* ---------- SSS / Accordion ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-item.open .faq-question .icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding: 0 26px 24px;
  color: var(--gray-500);
}

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.contact-info .info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info .info-item .i-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
}

.contact-info .info-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info .info-item p,
.contact-info .info-item a {
  color: var(--gray-500);
  font-size: 0.98rem;
}

.contact-info .info-item a:hover {
  color: var(--accent-dark);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  background: rgba(0, 194, 168, 0.12);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-success.show {
  display: block;
}

.map-wrap {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-brand .social-row a {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-brand .social-row a:hover {
  background: var(--accent);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- Reveal animasyonu ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 30px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 12px;
    border-radius: 8px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-cta {
    margin: 12px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 44px 26px;
  }

  .hero-stats {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

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

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-badge.top { left: 0; }
  .floating-badge.bottom { right: 0; }
}
