:root {
  --orange: #FF3E3E;
  --orange-dark: #FF9557;
  --black: #111111;
  --gray-dark: #1f1f1f;
  --white: #ffffff;
  --bg-light: #f5f5f5;
  --border-radius: 10px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
}

@media (min-width: 769px) {
  .site-header .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .navbar {
    position: relative;
    display: flex;
    align-items: center;
  }

  .menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    width: max-content;
    justify-content: center;
  }

  .langs {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .menu li a.active {
    color: #EDEDED;
  }

  .menu li a.active::after {
    height: 0;
    transform: scaleX(0);
    opacity: 0;
  }

  .hero-actions .btn.secondary {
    background: rgba(255, 122, 0, 0.14);
    border-color: rgba(255, 122, 0, 0.35);
    color: #FFD9B2;
  }

  .hero-actions .btn.secondary:hover {
    background: rgba(255, 122, 0, 0.22);
    border-color: rgba(255, 122, 0, 0.55);
  }
}

.navbar {
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem; /* header içeriğini sağdan soldan içeri al */
  background: linear-gradient(90deg, #050505 0%, #101010 100%);
  border-bottom: 1px solid rgba(255, 122, 0, 0.55);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(255, 122, 0, 0.28);
}

main {
  padding-top: 68px; /* header yüksekliğiyle aynı olsun, altta siyah boşluk kalmasın */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.logo-image {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
}

.logo span {
  color: var(--white);
  font-weight: 600;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444444;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.navbar-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 72px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EDEDED;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Yeni nav yapısı (logo + ul.menu + .langs) için masaüstü stilleri */
.burger {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  list-style: none;
}

.menu li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 64px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EDEDED;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.menu li a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF7A00, #FFA341);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.menu li a:hover,
.menu li a:focus-visible {
  color: #FFA341;
  transform: translateY(-1px);
}

.menu li a:hover::after,
.menu li a:focus-visible::after {
  height: 2px;
  transform: scaleX(1);
  opacity: 1;
}

.menu li a.active {
  color: #FFA341;
}

.menu li a.active::after {
  height: 2px;
  transform: scaleX(1);
  opacity: 1;
}

.langs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 1rem;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF7A00, #FFA341);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.navbar-menu a:hover,
.navbar-menu a:focus-visible {
  color: #FFA341;
  transform: translateY(-1px);
}

.navbar-menu a:hover::after,
.navbar-menu a:focus-visible::after {
  height: 2px;
  transform: scaleX(1);
  opacity: 1;
}

.navbar-menu a.is-active {
  color: #FFA341;
}

.navbar-menu a.is-active::after {
  height: 2px;
  transform: scaleX(1);
  opacity: 1;
}

@media (min-width: 1024px) {
  .navbar {
    height: 68px; /* PC'de header şeridini biraz incelt */
  }

  .menu li a {
    height: 68px;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }
}

.navbar-toggle {
  display: none;
  width: 38px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #050505;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.navbar-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #EDEDED;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.navbar-toggle.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.navbar-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 1rem;
  font-size: 0.8rem;
  padding: 2px;
  border-radius: 999px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.lang-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 32px;
  height: 30px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  opacity: 1;
}

.lang-switch .lang-flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

.lang-switch button.lang-active {
  background: rgba(0, 0, 0, 0.06);
  opacity: 1;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 2.5rem;
  padding: 4rem 0;
  overflow: hidden;
  background: #050505 url("hero-2.jpg") center/contain no-repeat;
}

/* Arkada noise + koyu overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.55)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0),
    radial-gradient(circle at 3px 3px, rgba(0, 0, 0, 0.7) 1px, transparent 0);
  background-size:
    auto,
    6px 6px,
    8px 8px;
  opacity: 1;
  z-index: 1;
}

.hero-inner,
.hero-text {
  opacity: 1;
  transform: none;
}

.hero-text {
  position: relative;
  z-index: 3;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Küçük ekranlarda da klasik yatay menü: satıra sığmazsa otomatik sarar */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .navbar-menu a {
    height: 56px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .lang-switch {
    margin-left: 0.75rem;
  }
}

@keyframes heroBgPan {
  0% {
    background-position: center, 0% center;
  }
  100% {
    background-position: center, 100% center;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.2vw + 1rem, 3.4rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-text p {
  max-width: 32rem;
  color: #dddddd;
  margin-bottom: 1.5rem;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  color: #f0f0f0;
  font-size: 0.95rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.hero-bullets li::before {
  content: "•";
  color: #FF9557;
  font-size: 1.2rem;
}

.hero-subtext {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.mobile-hero-band {
  display: none;
}

/* Tam ekran slideshow arka plan */
.image-strip-wrapper.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.image-strip {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 18s infinite ease-in-out;
}

@keyframes heroMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.image-strip-mobile {
  display: none;
}

.hero-marquee-item {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86vw;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}

.hero-marquee-item::before {
  content: "";
  position: absolute;
  inset: -18px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: 0.85;
}

.hero-marquee-item img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  max-width: 86vw;
  object-fit: contain;
}

.image-strip img:nth-child(1) { animation-delay: 0s; }
.image-strip img:nth-child(2) { animation-delay: 3s; }
.image-strip img:nth-child(3) { animation-delay: 6s; }
.image-strip img:nth-child(4) { animation-delay: 9s; }
.image-strip img:nth-child(5) { animation-delay: 12s; }
.image-strip img:nth-child(6) { animation-delay: 15s; }

@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.03); }
  6% { opacity: 1; transform: scale(1); }
  18% { opacity: 1; transform: scale(1.02); }
  24% { opacity: 0; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.03); }
}

/* YENİ HERO KURALLARINI SADECE MOBİLDE KULLAN */
@media (max-width: 768px) {
  .hero {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: #fff;
    overflow: hidden;
    background: #ffffff;
    text-align: left;
  }

  .mobile-hero-band {
    display: block;
    padding: 0;
    background: #ffffff;
    margin-top: 0;
    position: relative;
    top: -10px;
    z-index: 2;
  }

  #about.section.light {
    padding-top: 0.4rem;
    margin-top: -10px;
  }

  .mobile-hero-title {
    margin: 0 0 0.75rem;
    color: #FF7A00;
    font-size: 2.05rem;
    line-height: 1.1;
    text-shadow: none;
  }

  .mobile-intro-card {
    background: #1b1b1b;
    border: 1px solid rgba(255, 122, 0, 0.28);
    border-radius: 16px;
    padding: 1.1rem 1.05rem;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
    color: #eaeaea;
  }

  .mobile-intro-lead {
    margin: 0 0 0.85rem;
    color: #e6e6e6;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .mobile-intro-bullets {
    list-style: none;
    margin: 0 0 0.95rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    color: #f0f0f0;
    font-size: 0.9rem;
  }

  .mobile-intro-bullets li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .mobile-intro-bullets li::before {
    content: "•";
    color: #FF9557;
    font-size: 1.2rem;
    line-height: 1.1;
    margin-top: 0.05rem;
  }

  .mobile-intro-actions {
    margin-bottom: 0.85rem;
  }

  .mobile-intro-actions .btn {
    width: 100%;
  }

  .mobile-intro-subtext {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* Mobilde hero sadece görsel şerit olsun */
  .hero .hero-inner {
    display: none;
  }

  .hero .image-strip-wrapper.hero-visual {
    position: relative;
    inset: auto;
    height: min(52vh, 320px);
    height: min(52svh, 320px);
    max-height: 320px;
    min-height: 0;
    overflow: hidden;
    flex: 0 0 auto;
    order: 1;
    margin: 0;
    background: #ffffff;
  }

  @supports (aspect-ratio: 1 / 1) {
    .hero .image-strip-wrapper.hero-visual {
      height: auto;
      aspect-ratio: 16 / 9;
    }
  }



  

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .hero-bullets {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    font-size: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  .hero-subtext {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  /* Mobilde görseller animasyonlu sola doğru kayar (marquee) */
  .image-strip-wrapper.hero-visual {
    display: block;
    pointer-events: none;
    z-index: 0;
  }

  .hero .image-strip {
    display: none;
  }

  .hero .image-strip-mobile {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: max-content;
    height: 100%;
    animation: heroMarquee 26s linear infinite;
    will-change: transform;
    background: #ffffff;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  @supports (-webkit-touch-callout: none) {
    @keyframes heroMarquee {
      0% {
        transform: translate3d(0, 0, 0);
      }
      100% {
        transform: translate3d(-50%, 0, 0);
      }
    }

    .mobile-hero-band {
      top: 0;
      margin-top: 0;
    }

    #about.section.light {
      margin-top: 0;
    }

    .hero .image-strip-mobile {
      will-change: auto;
      backface-visibility: visible;
      transform: none;
      background: transparent;
    }

    .hero .hero-marquee-item::before {
      content: none;
    }

    .hero .hero-marquee-item img {
      display: block;
      object-fit: contain;
    }
  }

  .hero::before {
    display: none;
  }

  .hero .hero-marquee-item {
    height: 100%;
    border-radius: 0;
  }

  .hero .hero-marquee-item::before {
    content: none;
  }

  .hero .hero-marquee-item img {
    height: 100%;
    width: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* yazıların okunması için hafif karartma */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35)
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-dots {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 6px;
    margin-top: 1rem;
    justify-content: flex-start;  /* yazının altında solda */
  }

  .hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
  }

  .hero-dot--active {
    width: 18px;
    background: #ff7a00;
  }
}

/* Hero içindeki küçük label / badge örneği */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 122, 0, 0.55);
  color: #FFA341;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 3.2rem 0 3rem;
    gap: 2rem;
  }

  .image-strip-wrapper.hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: clamp(2rem, 4.4vw, 2.5rem);
    letter-spacing: 0.03em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-bullets {
    font-size: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.8rem;
  }
}

