/* ========================================================
   Usta Voltaj — styles-v8.css
   Premium UI/UX Design System
   Renk paleti korundu, tipografi + animasyon sistemi yenilendi
   ======================================================== */

/* ─── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
  /* Marka Renkleri (korundu) */
  --ink:    #0a2440;
  --muted:  #5f7187;
  --blue:   #0a63c7;
  --sky:    #18a4e6;
  --soft:   #eaf6ff;
  --line:   #d8eaf7;
  --white:  #ffffff;
  --navy:   #082f5f;

  /* Yüzey */
  --surface: #f8fcff;
  --card:    #ffffff;

  /* Gölgeler */
  --shadow-sm: 0 1px 3px rgba(8,47,95,.08);
  --shadow-md: 0 4px 16px rgba(8,47,95,.10);
  --shadow-lg: 0 12px 40px rgba(8,47,95,.13);
  --shadow-xl: 0 24px 64px rgba(8,47,95,.18);

  /* Sosyal Butonlar */
  --whatsapp: #25d366;
  --whatsapp-glow: rgba(37,211,102,.38);
  --ig-grad: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%,
    #285aeb 90%);
  --ig-glow: rgba(214,36,159,.38);

  /* Animasyon easing */
  --ease-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-back: cubic-bezier(0.34,1.56,0.64,1);
  --ease-smooth: cubic-bezier(0.45,0,0.55,1);

  /* Animasyon süreleri */
  --t-fast:  150ms;
  --t-base:  300ms;
  --t-slow:  500ms;
  --t-enter: 700ms;

  /* Tipografi */
  --font-heading: 'Outfit', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;

  /* Köşe yarıçapları */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;
}

/* ─── Keyframe Animasyonlar ───────────────────────────────── */

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.12); }
  80%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

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

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--whatsapp-glow); }
  50%       { box-shadow: 0 0 0 12px transparent; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes morphBlob {
  0%  { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
  25% { border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%; }
  50% { border-radius: 70% 30% 60% 40% / 40% 70% 50% 60%; }
  75% { border-radius: 30% 70% 40% 60% / 70% 50% 60% 40%; }
  100%{ border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.06); }
  66%       { transform: translate(-20px, 15px) scale(0.96); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-25px, 20px) scale(1.04); }
  66%       { transform: translate(20px, -15px) scale(0.97); }
}

@keyframes progressLine {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tickIn {
  0%  { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(3deg); opacity: 1; }
  100%{ transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(24,164,230,.15); }
  50%       { box-shadow: 0 0 0 5px rgba(24,164,230,.28); }
}

@keyframes barOpen {
  0%   { transform: scaleX(1) rotate(0); }
  100% { transform: scaleX(0); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  15%  { transform: rotate(-2deg); }
  30%  { transform: rotate(2deg); }
  45%  { transform: rotate(-1.5deg); }
  60%  { transform: rotate(1.5deg); }
  75%  { transform: rotate(-1deg); }
}

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

@keyframes topStripSlide {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes navReveal {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

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

/* ─── Temel Reset ─────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  overflow-wrap: anywhere;
}

p { overflow-wrap: anywhere; }

/* ─── Scroll Animasyon Sistemi ────────────────────────────── */
.anim-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--t-enter) var(--ease-expo),
    transform var(--t-enter) var(--ease-expo);
  transition-delay: var(--stagger, 0ms);
}

.anim-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity var(--t-enter) var(--ease-expo),
    transform var(--t-enter) var(--ease-back);
  transition-delay: var(--stagger, 0ms);
}

.anim-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Skip Link ───────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
}
.skip-link:focus { transform: translateY(0); }

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, #061a33 38px, rgba(255,255,255,0.08) 38px, rgba(255,255,255,0.08) 39px, rgba(248,252,255,.94) 39px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216,234,247,.9);
  transition:
    box-shadow var(--t-base) ease,
    background var(--t-base) ease;
  animation: fadeInDown 0.6s var(--ease-expo) both;
}

