:root {
  --bg: #f4f5f7;
  --white: #ffffff;
  --text: #0f1218;
  --muted: #4a505a;
  --line: #e2e5ea;
  --charcoal: #1c1d20;
  --accent: #e10613;
  --accent-soft: #ffd9dd;
  --shadow-sm: 0 12px 30px rgba(20, 21, 24, 0.08);
  --shadow-md: 0 24px 50px rgba(20, 21, 24, 0.12);
  --radius: 18px;
  --radius-sm: 14px;
  --container: min(1140px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
  font-family: Poppins, sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 680px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 4px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #8f1015, #ff3945, var(--accent));
  box-shadow: 0 0 16px rgba(225, 6, 19, 0.45);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding-top: 0.55rem;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(20, 21, 24, 0.09);
  backdrop-filter: blur(6px);
}

.navbar {
  width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 22, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(5, 7, 10, 0.22);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(20, 21, 24, 0.08);
  box-shadow: 0 12px 30px rgba(20, 21, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-family: Poppins, sans-serif;
}

.brand-text {
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.site-header.scrolled .brand-text {
  color: #131820;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #151618;
  color: #fff;
  font-size: 0.85rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(6, 8, 12, 0.26);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: #282a2f;
  transition: color 0.28s ease;
}

.site-header:not(.scrolled) .nav-links a {
  color: rgba(248, 251, 255, 0.9);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #ff737a);
  transition: width 0.28s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-links a.is-current {
  color: var(--accent) !important;
}

.nav-links a.is-current::after {
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.navbar .btn-primary {
  box-shadow: 0 12px 24px rgba(225, 6, 19, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.site-header:not(.scrolled) .navbar .btn-primary {
  box-shadow: 0 12px 24px rgba(225, 6, 19, 0.38), 0 0 20px rgba(225, 6, 19, 0.18);
}

.menu-toggle {
  display: none;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.3s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(225, 6, 19, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(225, 6, 19, 0.38);
}

.btn-primary,
.service-card,
.reason-card,
.mini-card {
  will-change: transform;
}

.btn-primary:hover,
.service-card:hover,
.reason-card:hover {
  filter: drop-shadow(0 0 14px rgba(197, 25, 31, 0.12));
}

.btn-outline {
  border: 1px solid #ced1d6;
  color: #1f2126;
  background: #fff;
}

.ripple .ripple-dot {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

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

.hero {
  min-height: 100vh;
  padding-top: 0;
  position: relative;
  background: #0f141b;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translateY(var(--parallax-offset, 0px));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
  pointer-events: none;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 15, 21, 0.84) 0%, rgba(11, 15, 21, 0.62) 45%, rgba(11, 15, 21, 0.45) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  min-height: 100vh;
  padding-top: 7.8rem;
  padding-bottom: 4rem;
}

.hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  font-size: clamp(2.1rem, 5vw, 4rem);
  max-width: 12ch;
}

.hero-accent-line {
  color: #c1121f;
}

.lead {
  color: rgba(240, 244, 250, 0.9);
  margin-top: 1rem;
  font-size: 1.04rem;
  max-width: 58ch;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.26);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.hero .eyebrow {
  color: #8f1015;
}

.hero-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-2px);
  background: rgba(225, 6, 19, 0.45);
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-dot.is-active {
  transform: scale(1.35);
  background: #ffffff;
}

.inner-hero {
  padding-top: 9.5rem;
  padding-bottom: 3.8rem;
  background: linear-gradient(180deg, #f4f6f9, #ffffff 70%);
}

.inner-hero--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.82) 0%, rgba(8, 11, 16, 0.62) 55%, rgba(8, 11, 16, 0.48) 100%),
    url("İmg/Herogorsel2.png") center/cover no-repeat;
}

.inner-hero--image .eyebrow,
.inner-hero--image h1,
.inner-hero--image .lead {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.inner-hero--image .eyebrow {
  color: #ff767e;
}

.inner-hero-faq {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.inner-hero-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
  pointer-events: none;
}

.faq-ambient {
  display: none;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
}

.orb-a {
  width: 260px;
  height: 260px;
  top: 8%;
  right: 11%;
  background: radial-gradient(circle, rgba(225, 6, 19, 0.34), rgba(225, 6, 19, 0.04) 70%, transparent 100%);
  animation: orbFloatA 7.2s ease-in-out infinite;
}

.orb-b {
  width: 200px;
  height: 200px;
  bottom: 14%;
  left: 8%;
  background: radial-gradient(circle, rgba(38, 114, 255, 0.2), rgba(38, 114, 255, 0.02) 70%, transparent 100%);
  animation: orbFloatB 8.4s ease-in-out infinite;
}

.inner-hero-faq .live-status,
.inner-hero-faq .eyebrow,
.inner-hero-faq h1,
.inner-hero-faq .lead,
.inner-hero-faq .faq-quick-cta {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: faqTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.inner-hero-faq .live-status {
  animation-delay: 0.1s;
}

.inner-hero-faq .eyebrow {
  animation-delay: 0.16s;
}

.inner-hero-faq h1 {
  animation-delay: 0.24s;
}

.inner-hero-faq .lead {
  animation-delay: 0.32s;
}

.inner-hero-faq .faq-quick-cta {
  animation-delay: 0.4s;
}

.live-status {
  margin: 0 0 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid #dce2ea;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  color: #3b4554;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #15b86a;
  box-shadow: 0 0 0 0 rgba(21, 184, 106, 0.45);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 184, 106, 0.46);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(21, 184, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 184, 106, 0);
  }
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.inner-hero .lead {
  color: #4c5563;
  text-shadow: none;
  max-width: 76ch;
}

.inner-hero-faq h1 {
  color: #151b24;
  text-shadow: none;
}

.inner-hero-faq .lead {
  color: #4a5464;
  text-shadow: none;
}

.faq-quick-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.68rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.faq-quick-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 16px 34px rgba(225, 6, 19, 0.34), 0 0 20px rgba(225, 6, 19, 0.14);
  animation: ctaHeartbeat 2.2s ease-in-out infinite;
}

.faq-quick-cta .btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(225, 6, 19, 0.35);
  opacity: 0;
  transform: scale(0.95);
  animation: ctaRing 2.2s ease-in-out infinite;
}

.faq-quick-cta .btn i {
  font-size: 1.12rem;
}

.faq-quick-cta small {
  color: #545d6b;
  font-size: 0.86rem;
  font-weight: 500;
}

.faq-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #111111;
  --faq-text: #f7f8fa;
  --faq-muted: #d4d9e0;
  --faq-accent: var(--accent);
}

.faq-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.46) 100%),
    url("İmg/Gorsel.png") center/cover no-repeat;
}