/* Diğer sayfalarda header ile ilk bölüm arasındaki boşluğu azalt (küçük ekranlar) */
@media (max-width: 640px) {
  main > .section:first-of-type {
    padding-top: 1.5rem;
  }
}

/* Sertifikalar: 1024px ve altı (telefon + küçük tablet) için ayrı düzen */
@media (max-width: 1024px) {
  #certificates.section.dark {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)) !important;
    background-image: none !important;
    min-height: auto;
    padding-top: 80px; /* fixed header yüksekliği kadar aşağı kaydır */
  }

  .cert-hero {
    display: block;  /* mobil/small ekranlarda GÖSTER */
    margin-top: 40px; /* header'dan daha fazla aşağı çek */
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #FF7A00;
  color: #0D0D0D;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.65),
    0 0 14px rgba(255, 122, 0, 0.6);
  transition: background 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #FFA341;
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.8),
    0 0 22px rgba(255, 122, 0, 0.9),
    0 0 40px rgba(255, 163, 65, 0.6);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(255, 122, 0, 0.5);
}

.btn-primary:disabled,
.btn-primary[disabled],
.btn-primary.is-disabled {
  background: #333333;
  color: #777777;
  cursor: not-allowed;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: none;
}

.btn-primary:disabled:hover,
.btn-primary[disabled]:hover,
.btn-primary.is-disabled:hover {
  background: #333333;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: none;
}

