/* BNS — Bireysel Nakliyeciler Sendikası */
:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-primary: #1e40af;
  --color-primary-dark: #1e3a8a;
  --color-primary-light: #3b82f6;
  --color-accent: #ea580c;
  --color-accent-light: #fff7ed;
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-height: 72px;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Sans', var(--font-sans);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(59, 130, 246, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 110%, rgba(234, 88, 12, 0.05) 0%, transparent 50%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text);
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-mark {
  transform: scale(1.05);
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

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

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(30, 64, 175, 0.06);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

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

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

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #f97316 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.45);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero Slider ─── */
.hero {
  position: relative;
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active .hero-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.5) 42%, rgba(15, 23, 42, 0.15) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 680px;
  color: white;
}

.hero-slide.active .hero-text .hero-badge {
  animation: heroFadeUp 0.7s ease 0.1s both;
}

.hero-slide.active .hero-text .hero-title {
  animation: heroFadeUp 0.7s ease 0.25s both;
}

.hero-slide.active .hero-text .hero-desc {
  animation: heroFadeUp 0.7s ease 0.4s both;
}

.hero-slide.active .hero-text .hero-actions {
  animation: heroFadeUp 0.7s ease 0.55s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll .icon {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Stats Band ─── */
.stats-band {
  position: relative;
  z-index: 10;
  margin-top: -56px;
  padding-bottom: 20px;
}

.stats-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: white;
  width: 32px;
  border-radius: 100px;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  position: relative;
  margin-top: var(--header-height);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 56px 0;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(30, 64, 175, 0.32) 100%),
    radial-gradient(ellipse at 85% 15%, rgba(59, 130, 246, 0.18) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-inner {
  max-width: 640px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0;
}

.inner-section {
  padding: 72px 0;
}

.inner-section--alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

/* ─── Sections ─── */
.section {
  padding: 96px 0;
}

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

.section-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  gap: 10px;
}

.section-label::after {
  content: '';
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* ─── Feature Cards ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.blue { background: #eff6ff; }
.feature-icon.orange { background: var(--color-accent-light); }
.feature-icon.green { background: #ecfdf5; }
.feature-icon.purple { background: #f5f3ff; }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ─── News Carousel ─── */
.news-carousel {
  max-width: 100%;
}

.news-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.news-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.news-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 380px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.news-slide-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.news-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-carousel-viewport:hover .news-slide-media img {
  transform: scale(1.03);
}

.news-slide-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.news-slide-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
}

.news-slide-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.news-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--color-text);
}

.news-slide-excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.news-slide-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
  margin-top: auto;
}

.news-slide-link:hover {
  gap: 10px;
}

.news-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.news-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.news-carousel-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.news-carousel-btn .icon {
  width: 20px;
  height: 20px;
}

.news-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.news-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--color-primary);
}