.faq-showcase--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.faq-showcase--hero .faq-showcase-bg {
  background:
    linear-gradient(100deg, rgba(5, 7, 10, 0.78) 0%, rgba(5, 7, 10, 0.68) 42%, rgba(5, 7, 10, 0.5) 100%),
    url("İmg/Herogorsel2.png") center/cover no-repeat;
}

.faq-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.4));
  z-index: -1;
  pointer-events: none;
}

.faq-showcase-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 2rem;
  align-items: start;
}

.faq-side {
  color: var(--faq-text);
  padding-top: 1rem;
  animation: faqSlideInLeft 0.85s ease forwards;
}

.faq-side .eyebrow {
  color: var(--faq-accent);
  margin-bottom: 0.55rem;
}

.faq-side h1 {
  color: var(--faq-text);
  font-size: clamp(2rem, 4.1vw, 3.25rem);
  line-height: 1.03;
  margin-bottom: 0.82rem;
}

.faq-side h1 span {
  color: var(--faq-accent);
}

.faq-side-line {
  display: inline-block;
  width: 56px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e10613, #ff4f5c);
  margin-bottom: 1rem;
}

.faq-side .lead {
  color: var(--faq-muted);
  max-width: 42ch;
  margin-bottom: 1.6rem;
}

.faq-support-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(227, 6, 19, 0.5);
  background: rgba(22, 22, 22, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  max-width: 430px;
  transition: box-shadow 300ms ease, transform 300ms ease, border-color 300ms ease;
}

.faq-support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, 0.88);
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.3), 0 16px 34px rgba(227, 6, 19, 0.28);
}

.faq-support-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 6, 19, 0.5);
  color: #ff3945;
  font-size: 1.2rem;
}

.faq-support-card h3 {
  color: var(--faq-text);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.faq-support-card p {
  color: var(--faq-muted);
  font-size: 0.93rem;
  margin-bottom: 0.55rem;
}

.faq-support-card a {
  color: var(--faq-accent);
  font-weight: 700;
  font-size: 1.95rem;
  font-family: Poppins, sans-serif;
}

.faq-accordion-dark {
  animation: faqSlideInRight 0.9s ease forwards;
}

.faq-accordion-dark details {
  background: rgba(22, 22, 22, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #e30613;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.faq-accordion-dark details:last-child {
  margin-bottom: 0;
}

.faq-accordion-dark details:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(227, 6, 19, 0.2);
}

.faq-accordion-dark summary {
  color: var(--faq-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  padding: 22px 56px 22px 22px;
  position: relative;
}

.faq-accordion-dark summary::after {
  content: "+";
  font-family: inherit;
  font-weight: 600;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faq-accent);
  font-size: 1.6rem;
  line-height: 1;
  transition: color 300ms ease;
}

.faq-accordion-dark details[open] summary::after {
  content: "—";
}

.faq-accordion-dark details[open] summary {
  color: var(--faq-accent);
}

.faq-accordion-dark p,
.faq-accordion-dark li {
  color: var(--faq-muted);
  font-size: 16px;
  line-height: 1.9;
}

.faq-accordion-dark p,
.faq-accordion-dark ul {
  margin: 0;
  padding: 20px;
  background: rgba(10, 10, 10, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion-dark ul {
  padding-left: 2.2rem;
}

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

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

.live-status {
  border: 1px solid #dce2ea;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  color: #3b4554;
}

@keyframes orbFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-22px, 16px, 0) scale(1.06);
  }
}

@keyframes orbFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

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

@keyframes faqTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqShine {
  0%,
  60%,
  100% {
    left: -35%;
    opacity: 0;
  }
  15%,
  35% {
    left: 130%;
    opacity: 1;
  }
}

@keyframes ctaHeartbeat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
  }
}

@keyframes ctaRing {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  35% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #aeb1b7;
  display: grid;
  place-items: center;
}

.scroll-indicator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-7px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.summary-cards {
  padding: 2.1rem 0 1.3rem;
  position: relative;
}

.summary-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 40%, rgba(225, 6, 19, 0.08), transparent 40%);
  pointer-events: none;
}