.btn.primary {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn.primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: #000000;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 2.5rem 0;
}

.section.light {
  background: var(--bg-light);
  color: #111;
}

.section.dark {
  background: var(--gray-dark);
}

/* Sertifikalar bölümü: PC’de eski arka plan yapısı, mobilde içte img */
#certificates.section.dark {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9)),
    url("certificates-bg.jpg") center/cover no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.cert-hero {
  display: block; /* varsayılan: küçük ekranlarda görünür */
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.5rem auto;
  border-radius: 12px;
}

@media (min-width: 1025px) {
  .cert-hero {
    display: none; /* sadece geniş ekranlarda gizle (PC) */
  }
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #FF3E3E 0%, #FF9557 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .cards {
  position: relative;
  z-index: 1;
}

.section-intro {
  max-width: 520px;
  margin-bottom: 2rem;
  color: #dddddd;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.three-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #0D0D0D;
  color: #EDEDED;
  border-radius: 10px;
  border: 1.5px solid #FF7A00;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.7),
    0 0 12px rgba(255, 122, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 122, 0, 0.18),
      transparent 55%
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #FFA341;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(255, 122, 0, 0.65),
    0 0 40px rgba(255, 163, 65, 0.45);
  background:
    radial-gradient(
      circle at top,
      rgba(255, 122, 0, 0.14),
      transparent 60%
    ),
    #0D0D0D;
}