.site-header.is-scrolled {
  background: linear-gradient(to bottom, #061a33 38px, rgba(255,255,255,0.08) 38px, rgba(255,255,255,0.08) 39px, rgba(248,252,255,.98) 39px);
  box-shadow: 0 8px 32px rgba(8,47,95,.10);
}

/* Top Strip */
.top-strip {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  color: #c9e6ff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  animation: topStripSlide 0.6s var(--ease-expo) both;
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--t-base) ease, transform var(--t-base) ease;
}

.top-strip a::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318a4e6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.6 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.top-strip a:hover {
  color: var(--sky);
  transform: translateY(-0.5px);
}

/* Nav Shell */
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
}

.brand {
  display: grid;
  gap: 3px;
  text-decoration: none;
  transition: opacity var(--t-fast) ease;
}
.brand:hover { opacity: 0.85; }

.brand img { width: 166px; height: auto; }

.brand span {
  max-width: 190px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Navigasyon */
.site-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  position: relative;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color var(--t-base) ease;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: var(--r-full);
  transition: width var(--t-base) var(--ease-expo);
}

.site-menu a:hover { color: var(--blue); }
.site-menu a:hover::after,
.site-menu a:focus::after { width: 100%; }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base) ease;
}
.menu-toggle:hover { border-color: var(--blue); }

.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: var(--r-full);
  transition: transform var(--t-base) var(--ease-expo),
              opacity var(--t-base) ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 42px;
  min-height: calc(100vh - 112px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px 58px;
  align-items: center;
  overflow: hidden;
}

/* Full-Width Hero Background & Sparks */
.hero-bg {
  position: fixed;
  top: 0; bottom: 0;
  left: 0; right: 0;
  z-index: -2;
  pointer-events: none;
  background-color: var(--surface);
  background-image: 
    linear-gradient(rgba(10, 99, 199, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 99, 199, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center;
  overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.8;
}

.hero-bg::before {
  width: 500px; height: 500px;
  top: -100px; right: 10%;
  background: radial-gradient(circle, rgba(24, 164, 230, 0.35) 0%, rgba(10, 99, 199, 0.12) 50%, transparent 100%);
  animation: moveGlow1 20s ease-in-out infinite alternate;
}

.hero-bg::after {
  width: 400px; height: 400px;
  bottom: -50px; left: 10%;
  background: radial-gradient(circle, rgba(10, 99, 199, 0.28) 0%, rgba(24, 164, 230, 0.10) 50%, transparent 100%);
  animation: moveGlow2 25s ease-in-out infinite alternate;
}

@keyframes moveGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.1); }
  100% { transform: translate(-30px, 80px) scale(0.95); }
}

@keyframes moveGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -50px) scale(1.15); }
  100% { transform: translate(60px, 20px) scale(0.9); }
}

.particle {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  background-color: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--sky), 0 0 18px var(--blue);
  opacity: 0;
  pointer-events: none;
  animation: floatUp 15s infinite linear;
}

@keyframes floatUp {
  0% {
    bottom: -20px;
    opacity: 0;
    transform: translateX(0);
  }
  15% {
    opacity: 0.90;
  }
  85% {
    opacity: 0.90;
  }
  100% {
    bottom: 105%;
    opacity: 0;
    transform: translateX(50px);
  }
}

.hero-content {
  order: 1;
  position: relative;
  z-index: 1;
  animation: fadeInLeft 0.8s var(--ease-expo) 0.2s both;
}

.hero-media {
  order: 2;
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.8s var(--ease-expo) 0.4s both;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 5px 14px;
  color: var(--blue);
  background: rgba(10,99,199,.08);
  border: 1px solid rgba(10,99,199,.16);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Başlıklar */
h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ─── Butonlar ────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo),
    background var(--t-base) ease,
    border-color var(--t-base) ease,
    color var(--t-base) ease;
}

/* Ripple efekti için */
.btn .ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 8px 24px rgba(10,99,199,.28);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10,99,199,.38);
  background: linear-gradient(135deg, #0858b0, var(--blue));
}