.cards-4,
.cards-3 {
  display: grid;
  gap: 1rem;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.reason-card,
.counter-card,
.blog-card,
.contact-form,
.contact-info,
.stat-box,
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  box-shadow: 0 14px 28px rgba(16, 20, 30, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 58%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-16deg);
  transition: left 0.7s ease;
}

.mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.36), rgba(225, 6, 19, 0.04)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.summary-cards .mini-card:nth-child(1) {
  transition-delay: 0.05s;
}

.summary-cards .mini-card:nth-child(2) {
  transition-delay: 0.11s;
}

.summary-cards .mini-card:nth-child(3) {
  transition-delay: 0.17s;
}

.summary-cards .mini-card:nth-child(4) {
  transition-delay: 0.23s;
}

.mini-card:hover {
  transform: translateY(-9px) scale(1.015);
  border-color: rgba(225, 6, 19, 0.2);
  box-shadow: 0 22px 36px rgba(15, 19, 29, 0.14);
}

.mini-card:hover::before {
  left: 145%;
}

.mini-card:hover::after {
  opacity: 1;
}

.mini-icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(225, 6, 19, 0.15), rgba(225, 6, 19, 0.04));
}

.mini-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 1px solid rgba(225, 6, 19, 0.28);
  animation: miniPulse 2.4s ease-in-out infinite;
}

.mini-card i {
  color: var(--accent);
  font-size: 1.2rem;
}

.mini-copy h3 {
  font-size: 1.03rem;
  margin-bottom: 0.3rem;
}

.mini-copy p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #596070;
}

@keyframes miniPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.18;
  }
}

.lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.about-media img {
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  min-height: 520px;
  object-fit: cover;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-trust {
  padding-top: 8rem;
  background: radial-gradient(circle at 20% 15%, rgba(225, 6, 19, 0.09), transparent 42%), linear-gradient(180deg, #f5f6f9 0%, #eef1f5 100%);
}

.about-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-trust-copy h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

.about-trust-copy > p {
  color: #2d3442;
  margin-bottom: 1.4rem;
}

.about-trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-trust-card {
  border-radius: 16px;
  border: 1px solid #e2e5eb;
  background: #fff;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  box-shadow: 0 14px 30px rgba(19, 23, 31, 0.07);
}

.about-trust-card i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(225, 6, 19, 0.11);
  color: #d10612;
  font-size: 1.2rem;
}

.about-trust-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.about-trust-card p {
  font-size: 0.92rem;
  color: #475062;
}

.about-trust-visual {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(20, 24, 31, 0.08);
  background: linear-gradient(165deg, rgba(13, 16, 22, 0.96), rgba(26, 31, 39, 0.96));
  box-shadow: 0 22px 42px rgba(6, 8, 12, 0.28);
}

.about-main-image {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

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

.about-check-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.about-check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #f6f8fb;
  font-weight: 600;
}

.about-check-list i {
  color: #ff5964;
  font-size: 1.1rem;
}

.about-slogan {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid #ff5964;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
}

.about-counters {
  padding-top: 1.2rem;
  padding-bottom: 5.5rem;
}

.about-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-counter-card {
  border-radius: 16px;
  border: 1px solid #e2e4ea;
  background: #fff;
  padding: 1.1rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(22, 26, 34, 0.07);
}

.about-counter-card strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  color: #c70a16;
}

.about-counter-card span {
  color: #4a5261;
  font-weight: 600;
  font-size: 0.92rem;
}

.stats-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-box {
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #fafafa);
}

