:root {
  --color-primary: #1f3b8f;
  --color-primary-dark: #142757;
  --color-text: #182236;
  --color-text-soft: #5e6b82;
  --color-bg: #ffffff;
  --color-bg-soft: #f4f7fc;
  --color-border: #dfe6f3;
  --shadow-soft: 0 12px 32px rgba(20, 39, 87, 0.08);
}

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

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

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

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-space {
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.9rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1rem;
  font-size: 1.06rem;
  color: var(--color-text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  width: min(1600px, calc(100% - 2.5rem));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 90px;
}

.logo img {
  width: clamp(160px, 18vw, 260px);
}

/* ── Çift logo (Techmax + IZEN) ── */
.header-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.techmax-logo {
  height: 48px;
  width: auto;
  min-width: 160px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.logo-divider {
  display: block;
  width: 1px;
  height: 52px;
  background: var(--color-border);
  opacity: 0.5;
}

@media (max-width: 600px) {
  .techmax-logo { height: 40px; }
  .logo-divider { height: 32px; }
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  font-size: 1.04rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--color-primary);
}

.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
}

.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-caret {
  font-size: 0.65rem;
  opacity: 0.75;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 240px;
  margin: 0.75rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(24, 34, 54, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown li {
  display: block;
  width: 100%;
  margin: 0;
}

.nav-dropdown a {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: #f2f4f7;
  color: var(--color-primary);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(31, 59, 143, 0.35);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(31, 59, 143, 0.08);
  color: var(--color-primary-dark);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lang-switch span {
  color: rgba(20, 39, 87, 0.5);
}

.lang-link {
  font-size: 0.96rem;
  color: rgba(20, 39, 87, 0.65);
  transition: color 0.2s ease;
}

.lang-link:hover,
.lang-link.active {
  color: var(--color-primary-dark);
}

.header-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(140deg, var(--color-primary), var(--color-primary-dark));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  background-image: url("images/Sun1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-hakkimizda {
  min-height: 42vh;
  background-image: url("images/a-hand-interacting-with-a-data-visualization-on-a-2024-09-26-21-17-52-utc-scaled.jpg");
}

.hero-industry {
  min-height: 42vh;
  background-image: url("images/Untitled-3.png");
}

.hero-services {
  min-height: 42vh;
  background-image: url("images/Untitled-3.png");
}

.hero-automotive {
  min-height: 42vh;
  background-image: url("images/otomotiv-3.png");
}

.hero-audiovideo {
  min-height: 42vh;
  background-image: url("images/audiovideobt.png");
}

.hero-evaletleri {
  min-height: 42vh;
  background-image: url("images/ev-aletleri.png");
}

.hero-aydinlatma {
  min-height: 42vh;
  background-image: url("images/aydinlatma.png");
}

.hero-iptest {
  min-height: 42vh;
  background-image: url("images/ip-koruma-2.png");
}

.hero-elektrikmakine {
  min-height: 42vh;
  background-image: url("images/elektrik-makinalari-1.png");
}

.hero-emcsafety {
  min-height: 42vh;
  background-image: url("images/emc-safety-services.png");
}

.hero-tasarim {
  min-height: 42vh;
  background-image: url("images/tasarim.png");
}

.hero-elektronik-kart {
  display: block;
  min-height: unset;
  padding: 0;
  background: var(--color-bg-soft);
}

.hero-elektronik-kart-media {
  width: 100%;
  height: auto;
  display: block;
}

.hero-elektronik-kart .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-elektronik-kart .hero-overlay {
  background: linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0.72) 100%);
}

.hero-elektronik-kart .hero-content {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  color: #000;
}

.hero-elektronik-kart .hero-content h1 {
  margin: 0;
  color: #000;
  width: 100%;
  max-width: 640px;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-elektronik-kart .hero-discipline-list {
  list-style: disc;
  width: 100%;
  max-width: 640px;
  margin: 1.1rem 0 0;
  padding-left: 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-elektronik-kart .hero-discipline-list li {
  color: #000;
  display: list-item;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-elektronik-kart .hero-brand {
  color: var(--color-primary);
}

.hero-elektronik-kart .hero-lead {
  width: 100%;
  max-width: 640px;
  margin: 1.1rem 0 0;
  color: #000;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.hero-overlay-top {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.35) 65%,
    transparent 90%
  );
}

.hero-elektronik-kart .hero-content.hero-content-top,
.panel-hero-kart .panel-hero-content.hero-content-top {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: 0;
}

.hero-elektronik-kart .hero-content.hero-content-top h1,
.panel-hero-kart .panel-hero-content.hero-content-top .panel-hero-title {
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-elektronik-kart .hero-content.hero-content-top .hero-discipline-list,
.panel-hero-kart .panel-hero-content.hero-content-top .panel-hero-list {
  width: 100%;
  max-width: 100%;
}

/* ── Elektronik Tasarım Hero Slider ──────────── */
.edesign-hero-slider {
  position: relative;
  overflow: hidden;
}

.edesign-hero-slide {
  display: none;
  position: relative;
}

.edesign-hero-slide.edesign-hero-active {
  display: block;
}

.hero-discipline-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-discipline-list li {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.01em;
}

.hero-announcements {
  min-height: 40vh;
  background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(31, 59, 143, 0.55)),
    url("images/duyuru.jpg");
}

.hero-contact {
  min-height: 42vh;
  background-image: linear-gradient(120deg, rgba(9, 24, 53, 0.8), rgba(31, 59, 143, 0.5)),
    url("images/Trulab-NeSunuyoruz-1.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 22, 55, 0.85), rgba(6, 22, 55, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-content .eyebrow {
  color: #9fc2ff;
}

.hero-content h1 {
  max-width: 760px;
}

/* ── Home stage (slider + inline tasarım paneli) ─ */
.home-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  transition: min-height 0.85s cubic-bezier(0.65, 0, 0.35, 1);
}

body.home-edesign-open .home-stage {
  min-height: 0;
}

.home-edesign-panel {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease 0.15s,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    max-height 0s ease 0.85s;
  pointer-events: none;
}

.home-edesign-panel[hidden] {
  display: block;
  visibility: hidden;
}

.home-edesign-panel-top {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.home-edesign-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary-dark);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s ease, gap 0.2s ease;
}

.home-edesign-back:hover {
  color: var(--color-primary);
  gap: 0.7rem;
}

body.home-edesign-open {
  overflow-x: hidden;
}

body.home-edesign-open .home-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

body.home-edesign-open .home-edesign-panel {
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
  pointer-events: auto;
  background: var(--color-bg);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
    max-height 0s ease 0s;
}

body.home-edesign-open #homeDefaultContent {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Home Slider ─────────────────────────────── */
.home-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}

.hs-slide.hs-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, rgba(6, 22, 55, 0.88), rgba(6, 22, 55, 0.45)),
    url("images/kart.jpg") center / cover no-repeat;
}