.btn.primary:active { transform: translateY(-1px); }

.btn.secondary {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  transform: translateY(-3px);
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 28px rgba(10,99,199,.25);
}

.btn.secondary:active { transform: translateY(-1px); }

/* Küçük buton varyantı (hizmet kartı linkleri) */
.btn.small {
  min-height: 38px;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: var(--r-sm);
}

/* CTA animasyonu — ilk yüklemede dikkat çekme */
.hero-actions .btn.primary {
  animation: wiggle 2.5s ease 1.5s both;
}

/* ─── Hero Galeri ─────────────────────────────────────────── */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hero-gallery figure {
  position: relative;
  min-height: 205px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216,234,247,.9);
  border-radius: var(--r-md);
  background: #dff1ff;
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--t-slow) var(--ease-expo),
    box-shadow var(--t-slow) var(--ease-expo);
}

.hero-gallery figure:nth-child(1),
.hero-gallery figure:nth-child(4) {
  animation: float 6s ease-in-out infinite;
}

.hero-gallery figure:nth-child(2),
.hero-gallery figure:nth-child(3) {
  transform: translateY(24px);
  animation: floatDelayed 6s ease-in-out infinite;
}

.hero-gallery figure:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.hero-gallery figure:nth-child(2):hover,
.hero-gallery figure:nth-child(3):hover {
  transform: translateY(20px) scale(1.02);
}

.hero-gallery img {
  width: 100%; height: 100%;
  min-height: 205px;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-expo);
}

.hero-gallery figure:hover img {
  transform: scale(1.06);
}

.hero-gallery figcaption {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(7,31,61,.76);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  line-height: 1.2;
}

/* ─── Trust Band ──────────────────────────────────────────── */
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto 32px;
  padding: 0 20px;
  gap: 14px;
}

.trust-band div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo);
}

.trust-band div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-band strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.trust-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ─── Visual Strip ────────────────────────────────────────── */
.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 34px;
  gap: 16px;
}

.visual-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #083d77, #0a63c7);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo);
}

.visual-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.visual-tile::before,
.visual-tile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  transition: transform var(--t-slow) var(--ease-expo);
}

.visual-tile::before {
  right: -35px; top: -35px;
  width: 140px; height: 140px;
  border: 18px solid rgba(255,255,255,.16);
}

.visual-tile:hover::before {
  transform: scale(1.15) rotate(15deg);
}

.visual-tile::after {
  right: 24px; bottom: 22px;
  width: 74px; height: 74px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255,255,255,.85) 46% 54%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(255,255,255,.85) 46% 54%, transparent 55%);
  opacity: .42;
}

.visual-tile span {
  display: block;
  width: 58px; height: 58px;
  margin-bottom: 22px;
  border-radius: var(--r-sm);
  background: linear-gradient(180deg, #fff 0 42%, #18a4e6 43% 56%, #fff 57% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.visual-tile h2 {
  position: relative;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.visual-tile p {
  position: relative;
  margin: 0;
  color: #d7ecfb;
  font-size: 15px;
}

/* ─── System Focus ────────────────────────────────────────── */
.system-focus {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 42px 20px 28px;
}

.system-focus-head {
  display: block;
  margin-bottom: 20px;
}

.system-focus-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

.system-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.system-focus-grid article {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,247,255,.96)),
    linear-gradient(135deg, #0a63c7, #18a4e6);
  border: 1px solid rgba(10,99,199,.16);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo),
    border-color var(--t-base) ease;
}

.system-focus-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(10,99,199,.3);
}

.system-focus-grid article::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: var(--r-md) var(--r-md) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-expo);
}

.system-focus-grid article:hover::before {
  transform: scaleX(1);
}

.system-focus-grid article::after {
  content: "";
  position: absolute;
  right: -20px; bottom: -22px;
  width: 112px; height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 34%, rgba(10,99,199,.10) 35% 45%, transparent 46%),
    linear-gradient(90deg, transparent 48%, rgba(10,99,199,.14) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(10,99,199,.14) 49% 51%, transparent 52%);
  pointer-events: none;
}