.stat-box strong {
  display: block;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-page {
  background:
    radial-gradient(680px 220px at 8% 9%, rgba(225, 6, 19, 0.1), transparent 68%),
    radial-gradient(520px 180px at 92% 3%, rgba(18, 28, 46, 0.08), transparent 70%),
    #f5f7fa;
}

.about-hero {
  position: relative;
  padding-top: 8.6rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #ffffff, #f7f9fc 90%);
  overflow: hidden;
}

.about-light {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
}

.about-light-a {
  left: -120px;
  top: -80px;
  background: rgba(225, 6, 19, 0.2);
}

.about-light-b {
  right: -120px;
  bottom: -130px;
  background: rgba(16, 24, 40, 0.14);
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.about-hero-copy h1 {
  font-size: clamp(2rem, 4.1vw, 3.05rem);
  max-width: 18ch;
}

.about-hero-copy .lead {
  margin-top: 1rem;
  color: #313946;
  max-width: 66ch;
}

.about-visual {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(14, 18, 26, 0.18);
  transition: transform 0.38s ease;
  will-change: transform;
}

.about-visual img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.about-glass {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(10, 13, 18, 0.48);
  backdrop-filter: blur(7px);
  color: #ffffff;
}

.about-glass h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.about-glass ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.about-glass li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(248, 250, 255, 0.95);
}

.about-glass i {
  color: #ff5f69;
  font-size: 1rem;
}

.about-metrics {
  padding-top: 4.8rem;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-metric-card {
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid #e4e9ef;
  background: linear-gradient(180deg, #ffffff, #f8fafd);
  box-shadow: 0 14px 28px rgba(20, 22, 27, 0.06);
}

.metric-value {
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
}

.metric-suffix {
  margin-left: 0.08rem;
}

.about-metric-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.about-metric-card p {
  color: #555f6d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.why-ozum {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-top: 1px solid #e6ebf0;
  border-bottom: 1px solid #e6ebf0;
}

.why-ozum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-ozum-card {
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid #e5e8ef;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(16, 20, 28, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-ozum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(16, 20, 28, 0.09);
}

.why-ozum-card i {
  font-size: 1.35rem;
  color: var(--accent);
}

.why-ozum-card h3 {
  margin-top: 0.7rem;
  font-size: 1.02rem;
}

.why-ozum-card p {
  font-size: 0.91rem;
}

.about-timeline {
  background: #f7f9fc;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0;
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 108px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(225, 6, 19, 0.75), rgba(225, 6, 19, 0.15));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: 101px;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(225, 6, 19, 0.18);
}

.timeline-item span {
  color: var(--accent);
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.timeline-item p {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #e4e9f0;
  background: #ffffff;
  color: #414c5d;
}

.about-certifications {
  background: #ffffff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.cert-badge {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #e6ebf2;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 1rem 0.9rem;
  min-height: 128px;
}

.cert-badge i {
  font-size: 1.35rem;
  color: var(--accent);
}

.cert-badge span {
  color: #3f4a5b;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 600;
}

.about-cta-strip {
  padding: 1.2rem 0 5.6rem;
}

.about-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: linear-gradient(125deg, #b1020d, #e10613 48%, #ff3a45);
  color: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 20px 42px rgba(167, 5, 15, 0.36);
}

.about-cta-wrap .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.about-cta-wrap h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  max-width: 38ch;
}

.about-cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-light {
  background: #ffffff;
  color: #8c0c13;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.32);
}

.btn-dark {
  background: rgba(12, 13, 17, 0.86);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.4rem;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.service-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f1f3f6;
  color: var(--accent);
  font-size: 1.4rem;
  transition: transform 0.45s ease;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p {
  margin-bottom: 1rem;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

.service-card:hover i {
  transform: rotate(12deg);
}

.service-card:hover::after {
  width: calc(100% - 2.8rem);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.services-premium {
  position: relative;
  background:
    radial-gradient(700px 240px at 12% 18%, rgba(227, 6, 19, 0.16), transparent 66%),
    linear-gradient(180deg, #121212, #0f1013 72%, #14151a);
}

.services-premium .section-head {
  max-width: 840px;
  margin-bottom: 2.2rem;
}

.services-premium .eyebrow {
  color: #ff4d57;
}

.services-premium h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
}

.services-intro {
  margin-top: 0.85rem;
  color: #cfcfcf;
  font-size: 1rem;
  max-width: 80ch;
}

.services-premium .services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-link-card {
  position: relative;
  min-height: 280px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid #e30613;
  background: linear-gradient(165deg, rgba(42, 42, 42, 0.42), rgba(22, 22, 22, 0.86));
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  cursor: default;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 380ms ease,
    background 380ms ease;

  /* Scroll-in başlangıç durumu */
  opacity: 0;
  transform: translateY(36px) scale(0.97);
}

/* Scroll ile görünür olunca */
.service-link-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 380ms ease,
    background 380ms ease;
}

/* Staggered delay — her kart sırayla gelsin */
.services-grid .service-link-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-link-card:nth-child(2) { transition-delay: 80ms; }
.services-grid .service-link-card:nth-child(3) { transition-delay: 160ms; }
.services-grid .service-link-card:nth-child(4) { transition-delay: 240ms; }
.services-grid .service-link-card:nth-child(5) { transition-delay: 320ms; }
.services-grid .service-link-card:nth-child(6) { transition-delay: 400ms; }
.services-grid .service-link-card:nth-child(7) { transition-delay: 480ms; }
.services-grid .service-link-card:nth-child(8) { transition-delay: 560ms; }

/* Hover sonrası delay sıfırla (instant hover) */
.service-link-card.in-view:hover {
  transition-delay: 0ms !important;
}

a.service-link-card {
  cursor: pointer;
}

.service-link-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* Kırmızı parıltı — hover'da açılır */
.service-link-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -45%;
  width: 72%;
  height: 72%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 400ms ease;
}

.service-link-card:hover::after {
  opacity: 0.7;
}

.service-link-card i {
  font-size: 60px;
  line-height: 1;
  color: #e30613;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), text-shadow 380ms ease;
  display: inline-block;
}

.service-link-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
}

.service-link-card p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  transition: color 300ms ease;
}

.service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
}

.service-cta-link {
  width: fit-content;
  cursor: pointer;
}

/* === HOVER Mikro-animasyonlar === */
.service-link-card:hover,
.service-link-card:focus-visible {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 24px 50px rgba(227, 6, 19, 0.28),
    0 0 0 1px rgba(227, 6, 19, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: rgba(227, 6, 19, 0.6);
  background: linear-gradient(165deg, rgba(60, 20, 20, 0.55), rgba(30, 10, 10, 0.92));
}

/* Sol kırmızı çizgi hover'da parlıyor */
.service-link-card:hover {
  border-left-color: #ff2233;
  border-left-width: 5px;
}

/* İkon: döner + büyür + parlar */
.service-link-card:hover i,
.service-link-card:focus-visible i {
  transform: scale(1.18) rotate(-6deg);
  text-shadow:
    0 0 18px rgba(227, 6, 19, 0.6),
    0 0 40px rgba(227, 6, 19, 0.25);
}

/* Metin hafif aydınlanır */
.service-link-card:hover p {
  color: #e5e5e5;
}

/* "İncele →" ok kayar */
.service-link-card:hover .service-cta,
.service-link-card:focus-visible .service-cta {
  transform: translateX(10px);
  color: #ff8088;
}

.service-link-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.26);
  outline-offset: 3px;
}