.hs-bg-emc {
  background: linear-gradient(105deg, rgba(6, 22, 55, 0.88), rgba(6, 22, 55, 0.45)),
    url("images/kart4.jfif") center / cover no-repeat;
}

.hs-bg-cevre {
  background: linear-gradient(105deg, rgba(6, 22, 55, 0.88), rgba(6, 22, 55, 0.45)),
    url("images/kart3.jpg") center / cover no-repeat;
}

.hs-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hs-eyebrow {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fc2ff;
}

.hs-title {
  margin: 0;
  max-width: 900px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
}

.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: rgba(132, 212, 247, 0.92);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hs-arrow:hover {
  background: #4bbde0;
}

.hs-prev { left: 1.2rem; }
.hs-next { right: 1.2rem; }

.hs-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hs-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hs-dot.hs-dot-active {
  width: 28px;
  border-radius: 999px;
  background: #84d4f7;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.section-muted {
  background: var(--color-bg-soft);
}

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

.mission-grid.compact {
  margin-top: 1.4rem;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 5px 18px rgba(24, 34, 54, 0.04);
}

.mission-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.mission-card p {
  margin: 0;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
}

.footer-grid {
  padding: 4rem 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid-expanded {
  padding-top: 2.5rem;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

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

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(203, 213, 225, 0.35);
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(203, 213, 225, 0.2);
  padding: 1rem 0 1.2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.badge-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: 0 8px 18px rgba(24, 34, 54, 0.06);
  color: var(--color-primary-dark);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.image-card.tall img {
  min-height: 540px;
  object-fit: cover;
}

.offering-grid {
  align-items: start;
}

/* ── Anasayfa içerik satırları ── */
.home-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-content-row--stretch {
  align-items: stretch;
}

.home-content-row--stretch .home-content-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-content-row--solo {
  grid-template-columns: 1fr;
}

.home-content-row--solo .home-content-copy {
  max-width: 720px;
}

/* ── Split row: header full-width, then paragraph left / list right ── */
.home-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 4rem;
  row-gap: 1.5rem;
}

/* Eyebrow + h2 spans both columns */
.home-split-header {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.home-split-header h2 {
  margin-bottom: 0;
}

/* Paragraph (left column, second row) */
.home-split-lead p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* List (right column, second row) */
.home-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 860px) {
  .home-split-row {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .home-split-header {
    grid-column: 1;
  }
}

.home-content-row--reverse {
  direction: rtl;
}

.home-content-row--reverse > * {
  direction: ltr;
}

.home-content-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6, 22, 55, 0.12);
}