.system-focus-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-heading);
}

.system-focus-grid h3 {
  position: relative;
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.system-focus-grid p {
  position: relative;
  margin: 0;
  color: #52677d;
  font-size: 15px;
}

/* ─── Audience Band ───────────────────────────────────────── */
.audience-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 42px;
  gap: 14px;
}

.audience-band div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo);
}

.audience-band div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.audience-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.15;
}

.audience-band span { color: var(--muted); font-size: 15px; }

/* ─── Section ─────────────────────────────────────────────── */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 20px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-heading.compact { max-width: 760px; }

.section-heading h2,
.geo-copy h2,
.contact-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section-heading p,
.geo-copy p,
.contact-info p {
  color: var(--muted);
  font-size: 17px;
}

/* ─── Service Cards ───────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--t-slow) var(--ease-expo),
    box-shadow var(--t-slow) var(--ease-expo),
    border-color var(--t-base) ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-expo);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(10,99,199,.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-thumb {
  width: calc(100% + 56px);
  max-width: none;
  height: 200px;
  margin: -28px -28px 24px;
  object-fit: contain;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: transform var(--t-slow) var(--ease-expo);
}

.service-card:hover .service-thumb {
  transform: scale(1.04);
  transform-origin: center top;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 26px; right: 24px;
  width: 66px; height: 66px;
  border-radius: var(--r-sm);
  background:
    linear-gradient(90deg, rgba(10,99,199,.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,99,199,.10) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .6;
  pointer-events: none;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(10,99,199,.3);
}

.service-card h3 {
  margin: 20px 0 12px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin: 12px 0 0;
  color: #52677d;
  font-size: 15px;
}

.service-card-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ─── Process ─────────────────────────────────────────────── */
.process {
  position: relative;
  max-width: none;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #083d77, #0a63c7);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  z-index: 0;
}

/* Dekoratif Blob — Process */
.process::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; right: -150px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  background: radial-gradient(ellipse, rgba(255,255,255,.04) 0%, transparent 70%);
  animation: morphBlob 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.process .section-heading,
.process-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.process .eyebrow,
.process h2 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid div {
  min-height: 224px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo);
}

.process-grid div:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.process-grid b {
  color: var(--sky);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 19px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ─── Referanslar ─────────────────────────────────────────── */
.logos { text-align: center; }
.logos .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 14px;
}

.logo-row img {
  width: 100%; height: auto;
  filter: saturate(.95);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.reference-grid span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo),
    border-color var(--t-base) ease;
}

.reference-grid span:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,99,199,.2);
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { padding-top: 58px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--t-base) var(--ease-expo),
    box-shadow var(--t-base) var(--ease-expo),
    border-left-color var(--t-base) ease;
}

.faq-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--sky);
}

.faq-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.faq-grid p { margin: 0; color: var(--muted); font-size: 15px; }

/* ─── Geo ─────────────────────────────────────────────────── */
.geo {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 38px;
  align-items: start;
}

.geo-list { display: grid; gap: 12px; }

.geo-list span {
  padding: 16px 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sky);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: transform var(--t-base) var(--ease-expo);
}

.geo-list span:hover { transform: translateX(6px); }

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

.contact-info ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info li { margin-bottom: 12px; color: var(--muted); }
.contact-info strong { color: var(--navy); }

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #bfdff2;
  border-radius: var(--r-sm);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfeff;
  font: inherit;
  font-family: var(--font-body);
  transition:
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease,
    background var(--t-base) ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
  animation: borderGlow 1.5s ease infinite;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-body);
}

/* ─── Floating Butonlar ───────────────────────────────────── */