.service-detail-page {
  background:
    radial-gradient(760px 260px at 10% 8%, rgba(227, 6, 19, 0.14), transparent 70%),
    linear-gradient(180deg, #f5f7fa, #f0f3f8 65%, #f8fafd);
}

.service-detail-hero {
  padding-top: 8.8rem;
  padding-bottom: 4.3rem;
}

.service-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.service-detail-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

.service-detail-copy .lead {
  margin-top: 0.95rem;
  color: #3b4656;
  max-width: 68ch;
}

.service-detail-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.service-detail-hero-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 52px rgba(13, 16, 23, 0.2);
}

.service-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.service-image-link img {
  transition: transform 300ms ease, filter 300ms ease;
}

.service-image-link:hover img,
.service-image-link:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.service-image-link:focus-visible {
  outline: 2px solid rgba(227, 6, 19, 0.5);
  outline-offset: -2px;
}

.service-detail-hero-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.service-detail-about {
  padding-top: 4.8rem;
}

.service-detail-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: center;
}

.service-detail-about-grid h2 {
  margin-bottom: 0.75rem;
}

.service-detail-about-grid p {
  color: #465263;
}

.service-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-detail-gallery img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 30px rgba(18, 22, 30, 0.1);
}

.service-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-check-card {
  border-radius: 16px;
  border: 1px solid #e4e8ef;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 1.1rem;
  min-height: 140px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.5rem;
  box-shadow: 0 12px 24px rgba(18, 22, 28, 0.06);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    border-color 300ms ease,
    background 300ms ease;
  cursor: default;
}

.service-check-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 20px 40px rgba(227, 6, 19, 0.12),
    0 0 0 1px rgba(227, 6, 19, 0.15);
  border-color: rgba(227, 6, 19, 0.3);
  background: linear-gradient(180deg, #fff5f5, #fff8f8);
}

/* Staggered giriş */
.service-check-grid .service-check-card:nth-child(1) { transition-delay: 0ms; }
.service-check-grid .service-check-card:nth-child(2) { transition-delay: 90ms; }
.service-check-grid .service-check-card:nth-child(3) { transition-delay: 180ms; }
.service-check-grid .service-check-card:nth-child(4) { transition-delay: 270ms; }
.service-check-grid .service-check-card:nth-child(5) { transition-delay: 360ms; }
.service-check-grid .service-check-card:nth-child(6) { transition-delay: 450ms; }

/* Hover sonrası delay sıfırla */
.service-check-card.in-view:hover { transition-delay: 0ms !important; }

.service-check-card i {
  color: #e30613;
  font-size: 1.3rem;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
  display: inline-block;
}

.service-check-card:hover i {
  transform: scale(1.25) rotate(-8deg);
  color: #c0000a;
}

.service-check-card h3 {
  margin: 0;
  font-size: 1.02rem;
  transition: color 300ms ease;
}

.service-check-card:hover h3 {
  color: #d62828;
}


.service-detail-process {
  background: #101114;
}

.service-detail-process .eyebrow,
.service-detail-process h2 {
  color: #ffffff;
}

.service-process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-process-grid li {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(21, 21, 21, 0.86);
  padding: 1.1rem;
  min-height: 156px;
  display: grid;
  gap: 0.6rem;
  align-content: center;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    border-color 300ms ease,
    background 300ms ease;
  cursor: default;
}

.service-process-grid li:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(227, 6, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 6, 19, 0.5);
  background: rgba(35, 12, 12, 0.92);
}

/* Staggered giriş */
.service-process-grid li:nth-child(1) { transition-delay: 0ms; }
.service-process-grid li:nth-child(2) { transition-delay: 100ms; }
.service-process-grid li:nth-child(3) { transition-delay: 200ms; }
.service-process-grid li:nth-child(4) { transition-delay: 300ms; }

/* Hover sonrasi delay sıfırla */
.service-process-grid li.in-view:hover { transition-delay: 0ms !important; }


.service-process-grid span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(227, 6, 19, 0.2);
  color: #ff5660;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms ease,
    box-shadow 300ms ease;
}

.service-process-grid li:hover span {
  transform: scale(1.2);
  background: rgba(227, 6, 19, 0.4);
  box-shadow: 0 0 16px rgba(227, 6, 19, 0.45);
}

.service-process-grid h3 {
  margin: 0;
  color: #f4f6fb;
  font-size: 1rem;
  transition: color 300ms ease;
}

.service-process-grid li:hover h3 {
  color: #ffffff;
}


.service-why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-why-grid li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid #e3e8ef;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(18, 22, 30, 0.05);
}

.service-why-grid i {
  color: #e30613;
  font-size: 1.1rem;
}

.service-why-grid span {
  color: #1f2631;
  font-weight: 600;
}

.service-detail-faq-list {
  display: grid;
  gap: 0.8rem;
}

.service-detail-faq-list details {
  border-radius: 14px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(20, 24, 32, 0.06);
}

.service-detail-faq-list summary {
  padding: 1rem;
  font-weight: 700;
  color: #1b232f;
  cursor: pointer;
}

.service-detail-faq-list p {
  padding: 0 1rem 1rem;
  color: #4c5666;
}

.service-detail-cta {
  padding: 0 0 6rem;
}

.service-detail-cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  border-radius: 18px;
  padding: 1.5rem;
  background: linear-gradient(130deg, #b1020d, #e30613 52%, #ff3e49);
  box-shadow: 0 20px 44px rgba(181, 9, 20, 0.34);
}