.home-content-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.home-content-video-wrap {
  align-self: stretch;
  display: flex;
}

.home-content-video-wrap video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ── PCBA section: başlık tam genişlik, metin sol / video sağ (daha geniş) ── */
.home-pcba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 4rem;
  row-gap: 1.5rem;
}

.home-pcba-header {
  grid-column: 1 / -1;
}

.home-pcba-header h2 {
  margin-bottom: 0;
}

.home-pcba-text {
  align-self: start;
}

.home-pcba-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

.home-pcba-video {
  margin: 0;
  padding: 0;
  border: 0;
  align-self: stretch;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6, 22, 55, 0.12);
}

.home-pcba-video video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .home-pcba-row {
    grid-template-columns: 1fr;
  }
  .home-pcba-header {
    grid-column: 1;
  }
  .home-pcba-video {
    min-height: 260px;
  }
}

.home-content-copy h2 {
  margin-bottom: 1rem;
}

.home-content-copy p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.home-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.6;
}

.home-content-list li i {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .home-content-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-content-row--reverse {
    direction: ltr;
  }
}

.inline-cta-row {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
}

.services-preview h2 {
  max-width: 740px;
}

.service-cards {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 34, 54, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card span {
  display: block;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: var(--color-text);
}

.footer-cta {
  padding: 3.5rem 0 1.8rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.2);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-cta h2 {
  color: #fff;
  margin-bottom: 0;
}

.footer-cta p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

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

.industry-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(24, 34, 54, 0.05);
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
}

.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.industry-card-body {
  padding: 1rem 1rem 1.1rem;
}

.industry-card-body h3 {
  margin-bottom: 0.6rem;
}

.industry-card-body p {
  margin-bottom: 0.9rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

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

.industry-section {
  background: #fff;
}

.industry-section .container {
  width: min(1280px, calc(100% - 2rem));
}

.industry-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.6rem;
}

.industry-intro .line {
  width: 70px;
  height: 1px;
  background: #838ea2;
}

.industry-intro p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #4e5d79;
}

.industry-title {
  text-align: center;
  margin-bottom: 2.2rem;
}

.industry-showcase {
  display: grid;
  gap: 3.2rem;
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.7rem;
  align-items: start;
}