.section.light .card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
}

.card p {
  font-size: 0.95rem;
  color: #EDEDED;
}

.section.light .card {
  background: #ffffff;
  color: #111111;
}

.section.light .card p {
  color: #444;
}

@media (max-width: 768px) {
  .card {
    border-width: 1px;
    padding: 16px;
  }
}

/* Sertifikalar sayfası kartları: sade, diğer kartlarla uyumlu ama hafif vurgulu */
#certificates .certificate-card {
  position: relative;
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#certificates .certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 149, 87, 0.7);
}

#certificates .certificate-card h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

#certificates .certificate-meta {
  margin: 0.1rem 0 0.7rem 0;
  font-size: 0.85rem;
  color: #cccccc;
}

.certificate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 149, 87, 0.16);
  color: #FF3E3E;
  font-size: 0.8rem;
  font-weight: 700;
}

#certificates .certificate-card .service-highlights {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.steps {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
}

.maintenance-images {
  display: grid;
  gap: 1rem;
}

.maintenance-images img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.maintenance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 149, 87, 0.4);
  text-align: center;
  box-shadow: 0 0 18px rgba(255, 149, 87, 0.55), 0 0 32px rgba(255, 149, 87, 0.35);
  animation: statFadeUp 0.8s ease-out both;
}

.stat-card:nth-child(2) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.2s;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FF3E3E;
}

.stat-star {
  margin-left: 0.15rem;
  color: #FF9557;
}

.stat-icon {
  margin-left: 0.2rem;
  font-size: 0.95rem;
  color: #FF9557;
}

.stat-label {
  font-size: 0.8rem;
  color: #333333;
}

@keyframes statFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.machine-card img {
  flex: 0 0 40%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.machine-card {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  overflow: hidden;
  min-height: 240px;
  padding: 1.6rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.machine-card:nth-child(even) {
  flex-direction: row-reverse;
}

.machine-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.machine-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 149, 87, 0.16);
  color: #FF3E3E;
  font-size: 0.75rem;
}

.machine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.machine-card.active {
  box-shadow: 0 0 20px rgba(255, 149, 87, 0.9), 0 0 40px rgba(255, 149, 87, 0.6);
  border-color: rgba(255, 149, 87, 0.9);
}

/* Makine grupları sayfası: beyaz kartlar için başlık rengini turuncu yap */
.section.light .machine-card h3 {
  color: #FF7A00;
}

@media (max-width: 768px) {
  .machine-card {
    display: block;
    min-height: auto;
    overflow: visible;
    padding-bottom: 1.2rem;
    touch-action: pan-y;
    transition: none;
    transform: none;
    box-shadow: none;
    content-visibility: auto;
    contain: content;
  }

  .machine-card:hover,
  .machine-card.active {
    transform: none;
    box-shadow: none;
  }

  .machine-card img {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  #fleet {
    overflow-x: hidden;
  }
  #fleet .container {
    overflow-x: hidden;
  }
}

.service-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-card.active {
  box-shadow: 0 0 18px rgba(255, 149, 87, 0.9), 0 0 32px rgba(255, 149, 87, 0.6);
  border-color: rgba(255, 149, 87, 0.9);
  background:
    radial-gradient(circle at top, rgba(255, 149, 87, 0.18), transparent 60%),
    #ffffff;
}