/* WhatsApp — Tam Yuvarlak */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  text-decoration: none;
  animation:
    socialPop 0.6s var(--ease-back) 1s both,
    pulse 2.5s ease-in-out 2s infinite;
  transition:
    transform var(--t-base) var(--ease-back),
    box-shadow var(--t-base) var(--ease-expo);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.14) !important;
  box-shadow: 0 12px 40px rgba(37,211,102,.5) !important;
  background: #1ebe5d;
}

.whatsapp-float svg {
  width: 30px; height: 30px;
  fill: #fff;
  display: block;
  flex-shrink: 0;
}

/* Instagram — Tam Yuvarlak, Orijinal Gradient */
.instagram-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ig-grad);
  box-shadow: 0 8px 28px var(--ig-glow);
  text-decoration: none;
  animation: socialPop 0.6s var(--ease-back) 1.15s both;
  transition:
    transform var(--t-base) var(--ease-back),
    box-shadow var(--t-base) var(--ease-expo);
}

.instagram-float:hover,
.instagram-float:focus-visible {
  transform: scale(1.14) !important;
  box-shadow: 0 12px 40px var(--ig-glow) !important;
}

.instagram-float svg {
  width: 28px; height: 28px;
  fill: #fff;
  display: block;
  flex-shrink: 0;
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #d7ecfb;
  background: #071f3d;
}

/* Footer dekoratif blob */
.site-footer::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  top: -140px; right: -80px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  background: radial-gradient(ellipse, rgba(24,164,230,.06) 0%, transparent 70%);
  animation: morphBlob 20s ease-in-out infinite;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  bottom: -80px; left: -60px;
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%;
  background: radial-gradient(ellipse, rgba(10,99,199,.07) 0%, transparent 70%);
  animation: morphBlob 16s ease-in-out infinite reverse;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(215,236,251,.12);
}

.footer-brand {}

.footer-logo {
  display: inline-flex;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}

.footer-logo img { width: 160px; }

.footer-brand p {
  margin: 0 0 20px;
  color: #a8c8e8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px; height: 42px;
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform var(--t-base) var(--ease-back),
    box-shadow var(--t-base) ease;
}

.footer-social-btn:hover { transform: scale(1.12) translateY(-2px) !important; }

.footer-social-btn.wa {
  background: var(--whatsapp);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}

.footer-social-btn.ig {
  background: var(--ig-grad);
  box-shadow: 0 4px 14px var(--ig-glow);
}

.footer-social-btn svg {
  width: 22px; height: 22px;
  fill: #fff;
}

/* Footer nav sütunları */
.footer-col h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #a8c8e8;
  font-size: 14px;
  text-decoration: none;
  transition: color var(--t-base) ease, transform var(--t-base) ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* İletişim sütunu */
.footer-contact-list {
  display: grid;
  gap: 12px;
  margin: 0; padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #a8c8e8;
  font-size: 14px;
}

.footer-contact-list a {
  color: #a8c8e8;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-base) ease;
}

.footer-contact-list a:hover { color: var(--white); }

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  color: var(--sky);
}