.industry-media {
  margin: 0;
  border: 0;
  background: transparent;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.industry-media img {
  width: 100%;
  height: 100%;
  min-height: 308px;
  object-fit: cover;
}

.industry-copy {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.industry-copy h3 {
  margin-bottom: 0.65rem;
}

.industry-copy p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.industry-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #90daf9;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  width: fit-content;
  transition: background 0.2s ease;
}

.industry-action:hover {
  background: #63c9f3;
}

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

.service-detail-card {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.service-detail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 230px;
  object-fit: cover;
}

.service-detail-body {
  padding: 1rem 0.15rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-detail-body h3 {
  margin: 0;
  font-size: 1.32rem;
}

.service-detail-body p {
  display: none;
}

.services-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 5rem;
  padding-right: 5rem;
}

.services-section .industry-title {
  margin-bottom: 1.9rem;
}

.services-section .btn-outline {
  border: 0;
  background: transparent;
  color: var(--color-text-soft);
  border-radius: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
}

.services-section .btn-outline::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.45rem;
  font-size: 0.85rem;
}

.services-section .btn-outline:hover {
  color: var(--color-primary);
  background: transparent;
}

.automotive-page {
  background: #fff;
}

.automotive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.75fr);
  gap: 2.1rem;
  align-items: start;
}

.automotive-main h2 {
  margin-bottom: 1rem;
}

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

.design-gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: #f2f4f7;
  transition: box-shadow 0.2s ease;
}

.design-gallery-item:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.design-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.auto-item {
  border: 0;
  background: transparent;
  margin-bottom: 0.55rem;
}

.auto-item summary {
  list-style: none;
  background: #f2f4f7;
  padding: 0.95rem 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
}

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

.auto-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
}

.auto-item[open] summary::after {
  content: "\f077";
}

.auto-item p {
  margin: 0;
  padding: 0.95rem 0.35rem 1rem;
}

.automotive-side h3 {
  margin: 0 0 0.8rem;
}