.service-detail-cta-wrap .eyebrow,
.service-detail-cta-wrap h2,
.service-detail-cta-wrap p {
  color: #ffffff;
}

.service-detail-cta-wrap p {
  margin-top: 0.4rem;
  max-width: 62ch;
}

.service-detail-cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.products {
  position: relative;
  background-image: radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.03), transparent 56%);
}

.why-intro {
  max-width: 78ch;
  margin-top: 0.4rem;
}

.why-metrics {
  margin-top: 0.7rem;
}

.why-metric {
  padding: 1.45rem 1.3rem;
  display: grid;
  gap: 0.25rem;
  align-content: center;
  min-height: 150px;
}

.why-metric strong {
  color: var(--accent);
  font-size: clamp(1.7rem, 3.1vw, 2.15rem);
  line-height: 1;
  font-family: Poppins, sans-serif;
}

.why-metric span {
  color: #2b323d;
  font-weight: 600;
  line-height: 1.45;
}

.product-catalog {
  background: linear-gradient(180deg, #fbfbfc, #f6f7f9);
}

.reason-card {
  padding: 1.4rem;
}

.reason-card i {
  font-size: 1.4rem;
  color: var(--accent);
}

.logos {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 1rem 0;
}

.logo-slide {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  animation: marquee 24s linear infinite;
}

.logo-slide span {
  color: #2f3238;
  font-weight: 700;
  opacity: 0.8;
}

@keyframes marquee {
  to { transform: translateX(-100%); }
}

.counter {
  background: #17181b;
}

.counter-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #26282c, #1d1f24);
  border-color: #30333a;
}

.counter-card h3 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  transition: transform 280ms ease, text-shadow 280ms ease;
}

.counter-card p {
  color: #d1d4d8;
  transition: color 280ms ease;
}

.counter-card.in-view {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms ease,
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.counter-card.in-view:hover,
.counter-card.in-view:focus-within {
  transform: translateY(-8px);
  border-color: rgba(227, 6, 19, 0.7);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38), 0 0 22px rgba(227, 6, 19, 0.18);
}

.counter-card.in-view:hover h3,
.counter-card.in-view:focus-within h3 {
  transform: scale(1.06);
  text-shadow: 0 0 18px rgba(227, 6, 19, 0.48);
}

.counter-card.in-view:hover p,
.counter-card.in-view:focus-within p {
  color: #ffffff;
}