/* ─── News Cards (legacy) ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

.news-image {
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-body {
  padding: 28px;
}

.news-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.news-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.news-link:hover {
  gap: 10px;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ─── About Page ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.mv-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
}

.mv-card::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.mv-card.mission::before { background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); }
.mv-card.vision::before { background: linear-gradient(90deg, var(--color-accent), #f97316); }

.mv-icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-desc {
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

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

.team-card-president {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 400px;
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 64, 175, 0.2);
}

.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--color-primary);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ─── Forms ─── */
.form-section {
  padding: 72px 0 96px;
  background: var(--color-bg);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.form-sidebar {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.form-sidebar .benefits-kicker {
  margin-bottom: 12px;
}

.form-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.form-sidebar > p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.form-sidebar .benefits-perks {
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.form-sidebar .benefits-perks li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.form-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-info p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.form-benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-benefit-icon .icon {
  width: 14px;
  height: 14px;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-card .benefits-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.form-card-desc {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-label .required {
  color: var(--color-accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
  background: white;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--color-primary);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ─── Success Modal ─── */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  transform: scale(0.9);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}

.success-overlay.show .success-modal {
  transform: scale(1);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-desc {
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.contact-grid.contact-only {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 64, 175, 0.15);
  transform: translateY(-2px);
}

.mv-icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.contact-card-value {
  font-weight: 600;
  color: var(--color-text);
}

.contact-card-value a:hover {
  color: var(--color-primary);
}

/* ─── Footer ─── */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  box-shadow: none;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  margin-bottom: 12px;
  word-break: break-word;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

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

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }

/* ─── Icons ─── */
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.feature-icon .icon,
.service-icon .icon,
.mv-icon .icon,
.contact-card-icon .icon {
  width: 26px;
  height: 26px;
}

.feature-icon.blue { color: var(--color-primary); }
.feature-icon.orange { color: var(--color-accent); }
.feature-icon.green { color: var(--color-success); }
.feature-icon.purple { color: #7c3aed; }

.service-icon { color: var(--color-primary); }
.mv-icon { color: var(--color-primary); }
.mv-card.vision .mv-icon { color: var(--color-accent); }

/* ─── Benefits Section ─── */
.benefits-section {
  padding: 72px 0 80px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.benefits-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.benefits-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.benefits-heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.benefits-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.benefits-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefits-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 64, 175, 0.15);
  background: var(--color-surface);
}

.benefits-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefits-item-icon--blue { background: #eff6ff; color: var(--color-primary); }
.benefits-item-icon--orange { background: #fff7ed; color: var(--color-accent); }
.benefits-item-icon--green { background: #ecfdf5; color: var(--color-success); }
.benefits-item-icon--purple { background: #f5f3ff; color: #7c3aed; }

.benefits-item-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--color-text);
}

.benefits-item-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.benefits-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: var(--radius-xl);
}

.benefits-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.benefits-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.benefits-perks .icon {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}

.benefits-action .btn {
  flex-shrink: 0;
}

.benefits-section + .partners-section,
.inner-section--alt + .partners-section,
.services-support + .inner-section {
  margin-top: 0;
}

/* ─── Services Support (hizmetlerimiz) ─── */
.services-support {
  padding: 80px 0;
  background: var(--color-bg);
}

.services-support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 56px 64px;
  align-items: start;
}

.services-support-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.services-support-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.services-support-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.services-support-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.services-support-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-block:nth-child(1)::before { background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light)); }
.service-block:nth-child(2)::before { background: linear-gradient(180deg, var(--color-accent), #f97316); }
.service-block:nth-child(3)::before { background: linear-gradient(180deg, var(--color-success), #34d399); }
.service-block:nth-child(4)::before { background: linear-gradient(180deg, #7c3aed, #a78bfa); }

.service-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 64, 175, 0.12);
}

.service-block:hover::before {
  opacity: 1;
}

.service-block--featured {
  background: linear-gradient(135deg, #eff6ff 0%, var(--color-surface) 55%);
  border-color: rgba(30, 64, 175, 0.15);
}

.service-block--featured::before {
  opacity: 1;
}

.service-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-block-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block-icon--blue { background: #eff6ff; color: var(--color-primary); }
.service-block-icon--orange { background: #fff7ed; color: var(--color-accent); }
.service-block-icon--green { background: #ecfdf5; color: var(--color-success); }
.service-block-icon--purple { background: #f5f3ff; color: #7c3aed; }

.service-block-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: #eff6ff;
  color: var(--color-primary);
}

.service-block-tag--orange { background: #fff7ed; color: var(--color-accent); }
.service-block-tag--green { background: #ecfdf5; color: var(--color-success); }
.service-block-tag--purple { background: #f5f3ff; color: #7c3aed; }

.service-block-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--color-text);
}

.service-block-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.service-block-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.service-block-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.service-block-points .icon {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

.benefits-head + .benefits-grid {
  margin-bottom: 0;
}

/* ─── Why Section (homepage) ─── */
.why-section {
  position: relative;
  padding: 88px 0;
  background: var(--color-bg);
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 48px 64px;
  align-items: start;
}

.why-intro {
  align-self: start;
  padding: 36px 36px 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.why-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-accent));
}

.why-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.why-kicker::after {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}

.why-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.why-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 32px;
}

.why-highlights li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 14px 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.why-highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.why-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
}

.why-item:nth-child(1)::before { background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light)); }
.why-item:nth-child(2)::before { background: linear-gradient(180deg, var(--color-accent), #f97316); }
.why-item:nth-child(3)::before { background: linear-gradient(180deg, var(--color-success), #34d399); }
.why-item:nth-child(4)::before { background: linear-gradient(180deg, #7c3aed, #a78bfa); }

.why-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.why-item:nth-child(1)::after { background: linear-gradient(135deg, rgba(30, 64, 175, 0.04) 0%, transparent 55%); }
.why-item:nth-child(2)::after { background: linear-gradient(135deg, rgba(234, 88, 12, 0.04) 0%, transparent 55%); }
.why-item:nth-child(3)::after { background: linear-gradient(135deg, rgba(5, 150, 105, 0.04) 0%, transparent 55%); }
.why-item:nth-child(4)::after { background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, transparent 55%); }

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 64, 175, 0.15);
}

.why-item:hover::after {
  opacity: 1;
}

.why-item-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  min-width: 28px;
  position: relative;
  z-index: 1;
}

.why-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.why-item-icon--blue { background: #eff6ff; color: var(--color-primary); }
.why-item-icon--orange { background: #fff7ed; color: var(--color-accent); }
.why-item-icon--green { background: #ecfdf5; color: var(--color-success); }
.why-item-icon--purple { background: #f5f3ff; color: #7c3aed; }

.why-item-body {
  position: relative;
  z-index: 1;
}

.why-item-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--color-text);
}

.why-item-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.why-section + .partners-section {
  margin-top: 0;
}

/* ─── Partners Section ─── */
.partners-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(165deg, #0f172a 0%, #1e3a8a 55%, #1e40af 100%);
  overflow: hidden;
}

.partners-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.partners-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.partners-header .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.partners-header .section-label::after {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.4));
}

.partners-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.partners-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.partners-marquee {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.partners-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.partner-chip em {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

.partner-chip-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
}

.partner-chip-tag--fuel { background: rgba(234, 88, 12, 0.25); color: #fdba74; }
.partner-chip-tag--shield { background: rgba(59, 130, 246, 0.25); color: #93c5fd; }
.partner-chip-tag--parts { background: rgba(16, 185, 129, 0.25); color: #6ee7b7; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.partner-category {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.partner-category:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.partner-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-category-icon--fuel { background: rgba(234, 88, 12, 0.2); color: #fdba74; }
.partner-category-icon--shield { background: rgba(59, 130, 246, 0.25); color: #93c5fd; }
.partner-category-icon--wrench { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }

.partner-category h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.partner-category p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.partner-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-names span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ─── Bento Grid (legacy) ─── */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(30, 64, 175, 0.25), rgba(234, 88, 12, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.bento-card.featured {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #eff6ff 0%, var(--color-surface) 60%);
}

.bento-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.bento-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bento-card:nth-child(4) .feature-desc {
  margin-bottom: 0;
}

.bento-card .feature-icon {
  width: 60px;
  height: 60px;
}

.bento-card.featured .feature-icon {
  width: 72px;
  height: 72px;
}

.bento-card.featured .feature-title {
  font-size: 1.375rem;
}

/* ─── Partners Strip (legacy) ─── */
.partners-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 56px;
  padding: 0 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition);
  filter: grayscale(1);
  opacity: 0.65;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: rgba(30, 64, 175, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

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

.testimonial-quote {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.footer-logo .logo-mark {
  box-shadow: none;
}

.section-alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.feature-card,
.service-card,
.mv-card,
.contact-card,
.form-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .fade-in { opacity: 1; transform: none; }
  .hero-slide.active .hero-bg { animation: none; }
  .hero-scroll { animation: none; }
  .partners-marquee-track { animation: none; }
  .news-carousel-track { transition: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-action {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
    padding: 24px 28px;
  }

  .benefits-perks {
    justify-content: center;
  }

  .benefits-action .btn {
    width: 100%;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .partners-section {
    padding: 72px 0;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-card.featured {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    display: block;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .inner-section {
    padding: 56px 0;
  }

  .benefits-section {
    padding: 56px 0 64px;
  }

  .why-section {
    padding: 64px 0;
  }

  .services-support {
    padding: 64px 0;
  }

  .services-support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-support-intro {
    position: static;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }

  .services-support-intro .btn {
    width: 100%;
    max-width: 320px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-intro {
    position: static;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 32px 28px 36px;
  }

  .why-kicker {
    align-items: center;
  }

  .why-highlights {
    justify-content: center;
  }

  .why-intro .btn {
    width: 100%;
    max-width: 320px;
  }

  .page-hero {
    min-height: 280px;
    padding: 48px 0;
  }

  .page-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }

  .benefits-head {
    margin-bottom: 40px;
  }

  .news-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-slide-media {
    min-height: 240px;
  }

  .news-slide-body {
    padding: 32px 28px 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .header-inner {
    gap: 12px;
  }

  .logo {
    font-size: 0.9375rem;
    gap: 10px;
    min-width: 0;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-text span {
    font-size: 0.625rem;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 16px max(16px, env(safe-area-inset-bottom));
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(calc(-100% - var(--header-height)));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
  }

  .nav-link::after {
    display: none;
  }

  .nav .btn-primary {
    width: 100%;
    margin-top: 8px;
  }

  .mobile-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 480px;
    max-height: 680px;
  }

  .hero-title {
    font-size: clamp(1.875rem, 7.5vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 100%;
  }

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

  .hero-actions .btn-lg {
    padding: 14px 24px;
  }

  .hero-dots {
    bottom: 28px;
  }

  .hero-scroll {
    display: none;
  }

  .stats-band {
    margin-top: -32px;
    padding-bottom: 12px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 16px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-suffix {
    font-size: 1.125rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .page-hero {
    min-height: 260px;
    padding: 40px 0;
  }

  .page-hero-badge {
    font-size: 0.6875rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .page-hero-title {
    font-size: clamp(1.875rem, 7vw, 2.375rem);
    margin-bottom: 12px;
  }

  .page-hero-desc {
    font-size: 1rem;
  }

  .benefits-head {
    margin-bottom: 32px;
  }

  .benefits-heading {
    font-size: clamp(1.625rem, 6vw, 2rem);
  }

  .benefits-lead {
    font-size: 1rem;
  }

  .benefits-section {
    padding: 48px 0 56px;
  }

  .why-section {
    padding: 48px 0;
  }

  .services-support {
    padding: 48px 0;
  }

  .services-support-layout {
    gap: 32px;
  }

  .services-support-title {
    font-size: clamp(1.625rem, 6vw, 2rem);
  }

  .services-support-lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .service-block {
    padding: 24px 22px;
  }

  .service-block-title {
    font-size: 1.125rem;
  }

  .why-layout {
    gap: 36px;
  }

  .why-title {
    font-size: clamp(1.625rem, 6vw, 2rem);
  }

  .why-lead {
    font-size: 1rem;
  }

  .why-highlights {
    margin: 24px 0 28px;
    gap: 8px;
  }

  .why-highlights li {
    font-size: 0.6875rem;
    padding: 12px 6px;
  }

  .why-highlights strong {
    font-size: 1rem;
  }

  .why-intro {
    padding: 28px 22px 32px;
  }

  .why-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .why-item-num {
    display: none;
  }

  .why-item-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    align-self: start;
  }

  .why-item-body {
    grid-column: 2;
    grid-row: 1;
  }

  .why-item:hover {
    transform: translateY(-2px);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .benefits-item {
    padding: 24px 20px;
  }

  .benefits-action {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .benefits-perks {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .benefits-action .btn {
    width: 100%;
  }

  .inner-section {
    padding: 48px 0;
  }

  .section {
    padding: 56px 0;
  }

  .about-image img {
    height: 240px;
  }

  .about-grid {
    gap: 32px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    margin-top: 32px;
    gap: 16px;
  }

  .mv-card {
    padding: 28px 24px;
  }

  .team-card {
    padding: 32px 24px;
  }

  .partners-section {
    padding: 56px 0;
  }

  .partners-header {
    margin-bottom: 32px;
  }

  .partners-marquee {
    margin-bottom: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  }

  .partner-category {
    padding: 24px 20px;
  }

  .news-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-slide-media {
    min-height: 200px;
  }

  .news-slide-body {
    padding: 24px 20px 28px;
  }

  .news-carousel-viewport {
    border-radius: var(--radius-lg);
  }

  .news-carousel-footer {
    gap: 16px;
    margin-top: 20px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .features-grid,
  .bento-grid,
  .news-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 48px 0 64px;
  }

  .form-layout,
  .contact-grid {
    gap: 32px;
  }

  .form-sidebar {
    padding: 28px 24px;
  }

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

  .form-card {
    padding: 28px 20px;
  }

  .form-checkbox span {
    font-size: 0.8125rem;
  }

  .contact-card {
    padding: 18px 20px;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-inner {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .partners-track {
    gap: 12px;
  }

  .partner-logo {
    min-width: 120px;
    font-size: 0.8125rem;
  }

  .footer {
    padding: 56px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .service-card {
    flex-direction: column;
    padding: 28px 24px;
  }

  .success-modal {
    padding: 32px 24px;
    width: calc(100% - 32px);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 440px;
  }

  .stats-inner {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.9375rem;
  }

  .footer-logo {
    flex-wrap: wrap;
  }

  .footer-logo-text {
    font-size: 0.9375rem;
  }
}