.service-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.service-nav-list a {
  display: block;
  padding: 0.68rem 0.75rem;
  background: #f2f4f7;
  color: var(--color-text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.service-nav-list a.active {
  background: #84d4f7;
}

.service-nav-list a:hover {
  background: #dbeaf8;
}

.coming-soon-board {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #e8eefc;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.coming-soon-board h2 {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
}

.coming-soon-board p {
  max-width: 640px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-info-card,
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(24, 34, 54, 0.05);
  padding: 1.2rem;
}

.contact-list-spaced li {
  margin-bottom: 0.9rem;
}

.contact-form {
  margin-top: 1rem;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-status--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

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

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

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

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31, 59, 143, 0.12);
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 22px rgba(24, 34, 54, 0.05);
}

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

.about-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.about-copy h2 {
  max-width: 680px;
}

.about-bullets {
  margin: 1rem 0 1.1rem;
  padding-left: 1.05rem;
  color: var(--color-text-soft);
}

.about-bullets li {
  margin-bottom: 0.7rem;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.about-checklist i {
  color: #6f7e97;
}

.about-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.about-text-block h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  color: var(--color-text);
}

.about-text-block p {
  margin-bottom: 1.5rem;
}

.about-process {
  background: #080d19;
}

.about-process .eyebrow {
  color: #87d0ff;
}

.about-process h2 {
  color: #fff;
  max-width: 760px;
}

.about-process-lead {
  max-width: 980px;
  color: #d2d9e8;
}

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

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

.progress-ring {
  --value: 0;
  width: 90px;
  height: 90px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #f5f8ff;
  background:
    radial-gradient(circle closest-side, #080d19 76%, transparent 78% 100%),
    conic-gradient(#7dd6ff calc(var(--value) * 1%), #274867 0);
}

.stat-item h3 {
  color: #f3f7ff;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 0;
  }

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

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

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

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

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .automotive-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.4rem));
  }

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

  .main-nav > ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.5rem;
  }

  .nav-dropdown {
    left: 0;
    transform: none;
    min-width: 200px;
  }

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

  .lang-switch {
    order: 3;
  }

  .section-space {
    padding: 3.6rem 0;
  }

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

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

  .industry-card {
    grid-template-columns: 1fr;
  }

  .industry-card img {
    min-height: 210px;
  }

  .industry-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .industry-media,
  .industry-copy {
    min-height: auto;
  }

  .industry-media img {
    min-height: 220px;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

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

  .map-wrapper iframe {
    height: 300px;
  }

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

  .image-card.tall img {
    min-height: 360px;
  }

  .hero {
    min-height: 42vh;
  }

  .home-hero .hero-content h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .home-hero .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .home-hero .hero-arrow-prev {
    left: 0.6rem;
  }

  .home-hero .hero-arrow-next {
    right: 0.6rem;
  }

  .home-hero .hero-dots {
    bottom: 1.2rem;
  }

  .home-slider {
    min-height: 72vh;
  }

  .hs-content {
    padding: 0 1rem 5.5rem;
  }

  .hs-title {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .hs-discipline-list li {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .hs-arrow {
    top: auto;
    bottom: 3.6rem;
    transform: none;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .hs-prev {
    left: 0.75rem;
  }

  .hs-next {
    right: 0.75rem;
  }

  .hs-dots {
    bottom: 1.25rem;
  }

  /* ── Elektronik tasarım hero slider (mobil) ── */
  .edesign-hero-slide {
    overflow: hidden;
    background: var(--color-bg-soft);
  }

  .panel-hero-media,
  .hero-elektronik-kart-media {
    width: 100%;
    height: clamp(220px, 58vw, 340px);
    object-fit: contain;
    object-position: center;
    background: var(--color-bg-soft);
  }

  .panel-hero-overlay,
  .hero-elektronik-kart .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.82) 100%
    );
  }

  .hero-overlay-top {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.85) 45%,
      rgba(255, 255, 255, 0.4) 68%,
      transparent 92%
    );
  }

  .panel-hero-content,
  .hero-elektronik-kart .hero-content {
    padding-top: 1rem;
    padding-bottom: 2.75rem;
    overflow: hidden;
  }

  .panel-hero-kart .panel-hero-content:not(.hero-content-top),
  .hero-elektronik-kart .hero-content:not(.hero-content-top) {
    justify-content: flex-start;
    padding-top: 1.15rem;
  }

  .panel-hero-kart .panel-hero-title,
  .hero-elektronik-kart .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.35rem, 5.5vw, 2rem);
    line-height: 1.12;
  }

  .panel-hero-kart .panel-hero-list,
  .hero-elektronik-kart .hero-discipline-list {
    max-width: 100%;
    margin-top: 0.55rem;
    padding-left: 1.1rem;
    gap: 0.3rem;
  }

  .panel-hero-kart .panel-hero-list li,
  .hero-elektronik-kart .hero-discipline-list li,
  .panel-hero-kart .panel-hero-lead,
  .hero-elektronik-kart .hero-lead {
    font-size: clamp(0.7rem, 2.6vw, 0.82rem);
    line-height: 1.42;
  }

  .hero-elektronik-kart .hero-content.hero-content-top,
  .panel-hero-kart .panel-hero-content.hero-content-top {
    margin-inline: auto;
    padding-top: 1rem;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2.75rem;
  }

  .hero-elektronik-kart .hero-content.hero-content-top h1,
  .panel-hero-kart .panel-hero-content.hero-content-top .panel-hero-title {
    max-width: 100%;
    width: 100%;
    white-space: normal;
    font-size: clamp(1.35rem, 5.5vw, 2rem);
  }

  .hero-elektronik-kart .hero-content.hero-content-top .hero-discipline-list,
  .panel-hero-kart .panel-hero-content.hero-content-top .panel-hero-list {
    max-width: 100%;
    width: 100%;
    margin-top: 0.5rem;
  }

  .edesign-hero-slider .hs-dots {
    bottom: 0.65rem;
  }

  /* RGB LED Controller — metin görsel üzerinde, yükseklik içeriğe göre */
  .edesign-hero-slide-led-controller.edesign-hero-active {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: clamp(220px, 58vw, 280px);
  }

  .edesign-hero-slide-led-controller .panel-hero-media,
  .edesign-hero-slide-led-controller .hero-elektronik-kart-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .edesign-hero-slide-led-controller .panel-hero-overlay,
  .edesign-hero-slide-led-controller .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .edesign-hero-slide-led-controller .hero-overlay-top {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.9) 62%,
      rgba(255, 255, 255, 0.45) 82%,
      transparent 100%
    );
  }

  .edesign-hero-slide-led-controller .panel-hero-content,
  .edesign-hero-slide-led-controller .hero-content {
    position: relative;
    inset: auto;
    z-index: 2;
    height: auto;
    overflow: visible;
    padding: 0.7rem 1rem 2.4rem;
    background: transparent;
  }

  .edesign-hero-slide-led-aydinlatma .panel-hero-list li,
  .edesign-hero-slide-led-aydinlatma .hero-discipline-list li {
    font-size: clamp(0.56rem, 2.1vw, 0.68rem);
    line-height: 1.38;
  }
}