.section.dark .service-card.active {
  background:
    radial-gradient(circle at top, rgba(255, 149, 87, 0.18), transparent 60%),
    rgba(0, 0, 0, 0.6);
}

/* Hizmetler sayfası kart yerleşimi: siyah-turuncu endüstriyel grid */
#services .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  #services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #services .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

#services .service-card {
  position: relative;
  background: #111111;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 122, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;

  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out,
    background-position 0.4s ease-out;
  background-image: radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 60%);
  background-size: 160% 160%;
  background-position: 0% 0%;
}

#services .service-card:hover {
  transform: translateY(-6px);
  border-color: #FF7A00;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(255, 122, 0, 0.6);
  background-position: 60% 40%;
}

#services .service-card img {
  width: 100%;
  max-width: none;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 993px) {
  #services .service-card.service-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
    gap: 1.6rem;
  }

  #services .service-card.service-card--wide img {
    width: 42%;
    height: auto;
    min-height: 260px;
    border-radius: 12px;
  }
}

.service-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.service-underline {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF7A00, #FFA341);
}

.service-highlights {
  list-style: none;
  margin-top: 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.service-highlights li::before {
  content: "›";
  margin-right: 0.25rem;
  color: #FF9557;
}

/* Hizmet kartı metin renklerini açarak okunabilirlik artır */
#services .service-card p {
  color: #EDEDED;
}

#services .service-highlights li {
  color: #CFCFCF;
}

#about .about-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#about .about-card img {
  width: 40%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.about-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .about-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}
#about .about-card.active {
  box-shadow: 0 0 18px rgba(255, 149, 87, 0.9), 0 0 32px rgba(255, 149, 87, 0.6);
  border-color: rgba(255, 149, 87, 0.9);
  background:
    radial-gradient(circle at top, rgba(255, 149, 87, 0.2), transparent 60%),
    #ffffff;
}

#about .about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.about-highlights {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #333333;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 149, 87, 0.16);
  color: #FF3E3E;
  font-size: 0.8rem;
  font-weight: 700;
}

#about .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 62, 62, 0.1);
  color: #FF9557;
  font-size: 0.9rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.tags span {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section.light .tags span {
  border-color: rgba(0, 0, 0, 0.16);
}

.team-card {
  text-align: center;
}

.team-card img {
  border-radius: 999px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto 0.75rem;
}

.team-card p {
  font-size: 0.9rem;
  color: #bbbbbb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-wrapper {
  min-width: 0;
}

.contact-form {
  width: 100%;
  min-width: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.btn.secondary.contact-whatsapp {
  margin-top: 1.2rem;
  background: #25D366;
  border-color: rgba(37, 211, 102, 0.85);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.65), 0 0 32px rgba(37, 211, 102, 0.45);
}

.contact-form {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.9rem;
}

input,
textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #bbbbbb;
}

.image-strip-wrapper.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  z-index: 60;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.back-to-top.back-to-top--active {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255, 149, 87, 0.9);
  box-shadow: 0 0 18px rgba(255, 149, 87, 0.9), 0 0 32px rgba(255, 149, 87, 0.6);
}

.contact-mail {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.85);
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.9), 0 0 32px rgba(37, 211, 102, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  z-index: 60;
}

.contact-mail-icon {
  width: 18px;
  height: 18px;
}

.contact-mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(37, 211, 102, 1), 0 0 38px rgba(37, 211, 102, 0.8);
}

.contact-mail.contact-mail--active {
  background: #1ebe5a;
  color: #ffffff;
  border-color: rgba(37, 211, 102, 1);
  box-shadow: 0 0 22px rgba(37, 211, 102, 1), 0 0 40px rgba(37, 211, 102, 0.85);
}