/* Footer Alt Bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 24px;
  border-top: 1px solid rgba(215,236,251,.08);
  font-size: 13px;
  color: #6a8da8;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition:
    transform var(--t-base) var(--ease-back),
    background var(--t-base) ease,
    box-shadow var(--t-base) ease;
}

.footer-back-top:hover {
  transform: translateY(-4px);
  background: rgba(10,99,199,.5);
  box-shadow: 0 6px 20px rgba(10,99,199,.3);
}

.footer-back-top svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  .hero,
  .geo,
  .contact { grid-template-columns: 1fr; }

  .hero { padding-top: 54px; }

  .hero-media { order: 1; }
  .hero-content { order: 2; }

  .hero-gallery figure,
  .hero-gallery img { min-height: 190px; }

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

  .faq-grid { grid-template-columns: 1fr; }
  .visual-strip { grid-template-columns: 1fr; }

  .system-focus-grid { grid-template-columns: 1fr; }

  .logo-row,
  .reference-grid,
  .audience-band { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }

  .top-strip { display: none; }
  .site-header {
    background: rgba(248, 252, 255, 0.94);
  }
  .site-header.is-scrolled {
    background: rgba(248, 252, 255, 0.98);
  }
  .nav-shell { padding: 12px 16px; }
  .brand img { width: 164px; }

  .menu-toggle { display: block; }

  .site-menu {
    position: absolute;
    top: calc(100% + 8px); left: 16px; right: 16px;
    display: none;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    z-index: 99;
  }

  .site-menu.is-open {
    display: grid;
    gap: 8px;
    animation: slideDown var(--t-base) var(--ease-expo);
  }

  .site-menu li {
    width: 100%;
  }

  .site-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--r-sm);
    transition: background var(--t-base) ease, color var(--t-base) ease;
  }

  .site-menu a::after {
    display: none;
  }

  .site-menu a:hover,
  .site-menu a:focus {
    background: var(--soft);
    color: var(--blue);
  }

  .hero {
    min-height: auto;
    padding: 24px 16px 34px;
    gap: 24px;
  }

  h1 { font-size: 34px; line-height: 1.08; }
  .hero-copy { font-size: 16px; }

  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-gallery figure,
  .hero-gallery img { min-height: 138px; }

  .hero-gallery figure:nth-child(2),
  .hero-gallery figure:nth-child(3) {
    transform: none;
    animation: float 6s ease-in-out infinite;
  }

  .hero-gallery figcaption {
    left: 8px; right: 8px; bottom: 8px;
    padding: 8px; font-size: 12px;
  }

  .trust-band { margin-bottom: 12px; }
  .trust-band div { padding: 18px; }

  .visual-strip { padding: 10px 16px 18px; }
  .visual-tile { min-height: 178px; padding: 20px; }

  .system-focus { padding: 36px 16px 18px; }
  .system-focus-head h2 { font-size: 28px; }
  .system-focus-grid article { min-height: 0; padding: 20px; }
  .system-focus-grid h3 { font-size: 21px; }

  .trust-band,
  .audience-band,
  .service-grid,
  .process-grid,
  .logo-row,
  .reference-grid { grid-template-columns: 1fr; }

  .audience-band { padding: 0 16px 30px; }

  .brand span { max-width: 150px; font-size: 9px; }

  .section { padding: 58px 16px; }

  .section-heading h2,
  .geo-copy h2,
  .contact-info h2 { font-size: 30px; }

  .service-card h3 { max-width: calc(100% - 72px); font-size: 22px; }
  .service-card,
  .contact-form { padding: 22px; }

  .service-thumb {
    width: calc(100% + 44px);
    height: 160px;
    margin: -22px -22px 20px;
    object-fit: contain;
    background-color: var(--surface);
  }

  /* Floating butonlar — mobil */
  .whatsapp-float {
    right: 16px; bottom: 16px;
    width: 52px; height: 52px;
  }

  .instagram-float {
    right: 16px; bottom: 80px;
    width: 52px; height: 52px;
  }

  .whatsapp-float svg,
  .instagram-float svg { width: 26px; height: 26px; }

  /* Footer mobil */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Subpage Stilleri (Alt Sayfalar) ─────────────────────── */
.article-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article-header { margin-bottom: 40px; }

.article-body {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  font-family: var(--font-body);
}

.article-body h2 {
  font-size: 26px;
  margin: 40px 0 20px;
  color: var(--navy);
  border-left: 4px solid var(--sky);
  padding-left: 12px;
}

.article-body h3 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: var(--navy);
}

.article-body ul { margin: 20px 0; padding-left: 20px; }
.article-body li { margin-bottom: 10px; }

.article-body blockquote {
  margin: 30px 0;
  padding: 20px;
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 12px 15px;
  text-align: left;
}

.article-body th {
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-heading);
}

.article-body tr:nth-child(even) { background: rgba(248,252,255,.5); }

.breadcrumbs {
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-body);
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .article-section { padding: 30px 16px; }
  .article-body table { display: block; overflow-x: auto; white-space: nowrap; }
}