/* ── Slider CTA Butonu ───────────────────────── */
.hs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  width: fit-content;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s ease, gap 0.2s ease;
  cursor: pointer;
}

.hs-cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  gap: 0.7rem;
}

.hs-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.5rem 0 1.2rem;
  letter-spacing: 0.02em;
}

.hs-discipline-list {
  list-style: none;
  margin: 0.9rem 0 1.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hs-discipline-list li {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

/* ── Panel Hero (slider'dan açılan panel içi hero) ── */
.panel-hero-kart {
  position: relative;
  display: block;
  min-height: unset;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.panel-hero-media {
  width: 100%;
  height: auto;
  display: block;
}

.panel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0.72) 100%);
  pointer-events: none;
}

.panel-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #000;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.panel-hero-kart .panel-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.panel-hero-kart .panel-hero-title {
  margin: 0;
  color: #000;
  width: 100%;
  max-width: 640px;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.panel-hero-kart .panel-hero-list {
  list-style: disc;
  width: 100%;
  max-width: 640px;
  margin: 1.1rem 0 0;
  padding-left: 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.panel-hero-kart .panel-hero-list li {
  color: #000;
  display: list-item;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.45;
}

.panel-hero-kart .panel-hero-brand {
  color: var(--color-primary);
}

.panel-hero-kart .panel-hero-lead {
  width: 100%;
  max-width: 640px;
  margin: 1.1rem 0 0;
  color: #000;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.panel-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fc2ff;
  margin-bottom: 0.75rem;
}

.panel-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1.4rem;
  max-width: 700px;
}

.panel-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-hero-list li {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

/* ── Elektronik Tasarım Sayfası ──────────────── */
.hero-edesign {
  min-height: 52vh;
  background-image: url("images/Sun1.jpg");
}

.edesign-section-title {
  text-align: center;
  margin-bottom: 2.4rem;
}

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

.edesign-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.8rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.edesign-card:hover {
  box-shadow: 0 12px 32px rgba(24, 34, 54, 0.1);
  transform: translateY(-3px);
}

.edesign-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f3fd, #c9e4f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.edesign-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.edesign-sub {
  margin: 0;
  font-size: 0.85rem !important;
  font-weight: 600;
  color: #84d4f7 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.edesign-card > p:last-child {
  color: var(--color-text-soft);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .edesign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .edesign-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Elektronik tasarım paneli: animasyonlu PCB SVG ── */
.edesign-pcb-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.edesign-pcb-card::before,
.edesign-pcb-card::after {
  display: none;
}

.edesign-panel-intro .edesign-about-showcase {
  align-items: stretch;
}

.edesign-panel-intro .edesign-about-showcase .about-copy {
  display: flex;
  flex-direction: column;
}

.edesign-panel-intro .edesign-about-showcase .edesign-pcb-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  height: 100%;
  min-height: 0;
}