@media (max-width: 900px) {
  .hero-inner,
  .maintenance-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 0.9rem;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    row-gap: 0.4rem;
  }

  .logo-image {
    width: 52px;
    height: 52px;
  }

  .main-nav {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .three-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  #about .about-card {
    flex-direction: column;
  }

  #about .about-card img {
    width: 100%;
    max-width: none;
  }

  #services .service-card {
    flex-direction: column;
  }

  #services .service-card img {
    width: 100%;
    max-width: none;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .image-strip-wrapper {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0 1.8rem;
  }

  .hero-title {
    font-size: 1.4rem; /* ~22–23px */
  }

  .hero-subtitle {
    font-size: 0.82rem; /* ~13px */
  }

  .navbar {
    height: auto;
    padding: 6px 0;
  }

  .header-inner {
    gap: 0.6rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .navbar-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .navbar-menu a {
    height: auto;
    padding: 0.35rem 0.5rem;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    display: inline-flex;
  }

  main {
    padding-top: 88px;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    padding: 1rem 0.9rem;
  }

  .machine-card-container,
  .machine-cards,
  .machine-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .machine-card {
    width: 100%;
  }

  .btn-primary {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ==== MOBİL DÜZENLEMELER (KULLANICI İSTEGI) ==== */
@media (max-width: 768px) {

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    height: 70px;
    position: relative;
    z-index: 9999;
  }

  .site-header .container {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-image {
    width: 80px;
    height: auto;
    margin-top: 4px;
  }

  main {
    padding-top: 0;
  }

  .menu {
    display: none !important;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: rgba(0, 0, 0, 0.92);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 10000;
  }

  .menu li a {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .langs {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 10001;
    margin-left: auto;
    order: 3;
  }

  .langs button {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .langs button img {
    width: 26px;
    height: 26px;
  }

  .burger {
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    order: 4;
    margin-left: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 4px;
  }

  .menu {
    order: 2;
  }

  .menu.active {
    display: flex !important;
  }

  .hero .image-strip-wrapper.hero-visual {
    pointer-events: none;
  }

  .hero .image-strip {
    display: none;
  }

  .hero .image-strip-mobile {
    display: flex;
  }

  .tags {
    gap: 0.5rem;
  }

  .tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 0.35rem 0.75rem;
    min-height: 30px;
  }

  .steps span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    line-height: 1;
    flex: 0 0 34px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 70px;
  }

  .menu li a {
    font-size: 16px;
  }

  .tags {
    gap: 0.45rem;
  }

  .tags span {
    font-size: 0.78rem;
    padding: 0.38rem 0.8rem;
    min-height: 32px;
  }

  .steps span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .hero {
    position: relative;
    display: block;
    padding: 5.2rem 0 4.4rem;
    background: #050505;
  }

  .hero > .container.hero-inner {
    position: relative;
    z-index: 2;
  }

  .hero > .image-strip-wrapper.hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    box-shadow: none;
  }

  .hero > .image-strip-wrapper.hero-visual .image-strip {
    display: none;
  }

  .hero > .image-strip-wrapper.hero-visual .image-strip-mobile {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: max-content;
    height: 100%;
    animation: heroMarquee 48s linear infinite;
    will-change: transform;
    opacity: 0.72;
    filter: saturate(1.25) contrast(1.32);
  }

  .hero > .image-strip-wrapper.hero-visual .hero-marquee-item {
    height: 100%;
    border-radius: 0;
  }

  .hero > .image-strip-wrapper.hero-visual .hero-marquee-item::before {
    opacity: 0.45;
  }

  .hero > .image-strip-wrapper.hero-visual .hero-marquee-item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .hero-title {
    font-size: clamp(2.2rem, 2.4vw + 1rem, 3rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 0.9rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 40rem;
  }
}

@media (min-width: 769px) {
  .site-header .logo-image {
    width: 70px;
    height: 70px;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .hero .image-strip-wrapper.hero-visual {
      height: 320px;
      max-height: 320px;
    }

    .hero .hero-marquee-item img {
      object-fit: contain;
      object-position: center;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
  }
}