.gallery .masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.4s ease;
}

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 30%, rgba(197, 25, 31, 0.65));
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-item:hover figcaption {
  opacity: 1;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem 1.1rem;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  margin-top: 0.7rem;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card div {
  padding: 1rem;
}

.legal-page {
  background: radial-gradient(circle at 20% 15%, rgba(225, 6, 19, 0.08), transparent 38%), linear-gradient(180deg, #f5f6f9 0%, #eef1f6 100%);
}

.legal-hero {
  padding-top: 8.2rem;
  padding-bottom: 2rem;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  color: #151922;
}

.legal-meta {
  margin-top: 0.5rem;
  color: #2d3340;
  font-weight: 500;
}

.legal-content {
  padding-top: 0.8rem;
  padding-bottom: 5.2rem;
}

.legal-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e4e7ed;
  box-shadow: 0 22px 48px rgba(18, 23, 33, 0.09);
  padding: clamp(1.1rem, 2.6vw, 2.2rem);
  display: grid;
  gap: 0.8rem;
}

.legal-card h2 {
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

.legal-card p,
.legal-card li {
  color: #2f3643;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.legal-note {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: #5a6375;
}

.cta {
  padding: 4.8rem 0;
  min-height: 280px;
  background: linear-gradient(135deg, #181a1f, #22252b);
  color: #fff;
}

.cta-wrap {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.05rem;
}

.cta h2 {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.cta-wrap p {
  margin: 0;
  max-width: 58ch;
  color: rgba(240, 244, 250, 0.9);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.contact-form,
.contact-info {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  gap: 0.78rem;
}

.form-intro,
.info-intro {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-row > div {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #232833;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #d8dbe0;
  border-radius: 12px;
  background: #fff;
  padding: 0.78rem 0.92rem;
  font: inherit;
  color: #1a1f27;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(225, 6, 19, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(225, 6, 19, 0.08);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.consent input {
  margin-top: 0.22rem;
  accent-color: var(--accent);
}

.consent span {
  color: #4d5460;
  font-size: 0.86rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.form-actions small {
  color: #646b77;
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.1rem;
  font-size: 0.86rem;
  color: #0f6f3f;
  font-weight: 600;
}

.contact-info .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-info .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid #ebedf2;
  background: #fff;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.contact-info .info-list li:hover,
.contact-info .info-list li:focus-within {
  transform: translateX(5px);
  border-color: rgba(227, 6, 19, 0.42);
  box-shadow: 0 8px 18px rgba(20, 21, 24, 0.08);
}

.contact-info i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.contact-info .info-list li div {
  display: grid;
  gap: 0.15rem;
}

.contact-info .info-list li span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f7784;
  font-weight: 600;
}

.contact-info .info-list li a,
.contact-info .info-list li p {
  color: #1f2530;
  font-weight: 600;
}

.contact-info .info-list li a:hover {
  color: var(--accent);
}

.contact-meta-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.contact-meta-cards article {
  border: 1px solid #ebedf2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
  padding: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.contact-meta-cards article:hover,
.contact-meta-cards article:focus-within {
  transform: translateY(-5px);
  border-color: rgba(227, 6, 19, 0.45);
  box-shadow: 0 12px 22px rgba(20, 21, 24, 0.1);
}

.contact-meta-cards article i {
  margin-top: 0.08rem;
}

.contact-meta-cards strong {
  font-size: 0.9rem;
  color: #1b212b;
}

.contact-meta-cards p {
  margin-top: 0.16rem;
  font-size: 0.82rem;
  color: #5a6370;
}

.contact-info iframe {
  border: 0;
  margin-top: 1rem;
  width: 100%;
  min-height: 240px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px #eef0f4;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #111315;
  color: #d6d9de;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 3.2rem;
  min-height: 380px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.05), rgba(227, 6, 19, 0.9), rgba(227, 6, 19, 0.05));
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 94vw);
  height: 260px;
  background: radial-gradient(circle at center, rgba(197, 25, 31, 0.18), rgba(197, 25, 31, 0.04) 45%, transparent 72%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1200px, 92vw);
  margin: 0 auto;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.footer-grid > section[data-animate] {
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.footer-grid > section[data-animate]:nth-child(1) {
  transition-delay: 0.03s;
}

.footer-grid > section[data-animate]:nth-child(2) {
  transition-delay: 0.08s;
}

.footer-grid > section[data-animate]:nth-child(3) {
  transition-delay: 0.13s;
}

.footer-grid > section[data-animate]:nth-child(4) {
  transition-delay: 0.18s;
}

.footer-grid > section[data-animate]:nth-child(5) {
  transition-delay: 0.23s;
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-brand {
  gap: 16px;
}

.footer-brand span {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-grid h3::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(197, 25, 31, 0.95), rgba(197, 25, 31, 0.25));
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.55rem;
  color: #bfbfbf;
  font-size: 16px;
  line-height: 1.75;
}

.footer-grid a.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-grid a {
  position: relative;
  width: fit-content;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-grid a:hover::after,
.footer-grid a:focus-visible::after {
  width: 100%;
}

.copyright {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 4vw 1.7rem;
  text-align: center;
}

.copyright p {
  color: #adb4be;
  margin: 0;
}

.footer-company-text {
  max-width: 32ch;
  color: #aeb5c0;
  margin-bottom: 0.9rem;
}

.footer-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d7dde6;
  font-weight: 600;
  font-size: 14px;
}

.footer-trust-list i {
  color: #e30613;
  transition: transform 0.3s ease;
}

.footer-trust-list li:hover i {
  transform: scale(1.08);
}

.footer-links--arrow a {
  padding-left: 0.9rem;
}

.footer-links--arrow a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #e30613;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-links--arrow a:hover::before,
.footer-links--arrow a:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

.footer-all-services {
  margin-top: 0.25rem;
  color: #ffffff !important;
  font-weight: 600;
}

.footer-contact-col .footer-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #e3e7ee;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-contact-col .footer-contact-line i {
  color: #e30613;
  transition: transform 0.3s ease;
}

.footer-contact-col .footer-contact-line:hover i {
  transform: scale(1.08);
}

.footer-phone-accent {
  color: #e30613 !important;
  font-weight: 700;
}

.footer-legal-links {
  margin-top: 0.55rem !important;
  font-size: 12px;
  color: #9ca3af !important;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #e30613;
}

.design-credit {
  margin-top: 0.85rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.karcar-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.38rem;
  width: auto;
  max-width: min(96vw, 700px);
  min-height: 44px;
  padding: 7px 12px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.karcar-badge::before {
  content: none;
}

.karcar-badge .badge-prefix {
  color: #aeb6c2;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.karcar-badge .karcar-logo-thumb {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.22);
}

.karcar-badge .brand-main {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.karcar-badge .brand-sub {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
}

.karcar-badge .badge-mail {
  color: #bcc4cf;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16px;
  white-space: nowrap;
}

.karcar-badge:hover,
.karcar-badge:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.2), 0 0 16px rgba(108, 55, 147, 0.16);
}

.back-to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a1d23, #12151b);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 8, 11, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.28s ease;
  z-index: 998;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 19, 0.38);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.back-to-top i {
  font-size: 1.15rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: topPulse 1.9s ease-in-out infinite;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(145deg, #232833, #171b24);
  box-shadow: 0 20px 36px rgba(7, 8, 11, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 24px rgba(225, 6, 19, 0.3);
}

.back-to-top:hover::before,
.back-to-top:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-float {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.76rem 1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #23d366, #19b956);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(20, 180, 84, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.whatsapp-float i {
  font-size: 1.2rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  filter: saturate(1.08);
  box-shadow: 0 18px 34px rgba(20, 180, 84, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(35, 211, 102, 0.45);
  opacity: 0.5;
  animation: whatsappPulse 2.1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.2;
  }
}

@keyframes topPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(7, 8, 11, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 rgba(225, 6, 19, 0);
  }
  50% {
    box-shadow: 0 14px 30px rgba(7, 8, 11, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 22px rgba(225, 6, 19, 0.28);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(1.5px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-left"] {
  transform: translateX(36px);
}

[data-animate="fade-right"] {
  transform: translateX(-36px);
}

[data-animate="scale"] {
  transform: scale(0.9);
}

[data-animate].in-view {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

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

  .about-trust-grid,
  .about-counters-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-grid,
  .about-metrics-grid,
  .why-ozum-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-visual img {
    min-height: 420px;
  }

  .timeline-list::before {
    left: 86px;
  }

  .timeline-item::before {
    left: 79px;
  }

  .about-cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .faq-side,
  .faq-accordion-dark {
    animation: none;
  }

  .services-premium .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-hero-grid,
  .service-detail-about-grid,
  .service-check-grid,
  .service-process-grid,
  .service-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-hero-media img {
    min-height: 360px;
  }

  .service-detail-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-controls {
    margin-top: 1.5rem;
  }

  .services-grid,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-main {
    min-height: 460px;
  }

  .gallery .masonry {
    column-count: 2;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    place-items: center;
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

  .nav-right {
    position: absolute;
    top: 84px;
    left: 4vw;
    right: 4vw;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-right.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header:not(.scrolled) .nav-right.open .nav-links a {
    color: #202530;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.65rem;
  }

  .cards-3,
  .services-grid,
  .cards-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row,
  .contact-meta-cards {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 1.4rem;
  }

  .footer-grid a {
    width: fit-content;
  }

  .design-credit {
    width: 100%;
    text-align: center;
  }

  .karcar-badge {
    margin: 0 auto;
    max-width: calc(100vw - 32px);
    font-size: 0.8rem;
    padding: 6px 10px;
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  .karcar-badge .badge-mail {
    flex-basis: 100%;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .whatsapp-float {
    left: 0.8rem;
    bottom: 0.9rem;
    padding: 0.72rem 0.9rem;
  }

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

  .about-trust {
    padding-top: 7.3rem;
  }

  .about-trust-cards {
    grid-template-columns: 1fr;
  }

  .about-main-image img {
    height: 300px;
  }

  .about-hero {
    padding-top: 7.5rem;
  }

  .about-hero-grid,
  .about-metrics-grid,
  .why-ozum-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1 {
    max-width: 13ch;
  }

  .about-glass {
    position: static;
    margin: 0.85rem;
  }

  .about-visual img {
    min-height: 320px;
  }

  .timeline-list::before {
    left: 16px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-left: 2rem;
  }

  .timeline-item::before {
    left: 9px;
  }

  .timeline-item p {
    padding: 0.72rem 0.82rem;
  }

  .about-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .about-cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-showcase {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faq-showcase .container {
    width: calc(100% - 40px);
  }

  .faq-side h1 {
    max-width: 10ch;
  }

  .faq-support-card a {
    font-size: 1.52rem;
  }

  .faq-accordion-dark summary {
    font-size: 1.05rem;
    padding: 16px 44px 16px 16px;
  }

  .services-premium .services-grid {
    grid-template-columns: 1fr;
  }

  .service-link-card {
    min-height: 200px;
    height: auto;
    padding: 0.7rem;
    gap: 0.44rem;
    border-radius: 16px;
  }

  .service-link-card i {
    font-size: 34px;
    opacity: 0.92;
  }

  .service-link-card h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .service-link-card p {
    font-size: 0.85rem;
    line-height: 1.42;
  }

  .service-link-card .service-cta {
    font-size: 0.84rem;
  }

  .service-card {
    padding: 0.88rem;
  }

  .service-card i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.98rem;
    background: transparent;
    border: 1px solid rgba(227, 6, 19, 0.26);
  }

  .service-card h3 {
    margin-top: 0.58rem;
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .service-link-card:hover i,
  .service-link-card:focus-visible i,
  .service-card:hover i {
    transform: none;
    text-shadow: none;
  }

  .service-detail-hero {
    padding-top: 7.6rem;
  }

  .service-detail-hero-grid,
  .service-detail-about-grid,
  .service-check-grid,
  .service-process-grid,
  .service-why-grid,
  .service-detail-gallery {
    grid-template-columns: 1fr;
  }

  .service-detail-copy h1 {
    max-width: 12ch;
  }

  .service-detail-hero-media img {
    min-height: 300px;
  }

  .service-detail-cta-wrap {
    padding: 1.2rem;
  }

  .service-detail-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .service-detail-cta-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-overlay {
    padding-top: 7rem;
    padding-bottom: 4.6rem;
  }

  .faq-quick-cta {
    width: 100%;
  }

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

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .gallery .masonry {
    column-count: 1;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   H\u0130ZMETLER ARASI \u00d6NCES\u0130 / SONRAKI NAV\u0130GASYON
   ========================================================================== */
.service-prev-next {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 0;
}

.service-prev-next-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88px;
}

.service-nav-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: #1a1a2e;
  transition: background 0.22s ease, color 0.22s ease;
  border: none;
  background: transparent;
  position: relative;
}

.service-nav-btn:hover {
  background: #fff1f1;
  color: #d62828;
}

.service-nav-btn.prev {
  border-right: 1px solid #e9ecef;
  justify-content: flex-start;
}

.service-nav-btn.next {
  justify-content: flex-end;
  text-align: right;
}

.service-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s ease;
  font-size: 1.1rem;
  color: #64748b;
}

.service-nav-btn:hover .service-nav-arrow {
  background: #d62828;
  border-color: #d62828;
  color: #fff;
  transform: scale(1.08);
}

.service-nav-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.service-nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.service-nav-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .service-prev-next-inner {
    grid-template-columns: 1fr;
  }

  .service-nav-btn.prev {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .service-nav-btn {
    padding: 1.1rem 1.25rem;
  }

  .service-nav-title {
    font-size: 0.85rem;
  }
}