.edesign-pcb-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 280px;
}

.edesign-panel-intro .edesign-about-showcase .edesign-pcb-visual {
  container-type: size;
  height: 100%;
  width: 100%;
  min-height: 0;
  align-items: flex-start;
  justify-content: center;
}

.edesign-pcb-frame {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
}

.edesign-panel-intro .edesign-about-showcase .edesign-pcb-frame {
  width: min(100cqw, 100cqh);
  height: min(100cqw, 100cqh);
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.edesign-pcb-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #c9e4f7 0%, transparent 45%, #9ec8eb 100%);
  opacity: 0.85;
}

.edesign-pcb-inner {
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  background: linear-gradient(160deg, #f8fbff 0%, var(--color-bg-soft) 55%, #e8f3fd 100%);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.edesign-pcb-svg {
  width: 92%;
  height: 92%;
}

.edesign-pcb-svg .pcb-dot {
  fill: #9ec8eb;
  opacity: 0.35;
}

.edesign-pcb-svg .pcb-board-outline {
  stroke: #9ec8eb;
  stroke-width: 1.5;
  opacity: 0.45;
}

.edesign-pcb-svg .pcb-corner {
  fill: none;
  stroke: #7eb8e8;
  stroke-width: 2;
  opacity: 0.55;
}

.edesign-pcb-svg .pcb-trace {
  stroke: #7eb8e8;
  stroke-width: 1.5;
  fill: none;
  opacity: 0.55;
}

.edesign-pcb-svg .pcb-trace-flow {
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
  opacity: 0.85;
  stroke-dasharray: 8 4;
}

.edesign-pcb-svg .pcb-chip {
  fill: #ffffff;
  stroke: #7eb8e8;
  stroke-width: 1.5;
  opacity: 0.95;
}

.edesign-pcb-svg .pcb-part {
  fill: #eef5fc;
  stroke: #9ec8eb;
  stroke-width: 1;
  opacity: 0.9;
}

.edesign-pcb-svg .pcb-pin {
  fill: #5b9fd4;
  opacity: 0.75;
}

.edesign-pcb-svg .pcb-pin-dim {
  fill: #9ec8eb;
  opacity: 0.55;
}

.edesign-pcb-svg .pcb-via {
  fill: none;
  stroke: #7eb8e8;
  stroke-width: 1.5;
  opacity: 0.65;
}

.edesign-pcb-svg .pcb-via-core {
  fill: #5b9fd4;
  opacity: 0.7;
}

.edesign-pcb-svg .pcb-label {
  fill: var(--color-primary);
  opacity: 0.9;
}

.edesign-pcb-svg .pcb-label-muted {
  fill: var(--color-primary);
  opacity: 0.55;
}

@keyframes pcb-flow-right {
  from {
    stroke-dashoffset: 60;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pcb-flow-down {
  from {
    stroke-dashoffset: 60;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.edesign-pcb-svg .pcb-flow-h {
  animation: pcb-flow-right 1.8s linear infinite;
}

.edesign-pcb-svg .pcb-flow-v {
  animation: pcb-flow-down 2.2s linear infinite;
}

.edesign-pcb-svg .pcb-flow-slow {
  animation: pcb-flow-right 3.5s linear infinite;
}

/* ── PCBA Assembly Visual (index.html s2) ── */
.pcba-svg-wrap {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  box-shadow: 0 8px 32px rgba(6, 22, 55, 0.12);
  border-radius: 16px;
  overflow: hidden;
  align-self: stretch;
}
.pcba-svg-wrap .edesign-pcb-visual {
  container-type: size;
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcba-svg-wrap .edesign-pcb-frame {
  width: min(100cqw, 100cqh);
  height: min(100cqw, 100cqh);
  max-width: 100%;
  margin-inline: auto;
}
.edesign-pcb-svg .pcba-target-ring {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1;
  stroke-dasharray: 5 4;
  animation: pcba-pulse 2.5s ease-in-out infinite;
  opacity: 0.4;
}
.edesign-pcb-svg .pcba-crosshair {
  stroke: var(--color-primary);
  stroke-width: 1.2;
  fill: none;
  opacity: 0.5;
}
.edesign-pcb-svg .pcba-center-dot {
  fill: var(--color-primary);
  opacity: 0.65;
}
.edesign-pcb-svg .pcba-corner-tick {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  opacity: 0.45;
}
@keyframes pcba-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

@media (max-width: 1024px) {
  .pcba-svg-wrap {
    align-self: auto;
  }
  .pcba-svg-wrap .edesign-pcb-visual {
    container-type: inline-size;
    height: auto;
    min-height: 280px;
  }
  .pcba-svg-wrap .edesign-pcb-frame {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 1024px) {
  .edesign-pcb-visual {
    min-height: 240px;
  }

  .edesign-pcb-frame {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .edesign-panel-intro .edesign-about-showcase {
    align-items: start;
  }

  .edesign-panel-intro .edesign-about-showcase .edesign-pcb-card {
    height: auto;
    align-items: center;
  }

  .edesign-panel-intro .edesign-about-showcase .edesign-pcb-visual {
    height: auto;
    min-height: 240px;
    align-items: center;
  }

  .edesign-panel-intro .edesign-about-showcase .edesign-pcb-frame {
    width: min(100%, 320px);
  }
}

.edesign-cap-stats {
  background: var(--color-bg-soft);
  border-block: 1px solid var(--color-border);
}

.edesign-cap-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.edesign-cap-stat {
  padding: 1.6rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.edesign-cap-stat:last-child {
  border-right: none;
}

.edesign-cap-stat-num {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.edesign-cap-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

.edesign-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

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

.edesign-step-num {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: #fff;
  display: grid;
  place-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
}

.edesign-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.edesign-step p {
  font-size: 0.92rem;
  margin: 0;
}

.edesign-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 1.75rem;
}

.edesign-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: #fff;
  border: 1px solid var(--color-border);
}

.edesign-spec-label {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.edesign-spec-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
}

.edesign-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.edesign-why-copy p:last-child {
  margin-bottom: 0;
}

.edesign-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.edesign-why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.edesign-why-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f3fd, #c9e4f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.edesign-why-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.edesign-why-item p {
  margin: 0;
  font-size: 0.9rem;
}

.edesign-metrics .eyebrow {
  margin-bottom: 1.5rem;
}

.edesign-metric {
  margin-bottom: 1.35rem;
}

.edesign-metric-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

.edesign-metric-val {
  font-weight: 700;
  color: var(--color-primary);
}

.edesign-metric-track {
  height: 6px;
  border-radius: 99px;
  background: var(--color-border);
  overflow: hidden;
}

.edesign-metric-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  transition: width 1.2s cubic-bezier(0.22, 0.68, 0, 1.15);
}

@media (max-width: 1024px) {
  .edesign-cap-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edesign-cap-stat:nth-child(2) {
    border-right: none;
  }

  .edesign-cap-stat:nth-child(1),
  .edesign-cap-stat:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }

  .edesign-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .edesign-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .edesign-cap-stats-inner {
    grid-template-columns: 1fr;
  }

  .edesign-cap-stat {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .edesign-cap-stat:last-child {
    border-bottom: none;
  }

  .edesign-specs-grid {
    grid-template-columns: 1fr;
  }

  .edesign-process-steps {
    grid-template-columns: 1fr;
  }
}
