:root { --corporate:#e41210; 
--max-width: 1200px;
--section-padding: 120px;
--header-height: 72px;

--bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-soft: #f3f4f6;
  --bg-dark: #0f1113;

  --text-main: #111111;
  --text-soft: #555555;

  --accent-soft: #e5e7eb;}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  background:#fff;
  color:#fff;
  font-family: Inter, sans-serif;
}

/* TOPBAR */
.topbar {
  position:fixed;
  top:0; left:0;
  width:100%;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(2px);
  z-index:1000;
  transition: opacity .15s ease;
}
.topbar-inner {
  max-width:1200px;
  margin:0 auto;
  padding:8px 24px;
  display:flex;
  justify-content:space-between;
}
.topbar a {
  color:#ccc;
  text-decoration:none;
  font-size:12px;
  margin-right:16px;
}
.topbar a:hover { color:var(--corporate); }



.topbar.hide {
  opacity: 0;
  pointer-events: none;
}


/* HEADER */
.header {
  position: fixed;
  top: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  max-width: 1200px;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 900;
  

  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .35s ease;


  will-change: transform, opacity;
}


/* aşağı scroll – yukarı süzülerek kaybolur */
.header.hide {
  transform: translateX(-50%) translateY(-24px);
  opacity: 0;
  pointer-events: none;
}


.logo { height:80px; }
.main-nav a {
  margin-left:24px;
  color:#b6b6b6;
  text-decoration:none;
  position:relative;
}
.main-nav a::after {
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  width:100%; height:1px;
  background:var(--corporate);
  transform:scaleX(0);
  transform-origin:left;
  transition:.3s;
}
.main-nav a:hover { color:var(--corporate); }
.main-nav a:hover::after { transform:scaleX(1); }

/* HERO */
.hero {
  height:90vh;
  position:relative;
  overflow:hidden;
}

/* SLIDES */
.slide {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}
.slide::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.60);
  pointer-events: none;
}
.slide.active { opacity:1; }

/* SLIDE CONTENT */
.content {
  position:absolute;
  bottom:40%;
  left:50%;
  transform:translate(-50%,40px);
  max-width:1200px;
  width:100%;
  padding:0 24px;
  z-index:5;
  opacity:0;
  transition:.6s ease;
}
.slide.active .content {
  opacity:1;
  transform:translate(-50%,0);
}
.subtitle {
  font-size:13px;
  letter-spacing:.22em;
}
.content h1 {
  font-size:35px;
  font-weight:300;
  max-width:720px;
  margin-top:16px
}

/* BOTTOM NAV */
.hero-nav {
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  max-width:1200px;
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* ITEM */
.item { position:relative; z-index: 20; cursor:pointer}

/* STACK */
.stack {
  position:relative;
  height:22px;
  transition: transform .55s cubic-bezier(0.4, 0, 0.2, 1);
  --thumb-h: 0px; /* default */
  z-index: 30;
}
.label {
  font-size:14px;
  line-height:22px;
  font-weight:700;
}
.thumb {
  position:absolute;
  left:0;
  top:100%;              /* linkin ALTINDA durur */
  width:100%;
  opacity:0;
  pointer-events:auto;
  transition:opacity .2s ease;
}

.thumb img { width:100%; display:block; }

/* LINE */
.line {
  margin-top:6px;
  height:2px;
  background:rgba(255,255,255,.35);
  position:relative;
  overflow:hidden;
}
.line::after {
  content:"";
  position:absolute;
  left:0; top:0;
  height:100%;
  width:0%;
  background:var(--corporate);
}

/* HOVER */
.item:hover .stack {
  transform: translateY(calc(-1 * var(--thumb-h)));
}
.item:hover .label {
  color:var(--corporate);
}

.item:hover .thumb {
  opacity:1;
}


/* ACTIVE PROGRESS (NO REVERSE) */
.item.run .line::after {
  width:100%;
  transition:width 6s linear;
}
.item:not(.run) .line::after {
  transition:none;
}




.search-btn {
  background: none;
  border: none;
  margin-left: 28px;
  padding: 0;
  cursor: pointer;
  color: #fff;
}

.search-btn svg {
  display: block;
  transition: color .25s ease, transform .25s ease;
}

.search-btn:hover svg {
  color: var(--corporate);
  transform: scale(1.05);
}



.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 3000;

  position: fixed;
}

.search-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.search-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-inner input {
  width: 60%;
  max-width: 720px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding: 18px 0;
  font-size: 36px;
  color: #fff;
  outline: none;
}

.search-inner input::placeholder {
  color: rgba(255,255,255,.4);
}

.search-close {
  position: absolute;
  top: 32px;
  right: 40px;

  background: none !important;
  border: none;
  padding: 0;
  margin: 0;

  cursor: pointer;
  color: rgba(255,255,255,.65);

  appearance: none;
  -webkit-appearance: none;
  outline: none;

  transition: color .25s ease;
}


.search-close:hover {
  color: var(--corporate);
  transform: rotate(90deg);
}

.search-close svg {
  display: block;
}



/* CTA WRAPPER */
.cta {
  margin-top: 16px;
}

/* CTA LINK */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  cursor: pointer;
}

/* TEXT */
.cta-text {
  transition: color .25s ease;
}

/* ICON CIRCLE */
.cta-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* animasyon maskesi */
  position: relative;
}

/* ARROW */
.cta-icon .arrow {
  display: block;
  font-size: 16px;
  line-height: 1;
  transform: translateX(0);
  animation: none;
  color:#fff;
}

/* HOVER */
.cta-link:hover .cta-text {
  color: var(--corporate);
}

.cta-link:hover .arrow {
  animation: arrowLoop .6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ARROW ANIMATION */
@keyframes arrowLoop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(120%);
    opacity: 0;
  }
  41% {
    transform: translateX(-120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: var(--section-padding) 0;
}





.hero {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}



#who-we-are{}

.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 96px;
  align-items: center;
}

.text-col {
  max-width: 560px;color:#222;
}

.text-col h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.text-col p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  margin-top: 32px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  color:var(--corporate)
}




/* link ana yapı */
.corp-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--corporate);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  margin-top:20px;
}

/* yuvarlak */
.arrow-circle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--corporate);
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* oklar */
.arrow {
  position: absolute;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* görünen ok */
.arrow-a {
  transform: translateX(0);
  opacity: 1;
}

/* solda gizli ok */
.arrow-b {
  transform: translateX(-120%);
  opacity: 0;
}

/* HOVER ANİMASYONU */
.corp-link:hover .arrow-a {
  transform: translateX(120%);
  opacity: 0;
}

.corp-link:hover .arrow-b {
  transform: translateX(0);
  opacity: 1;
}














#capabilities {
  background:#f4f5f6;
}

/* HEADER ROW */
.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  
}

.head-text {
  max-width: 720px;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 8px;
  color:#333;
}

.section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f6368;
}

/* ARROWS */
.head-controls {
  display: flex;
  gap: 16px;
}

.rail-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.arrow-circle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--corporate);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  position: absolute;
  font-size: 18px;
  transition: transform .35s ease, opacity .35s ease;
  color: var(--corporate);
}

.arrow-a { transform: translateX(0); opacity: 1; }
.arrow-b { transform: translateX(-120%); opacity: 0; }

.rail-arrow:hover .arrow-a {
  transform: translateX(120%);
  opacity: 0;
}
.rail-arrow:hover .arrow-b {
  transform: translateX(0);
  opacity: 1;
}

/* RAIL */
.capability-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  cursor: grab;
}

.capability-rail:active {
  cursor: grabbing;
}

.capability-rail::-webkit-scrollbar { display: none; }
.capability-rail { scrollbar-width: none; }

/* CARD */
.capability-card {
  background:
    linear-gradient(
      rgba(0,0,0,var(--overlay-opacity)),
      rgba(0,0,0,var(--overlay-opacity))
    ),
    var(--bg);

  transition: --overlay-opacity .25s ease;

  flex: 0 0 clamp(260px, 25vw, 320px);
  height: 420px;
  position: relative;
  
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  
  aspect-ratio: 351 / 538; /* oran sabit */
}


.capability-card:hover {
  --overlay-opacity: 0.65;
}


/* CONTENT */
.card-content {
  
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.capability-card h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
  color:#fff;
  transition: color .25s ease;
  background:#e41210;
  padding:10px;
  width: 100%;
  text-align: center;
}



.capability-card:hover h3 {
  color:  #fff;
}



.capability-card p {
  font-size: 14px;
  color: #111;
  transition: color .25s ease;
}

.capability-card:hover p {
  font-size: 14px;
  color: #fff;
  transition: color .25s ease;
}

/* HOVER FILL */
.capability-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--corporate);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}

.capability-card:hover::after {
  transform: translateY(0);
}












/* SECTION */
#industries {
  background:#efefef;
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
}
.industries-inverse {
  background: var(--corporate);
  color: #fff;
}

.industries-inverse .section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.industries-inverse h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.industries-inverse p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  color:#333;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* CARD */
.industry-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;

  background: var(--bg);
  background-size: cover;
  background-position: center;

  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

/* IMAGE LAYER */

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.15) 100%
  );
  transition: opacity .4s ease;
  z-index: 1;
}


.industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: var(--corporate);

  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  z-index: 2;
}

.industry-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* CONTENT */
.industry-inner {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.industry-inner h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/*
.industry-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
  z-index: -1;
}
  */

/* ICON (placeholder) */
.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 4;
}

.industry-icon svg {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

/* TITLE */
.industry-inner h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}



.industry-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 80%;
  z-index: 4;
}



/* HOVER */





.industry-card:hover {
  transform: translateY(-6px);
}

.industry-card:hover::before {
  transform: translateY(0);
}

.industry-card:hover::after {
  opacity: .8;
}

.industry-card:hover .industry-inner {
  transform: translateY(-12px);
}

.industry-card:hover {
  background-size: 105%;
}

@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}















/* SECTION */
.industries-manufacturing-bridge {
  background: #f6f7f8; /* çok açık, endüstriyel nötr */
  padding: 96px 0;
  
}


.bridge-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.bridge-text {
  max-width: 1200px;

  font-size: 28px;
  line-height: 1.6;
  font-weight: 500;

  color: rgba(0,0,0,0.7);
  margin: 0;
}


@media (max-width: 768px) {
  .industries-manufacturing-bridge {
    padding: 64px 0;
  }

  .bridge-text {
    font-size: 16px;
  }
}







/* SECTION */

.manufacturing {
  background: url(/images/manufacturing.jpg);
  padding: 120px 0;
}

.manufacturing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.manufacturing-head {
  max-width: 640px;
  margin-bottom: 80px;
}

.manufacturing-head h2 {
  margin-bottom: 16px;
}

.manufacturing-head p {
  color: rgba(0,0,0,0.7);
}


.manufacturing-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}


.m-visual {
  width: 100%;
  height: 160px;
  background: #f00;
}


@media (max-width: 768px) {
  .manufacturing {
    padding: 80px 0;
  }

  .manufacturing-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}









.manufacturing-capability {
  background:  url(/images/manufacturing.jpg);
  padding: 96px 0;
}

.mc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.manufacturing-capability h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 1200px;
}

.manufacturing-capability p {
  max-width: 720px;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.mc-proof {
  display: inline-block;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}









/* SECTION */


.infra-metrics {
  position: relative;
  color: #fff;
}

.infra-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('/images/manufacturing.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.infra-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
}

.infra-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 96px;
  justify-items: center;
}

.metric-card {
  max-width: 320px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}

.metric-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
}

@media (max-width: 900px) {
  .infra-metrics-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .infra-inner {
    padding: 80px 24px;
  }
}

















/* =========================
   NEWS & UPDATES
   ========================= */

#news-updates {
  background: #fff;
}

/* HEADER */
#news-updates .section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

#news-updates h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

#news-updates p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6368;
}

/* MAIN LAYOUT */
#news-updates .news-layout {
  display: grid;
  grid-template-columns: 5fr 4fr ;
  gap: 48px;
  align-items: stretch;
}

/* LEFT FEATURED */
#news-updates .news-item.featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* RIGHT STACK */
#news-updates .news-stack {
  display: grid;
  grid-template-rows: 1fr 1fr; /* KRİTİK */
  gap: 32px;
  height: 100%;
}

/* NEWS ITEM */
#news-updates .news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGES */
#news-updates .news-image {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

#news-updates .news-image.portrait {
  aspect-ratio: 3 / 4;
}

#news-updates .news-image.landscape {
  aspect-ratio: 16 / 9;
}

#news-updates .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT — ALT HİZAYI KİLİTLER */
#news-updates .news-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ALT HİZA */
  flex: 1;
  padding-top: 20px;
  color:#333;
}

/* TITLES */
#news-updates .news-content h3 {
  font-size: 18px;
  font-weight: 600;
  max-width: 95%;
}

#news-updates .news-item.featured h3 {
  font-size: 22px;
}

/* LINK */
#news-updates .corp-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--corporate);
  text-decoration: none;
  font-weight: 500;
}

/* ARROW */
#news-updates .arrow-circle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--corporate);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#news-updates .arrow {
  position: absolute;
  font-size: 16px;
  transition: transform .35s ease, opacity .35s ease;
}

#news-updates .arrow-a {
  transform: translateX(0);
  opacity: 1;
}

#news-updates .arrow-b {
  transform: translateX(-120%);
  opacity: 0;
}

#news-updates .corp-link:hover .arrow-a {
  transform: translateX(120%);
  opacity: 0;
}

#news-updates .corp-link:hover .arrow-b {
  transform: translateX(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  #news-updates .news-layout {
    grid-template-columns: 1fr;
  }

  #news-updates .news-stack {
    grid-template-rows: auto;
  }
}














/* SECTION */
#sustainability {
  position: relative;
  background: url('/images/sust.jpg') top center;
  background-size: cover;
  color: #fff;
}

/* DARK OVERLAY */
.sustainability-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45); /* site geneliyle uyumlu karartma */
  z-index: 1;
}

/* CONTENT */
#sustainability .container {
  position: relative;
  z-index: 2;
}

/* TEXT */
#sustainability h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color:#fff;
}

#sustainability p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 520px;
}

#sustainability .last-line {
  margin-top: 16px;
}

/* LINK COLUMN */
.link-col {
  display: flex;
  align-items: flex-end; /* son paragraf satırı hizası */
}

/* LINK */
#sustainability .corp-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* ARROW */
#sustainability .arrow-circle {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sustainability .arrow {
  position: absolute;
  font-size: 16px;
  transition: transform .35s ease, opacity .35s ease;
  color:#fff;
}

#sustainability .arrow-a {
  transform: translateX(0);
  opacity: 1;
}

#sustainability .arrow-b {
  transform: translateX(-120%);
  opacity: 0;
}

#sustainability .corp-link:hover .arrow-a {
  transform: translateX(120%);
  opacity: 0;
}

#sustainability .corp-link:hover .arrow-b {
  transform: translateX(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .link-col {
    align-items: flex-start;
  }
}














/* SECTION 
#site-footer {
  background: #0f1113;
  color: #fff;
}


.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}


.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 320px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}


.footer-nav h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.footer-nav a:hover {
  color: #fff;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(255,255,255,.6);
}

.footer-legal a:hover {
  color: #fff;
}


@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}




.footer-signature {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
}

.footer-signature img {
  height: 30px;               
  opacity: 0.5;               
  transition: opacity .25s ease;
}

.footer-signature img:hover {
  opacity: 0.85;
}

*/



#site-footer {
  background:#111418;
  color:#b9c0cc;
  padding:100px 0 0;
  line-height:1.7;
  font-size: 13px;;
}

#site-footer .container {
  max-width:1280px;
  margin:0 auto;
  padding:0 40px;
}

#site-footer h5 {
  color:#fff;
  margin-bottom:18px;
  font-weight:400;
  font-size:13px;
}

.footer-grid {
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap:60px;
  margin-bottom:70px;
  align-items:start;
}

.footer-logo-col {
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.footer-logo-col img {
  max-width:220px;
  height:auto;
  opacity:.9;
  transition:.3s ease;
}

.footer-logo-col img:hover {
  opacity:1;
}

.footer-grid ul {
  list-style:none;
  padding:0;
}

.footer-grid li {
  margin-bottom:10px;
}

.footer-grid a {
  color:#b9c0cc;
  text-decoration:none;
  transition:.25s ease;
}

.footer-grid a:hover {
  color:#a10f17;
}

.newsletter-desc {
  margin-bottom:15px;
  font-size:13px;
}

.newsletter-form {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.newsletter-row {
  display:flex;
  gap:12px;
}

.newsletter-row input {
  flex:1;
  background:#15181e;
  border:1px solid #222831;
  padding:10px 14px;
  color:#fff;
}

.newsletter-row button {
  background:#a10f17;
  color:#fff;
  border:none;
  padding:10px 22px;
  cursor:pointer;
  transition:.25s ease;
}

.newsletter-row button:hover {
  opacity:.85;
}

.newsletter-consent {
  font-size:12px;
  color:#9aa3b2;
  display:flex;
  gap:8px;
  align-items:flex-start;
}

.newsletter-consent a {
  color:#b9c0cc;
  text-decoration:underline;
}

.newsletter-consent a:hover {
  color:#a10f17;
}

.newsletter-form button {
  background:#a10f17;
  color:#fff;
  border:none;
  padding:10px 18px;
  cursor:pointer;
  transition:.25s ease;
  align-self:flex-start;
}

.newsletter-form button:hover {
  opacity:.85;
}

/* SOCIAL ROW */

.footer-social-row {
  display:flex;
  gap:28px;
  justify-content:center;
  padding:40px 0 20px;
  border-top:1px solid #1c2026;
}

.footer-social-row a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  color:#b9c0cc;
  opacity:.85;
  transition:all .25s ease;
}

.footer-social-row a:hover {
  color:#a10f17;
  opacity:1;
  transform:scale(1.08);
  filter:drop-shadow(0 0 6px rgba(161,15,23,.4));
}

/* LEGAL */

.footer-bottom {
  display:flex;
  justify-content:space-between;
  padding:25px 0 40px;
  font-size:13px;
}

.footer-bottom a {
  margin-left:20px;
  color:#b9c0cc;
  text-decoration:none;
}

.footer-bottom a:hover {
  color:#a10f17;
}

/* SIGNATURE STRIP */

.footer-signature-strip {
  background:#0b0d10;
  padding:25px 0;
}

.signature-inner {
  display:flex;
  justify-content:center;
}

.footer-signature-strip img {
  height:28px;
  opacity:.7;
  transition:.3s ease;
}

.footer-signature-strip img:hover {
  opacity:1;
}









.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* HER ITEM AYNI */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item > a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #b6b6b6;
  position: relative;
}

/* SUB MENU */
.sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  background: #fff;
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  border-top: 1px solid #e6e6e6;
  z-index: 1000;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

/* AÇILMA — NET */
.nav-item:hover > .sub-menu {
  display: flex;
}

/* LINKS */
.sub-menu a {
  font-size: 14px;
  text-decoration: none;
  color: #1a1a1a;
}

.sub-menu a:hover {
  color: var(--corporate);
}




/* =========================
   HEADER STATE
   ========================= */

.header.is-hidden {
  transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  pointer-events: none;
}

/* =========================
   SHARED ARROW SYSTEM
   ========================= */

.arrow-loop {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}

.arrow-loop span {
  position: absolute;
  transition: transform .35s ease, opacity .35s ease;
}

.arrow-loop .a { transform: translateX(0); opacity: 1; }
.arrow-loop .b { transform: translateX(-120%); opacity: 0; }

a:hover .arrow-loop .a {
  transform: translateX(120%);
  opacity: 0;
}

a:hover .arrow-loop .b {
  transform: translateX(0);
  opacity: 1;
}
































































/* PAGE HERO */
.page-hero {
  position: relative;
  height: 35vh;
  min-height: 260px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('//images/industries/concrete-hero.jpg');
  background-size: cover;
  background-position: left top;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 64px 48px;
}

.page-hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}

.hero-nav a {
  text-decoration: none;
  color: #fff;
  display: block;
}

/* PAGE CONTENT */
.industry-page {
  padding-top: 96px;
}

/* SECTIONS */
.industry-section {
  padding: 96px 0;
}

.industry-section.muted {
  background: #f6f7f8;
}

.content-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.lead {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* HEADINGS */
.industry-section h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* CAPABILITIES */
.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* INFRA REF */
.infra-ref {
  font-size: 16px;
  color: rgba(0,0,0,.7);
}

/* FOOTER PLACEHOLDER */
.site-footer {
  padding: 64px;
  background: #111;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero-inner {
    padding: 0 24px 32px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .industry-section {
    padding: 64px 0;
  }
}
















































.capability-page {
  padding-top: 96px;
}

.capability-section {
  padding: 96px 0;
}

.capability-section.muted {
  background: #f6f7f8;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 12px;
}

.link-list a {
  text-decoration: none;
  color: #111;
}

.link-list a:hover {
  text-decoration: underline;
}




























/* HERO BACKGROUND */


/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 30;
}

/* HERO */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;

  /* 👇 stacking context’i biz oluşturuyoruz */
  z-index: 1;
}

/* HERO BACKGROUND */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url(/images/slide2.jpg );
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero-bg::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.70);
  pointer-events: none;
}

/* HERO CONTENT (TITLE) */
.page-hero-content {
  position: absolute;
  inset: 0;

  /* 👇 HEADER'DAN SONRA BAŞLASIN */
  padding-top: var(--header-height);
  padding-bottom: 8px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  /* 👇 ARKAPLANDAN ÜSTTE */
  z-index: 2;

  pointer-events: none; /* opsiyonel, güvenli */
}

/* TITLE */
.page-title {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
}





.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.tech-visual {
  width: 100%;
  height: 320px;
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url('//images/capabilities/polymer-abstract.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}



.link-list a {
  position: relative;
  padding-left: 16px;
}

.link-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  transform: translateY(-50%);
}



































.industry-page {
  padding-top: 96px;
}

/* SECTIONS */
.industry-section {
  padding: 96px 0;
}

.industry-section.muted {
  background: #f6f7f8;
}

.content-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.lead {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color:#333;
}

/* LISTS */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 12px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-grid.single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.product-card h3 {
  margin-top: 0;
  font-size: 18px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.6;
}

.product-card a {
  font-size: 14px;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}









































.capability section {
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.container.narrow {
  max-width: 1200px;
}

.cap-hero {
  background: #0f1113;
  color: #fff;
  padding: 10;
  text-align:center;
  border-top:1px solid #000;
}

.cap-hero__title {
  font-size: 48px;
  font-weight: 300;
}

.cap-hero__lead {
  max-width: 1200px;
  margin-top: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

.cap-value__list,
.cap-why__points {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.cap-value__list li,
.cap-why__points li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.cap-value__list li::before,
.cap-why__points li::before {
  content: "–";
  position: absolute;
  left: 0;
}

.cap-industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.cap-industries__grid a {
  padding: 24px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #111;
}

.cap-products__list {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.product-family h3 {
  margin-bottom: 8px;
}

.cap-cta {
  background: #f5f5f5;
  text-align: center;
  color:#333;
}

.btn-primary {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #111;
  color: #fff;
  text-decoration: none;
}





















/* VALUE LIST */
.value-list,
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.value-list li,
.why-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.value-list li::before,
.why-list li::before {
  content: "–";
  position: absolute;
  left: 0;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  border: 1px solid #e5e5e5;
  padding: 24px;
  text-decoration: none;
  color: #111;
  transition: border-color .2s ease;
}

.card:hover {
  border-color: #111;
}

.card h3 {
  margin-bottom: 8px;
}

/* PRODUCTS */
.product-family {
  margin-top: 32px;
}

.product-family h3 {
  margin-bottom: 6px;
}

/* CTA */
.cta.light {
  background: #f5f5f5;
  text-align: center;
  color:#e41210;
}

.btn-primary {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #111;
  color: #fff;
  text-decoration: none;
}



























/* =========================
   HERO STRAP
   ========================= */

.hero-strap {
  background: #0f1113; /* header / hero diliyle aynı siyah */
  padding:15px;
}

.hero-strap-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 0px; /* ferahlık burada */
  text-align:center;
  font-weight: 400;
  color:#afafaf;
}

.hero-strap p {
  margin: 0;
  font-size: 14px;          /* NET İSTEDİĞİN */
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,.85);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-strap-inner {
    padding: 10px 0;
  }

  .hero-strap p {
    font-size: 20px;
  }
}








/* =========================
   OVERVIEW SECTION
   ========================= */

.overview {
  padding: 80px 0;
  background: var(--bg-soft);
}

.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.overview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* RIGHT */
.overview-content h2 {
  margin-bottom: 16px;
}

.overview-content p {
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
  font-size:16px;
}

.overview-content li {
  max-width: 520px;
  line-height: 1;
  margin-bottom: 16px;
  color: #333;
  font-size:16px;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .overview-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
}









/* =========================
   VALUE SECTION
   ========================= */

.value {
  padding: 80px 0;
  background: var(--bg-white);
}

.value-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* HEADER */
.value-head {
  max-width: 520px;
  margin-bottom: 64px;
}

.value-head p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD */
.value-card {
  border: 1px solid #e6e6e6;
  padding: 32px;
  background: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.value-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.value-card p {
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .value-inner {
    padding: 0 24px;
  }

  .value-head {
    margin-bottom: 48px;
  }
}











/* =========================
   INDUSTRIES SECTION
   ========================= */

.industries {
  padding: 80px 0;
  background: url(/images/manufacturing.jpg);
}
.industries--3col {
  padding: 80px 0;
  background: url(/images/manufacturing.jpg);
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* HEADER */
.industries-head {
  max-width: 520px;
  margin-bottom: 64px;
  color:#fff;
}

.industries-head p {
  margin-top: 12px;
  line-height: 1.6;
  color: #fff;
}

/* GRID BASE */
.industries-grid {
  display: grid;
  gap: 32px;
  
}

/* GRID VARIANTS */
.industries--2col .industries-grid {
  grid-template-columns: repeat(2, 1fr);
}

.industries--3col .industries-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CARD */
/* =========================
   INDUSTRY CARD – CENTERED
   ========================= */

.industry-card-ic {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  text-decoration: none;
  color: inherit;

  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.industry-card-ic:hover {
  border-color: #111;
}

.industry-card-ic h3{font-weight: 900;}

/* ICON */
.industry-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 5px;
  object-fit: contain;
}

/* TITLE */
.industry-card-ic h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color:var(--corporate);
  font-weight: 500;
}

/* TEXT */
.industry-card-ic p {
  line-height: 1.6;
  color: #333;
}


/* HOVER */
.industry-card-ic:hover {
  border-color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .industries-inner {
    padding: 0 24px;
  }

  .industries--2col .industries-grid,
  .industries--3col .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-head {
    margin-bottom: 48px;
  }
}














/* =========================
   PRODUCT FAMILIES SECTION
   ========================= */

.products {
  padding: 80px 0;
  background: var(--bg-white);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* HEADER */
.products-head {
  max-width: 520px;
  margin-bottom: 64px;
}

.products-head p {
  margin-top: 12px;
  line-height: 1.6;
  color: #555;
}

/* GRID BASE */
.products-grid {
  display: grid;
  gap: 32px;
}

/* GRID VARIANTS */
.products--2col .products-grid {
  grid-template-columns: repeat(2, 1fr);
}

.products--3col .products-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CARD */
/* =========================
   PRODUCT CARD – WITH VISUAL
   ========================= */



.product-visual {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 24px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.product-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.product-card p {
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .products-inner {
    padding: 0 24px;
  }

  .products--2col .products-grid,
  .products--3col .products-grid {
    grid-template-columns: 1fr;
  }

  .products-head {
    margin-bottom: 48px;
  }
}






/* =========================
   WHY MKS DEVO – 2 COLUMN
   ========================= */

.why-mks {
  padding: 100px 0;
  background: #aaa;
}

.why-mks-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.why-mks-head {
  max-width: 520px;
  margin-bottom: 48px;
}

.why-mks-head p {
  margin-top: 12px;
  line-height: 1.6;
  color: #555;
}

.why-mks-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-mks-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.why-mks-item p {
  line-height: 1.6;
  color: #333;
}

/* RIGHT */
.why-mks-visual {
  width: 100%;
  height: 100%;
}

.why-mks-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-mks-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .why-mks-visual img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .why-mks-inner {
    padding: 0 24px;
  }
}






/* =========================
   CAPABILITY DETAIL – CTA
   ========================= */

.capability-cta {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #0f1113 0%,
    #16181c 100%
  );
  color: #fff;
}

.capability-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

/* CONTENT */
.capability-cta-content {
  max-width: 520px;
}

.capability-cta-content p {
  margin-top: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

/* BUTTON */
.capability-cta-button {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.capability-cta-button:hover {
  background: #fff;
  color: #0f1113;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .capability-cta-inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

















/* =========================
   CAPABILITY VALUE FLOW
   ========================= */

.cap-flow {
  padding: 80px 0;
  background: #ffffff;
}

.cap-flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* HEADER */
.cap-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.cap-flow-controls {
  display: flex;
  gap: 12px;
}

.cap-flow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #111;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

/* TRACK */
.cap-flow-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.cap-flow-track::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.cap-flow-item {
  flex: 0 0 300px;
  border: 1px solid #e6e6e6;
  padding: 32px;
  background: #fafafa;
}

.cap-flow-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.cap-flow-item p {
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cap-flow-inner {
    padding: 0 24px;
  }
}








/* =========================
   CAPABILITY – PRODUCTS
   ========================= */

.cap-products {
  padding: 80px 0;
  background: #ffffff;
}

.cap-products-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* HEADER */
.cap-products-head {
  max-width: 520px;
  margin-bottom: 56px;
  color:#333;
}

.cap-products-head p {
  margin-top: 12px;
  line-height: 1.6;
  color: #555;
}

/* GRID */
.cap-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.cap-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cap-product-visual {
  width: 100%;
  height: 240px;
  background: #f3f4f6;
  overflow: hidden;
  margin-bottom: 16px;
}

.cap-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cap-product-card h3 {
  font-size: 18px;
  font-weight: 500;
  color:#333;
}

/* HOVER */
.cap-product-card:hover h3 {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .cap-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cap-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cap-products-grid {
    grid-template-columns: 1fr;
  }
}










/* =========================
   PRODUCT → CAPABILITY LINK
   ========================= */

.product-capability-link {
  background: #fff;
  padding: 96px 0;
}

/* başlık bloğu mevcut sistemle uyumlu */
.product-capability-link .section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.product-capability-link .section-head h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.product-capability-link .section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f6368;
}

/* kart alanı */
.capability-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* kart */
.capability-link-card {
  position: relative;
  display: block;
  padding: 40px 36px;
  border: 1px solid #e6e6e6;
  text-decoration: none;
  background: #fff;
  transition: border-color .3s ease, background .3s ease;
}

/* kart başlığı */
.capability-link-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1a1a1a;
}

/* CTA */
.capability-link-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--corporate, #e41210);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s ease;
}

/* hover */
.capability-link-card:hover {
  border-color: var(--corporate, #e41210);
  background: #fafafa;
}

.capability-link-card:hover .capability-link-cta {
  gap: 12px;
}

/* responsive */
@media (max-width: 768px) {
  .product-capability-link {
    padding: 64px 0;
  }

  .capability-link-card {
    padding: 32px 28px;
  }
}



/* =========================
   PRODUCT → CAPABILITY LINK
   TWO COLUMN
   ========================= */

.capability-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  max-width:1100px;
}

/* LEFT TEXT */
.capability-text {
  max-width: 520px;
}

.capability-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.capability-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f6368;
}

/* RIGHT CARD ALIGNMENT */
.capability-card-wrap {
  display: flex;
  justify-content: flex-start;
}

/* responsive */
@media (max-width: 1024px) {
  .capability-two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .capability-card-wrap {
    justify-content: flex-start;
  }
}




























/* =========================
   PRODUCT PORTFOLIO
   ========================= */

.product-portfolio {
  padding: 96px 0;
  background: #fff;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top:36px;
}



.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color:#333;
}

.product-desc {
  font-size: 14px;
  color: #5f6368;
  /* hizalama kilidi */
  min-height: 100px;              /* tek satır için ideal */
  display: flex;
  align-items: center;

  /* çizgi için boşluk */
  padding-bottom: 14px;
  margin-bottom: 20px;
  position: relative;
}

.product-desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,.08);
}


.product-card ul {
  list-style: none;
  padding: 0;
  color:#333;
}

.product-card li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.product-card li::before {
  content: "–";
  position: absolute;
  left: 0;
}

/* =========================
   TECHNICAL TABLES
   ========================= */

.technical-tables {
  padding: 96px 0;
  background: #dfdfdf;
  color:#333;
}

.technical-tables2 {
  padding: 96px 0;
  background: #fff;
  color:#333;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 1200px;
  border-collapse: collapse;
  font-size: 14px;
  margin-top:30px;
}

thead th {
  text-align: left;
  font-weight: 600;
  padding: 16px;
  border-bottom: 2px solid #ddd;
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #e6e6e6;
}

tbody tr:hover {
  background: #f0f2f5;
}

/* responsive spacing */
@media (max-width: 768px) {
  .product-portfolio,
  .technical-tables {
    padding: 64px 0;
  }
}












.about-section {
  padding: 96px 0;
  color:#333;
  max-width: 12000px;
  margin:auto;
  line-height: 2;
}

.about-section.alt {
  background: #fdfdfd;
  max-width: 600px;;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 32px;
}
.about-section a {
  color:var(--corporate)
}

.about-section .gray {background: #dfdfdf;}



/* =========================
   ABOUT US — OUR VALUES
   ========================= */

.about-values {
  padding: 96px 0;
  background: #f5f7fa;
}

.values-two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* IMAGE */
.values-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* CONTENT */
.values-content h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.values-list span {
  font-size: 14px;
  line-height: 1.6;
  color: #5f6368;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .values-two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}






.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-list {padding-top:20px;}

.news-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  color: #111;
  margin-top:20px;
}

.news-image {
  position: relative;
  aspect-ratio: 4 / 3; /* kritik */
  overflow: hidden;
  margin-bottom:20px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.news-title {
  color: #111;
  font-size: 18px;
  line-height: 1.3;
  margin-top:20px;
}

.news-excerpt {
  color: #555;
  font-size: 14px;
  line-height: 150%;
  margin-top: 8px;
}




.news-filters {
  display: flex;
  justify-content: center;   /* 🔴 kilit satır */
  gap: 32px;
  margin: 40px 0 48px;
}

.news-filters button {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #777;
  cursor: pointer;
  position: relative;
}

.news-filters button.active {
  color: #111;
  font-weight: 500;
}

.news-filters button.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #111;
}



.news-card:hover .news-image img {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.news-type {
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-top: 20px;
}


















.news-detail {
  padding: 20px 0 140px;
  background: #fff;
}

.news-detail-article {
  max-width: 760px;
  margin: 0 auto;
}


.news-detail-header {
  margin-bottom: 56px;
}

.news-detail-type {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}

.news-detail-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 500;
  color: #111;
  margin-bottom: 16px;
}

.news-detail-date {
  font-size: 14px;
  color: #999;
}


.news-detail-header {
  margin-bottom: 56px;
}

.news-detail-type {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}

.news-detail-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 500;
  color: #111;
  margin-bottom: 16px;
}

.news-detail-date {
  font-size: 14px;
  color: #999;
}



.news-detail-video {
  margin: 56px 0;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}


.news-detail-content {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

.news-detail-content p {
  margin-bottom: 28px;
}

.news-detail-content h2 {
  font-size: 26px;
  margin: 56px 0 20px;
  color: #111;
}

.news-detail-content h3 {
  font-size: 22px;
  margin: 48px 0 18px;
  color: #111;
}

.news-detail-content ul {
  margin: 32px 0;
  padding-left: 20px;
}

.news-detail-content li {
  margin-bottom: 12px;
}


.news-detail-content a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}


.news-detail-cover {
  margin: 48px auto;
  max-width: 640px;   /* 🔴 kilit */
}

.news-detail-cover img {
  width: 100%;
  height: auto;
  display: block;
}






.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.industry-card {
  position: relative;
  height: 220px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.industry-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.industry-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  z-index: 2;
}





.industry-detail {
  padding: 120px 0;
}

.industry-detail-title {
  font-size: 42px;
  margin-bottom: 40px;
}

.industry-detail-hero {
  max-width: 900px;
  margin-bottom: 56px;
}

.industry-detail-hero img {
  width: 100%;
  display: block;
}

.industry-detail-content {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
}



.page-body {
  background: #ffffff;
  padding: 50px 0;
}

.industry-detail-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #222;          /* 🔴 ASIL OKUNURLUK */
}


.industry-detail-content h2 {
  font-size: 78px;
  margin: 64px 0 24px;
  color: #111;
}

.industry-detail-content p {
  margin-bottom: 28px;
}






.product-overview {
  margin-bottom: 120px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-image img {
  width: 100%;
  display: block;
}

.overview-content {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

.overview-content h2 {
  font-size: 28px;
  margin: 48px 0 24px;
}

.overview-content p {
  margin-bottom: 28px;
}

/* =========================
   TECHNICAL TABLES
   ========================= */

.technical-content {
  margin-top: 120px;
}

/* Başlıklar */
.technical-content h2 {
  font-size: 26px;
  margin: 72px 0 24px;
  color: #111;
}

/* Sarmalayıcı */
.technical-content .table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* Tablo */
.technical-content table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

/* Hücreler */
.technical-content th,
.technical-content td {
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.4;
  border-bottom: 1px solid #e6e6e6;
  color: #222;
  background: #fff;
}

/* Header */
.technical-content thead th {
  background: #f5f6f7;
  font-weight: 600;
  color: #111;
  border-bottom: 2px solid #ddd;
}

/* İlk kolon (Property / Function) */
.technical-content tbody td:first-child {
  font-weight: 500;
  color: #111;
  background: #fafafa;
  white-space: nowrap;
}

/* Zebra efekti */
.technical-content tbody tr:nth-child(even) td {
  background: #fcfcfc;
}

/* Hover (çok hafif) */
.technical-content tbody tr:hover td {
  background: #f1f3f5;
}

/* ✓ ve – hizalama */
.technical-content td {
  text-align: left;
}

.technical-content td:not(:first-child) {
  text-align: left;
  font-weight: 500;
}

/* Mobil için */
@media (max-width: 768px) {
  .technical-content table {
    min-width: 600px;
  }

  .technical-content h2 {
    font-size: 22px;
  }
}















#industryContent {
  max-width: 820px;
  margin: 0 auto 80px;
  color: #1e1e1e;
}

#industryContent h2,
#industryContent h3 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

#industryContent p {
  line-height: 1.7;
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}

#industryContent li {
  line-height: 1.7;
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}











/* =========================
   CERTIFICATES – STACKED LAYOUT
========================= */

.overview--stacked .overview-inner {
  display: block;
}

.overview--stacked .overview-media {
  width: 100%;
  margin-bottom: 3rem;
}

.overview--stacked .overview-media img {
  height: auto;
  width:553px;
  display: block;
  margin:auto;
}

.overview--stacked .overview-content {
  max-width: 820px;
  margin: 0 auto;
}

.overview--stacked .overview-content p {
  font-size: 1.05rem;
  line-height: 1.75;
}














/* COOKIE BANNER */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  border-top:1px solid #fff;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-solid {
  background: var(--corporate);
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
}

/* MODAL */

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  color:#111;
  font-size:16px;
  line-height: 1.7;
}

.modal-header {
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #000;
  padding: 4px 8px;
}

.modal-close:hover {
  opacity: 0.6;
}


.cookie-modal-content {
  background: #fff;
  width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
}

.modal-logo {
  height: 60px;
  background: #f2f2f2;
  margin-bottom: 20px;
}

.full {
  width: 100%;
  margin-top: 20px;
}

/* ACCORDION */

.accordion-item {
  border-top: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
}

.accordion-body {
  display: none;
  padding-bottom: 16px;
}

/* SWITCH */

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input { display: none; }

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
}

.slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: #c00000;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.always-active {
  font-size: 13px;
  color: #888;
}









/* CONTACT LOCATIONS */

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Tablet */
@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: #0f1a1f;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-info {
  padding: 24px;
}

.loc-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.loc-address {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* İki nokta hizası */
.loc-meta span {
  display: inline-grid;
  grid-template-columns: 70px 1fr;
  column-gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.loc-meta strong {
  font-weight: 400;
  opacity: 0.7;
}

/* Map */
.location-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}





.purpose-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.purpose-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #111;
  opacity: 0.85;
}

.purpose-content h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 500;
}

.purpose-content p {
  margin: 0;
  line-height: 1.6;
  max-width: 620px;
}

/* Responsive */
@media (max-width: 768px) {
  .purpose-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .purpose-icon {
    justify-content: flex-start;
  }
}



.overview-inner_cert {
  display: flex;
  justify-content: center;
  align-items: center;
  width:1200px;
  margin:auto;
  color:#111;
  line-height: 1.7;
}





.cert-intro {
  padding: 50px 0 80px;
  width:450px;
  margin:auto;
}

.cert-intro-inner {
  max-width: 720px;
  margin-left: 120px;   /* soldan uzaklaştırma */
}

.cert-intro-inner p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: #111;
}






.poly-section {
  padding: 120px 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%; /* dikey cover */
  margin-top:70px;
}

.poly-bg-1 {
  background-image: url('/images/polymers/bg-1.jpg');
}

.poly-bg-2 {
  background-image: url('/images/polymers/bg-2.jpg');
}

.poly-bg-3 {
  background-image: url('/images/polymers/bg-3.jpg');
}

.poly-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 80px;
}





.poly-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.75); /* şeffaf değil, hafif opak */
  color: #111; /* yazı siyah */
}

.poly-table th,
.poly-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
}

.poly-table thead {
  background: #111;
  color: #fff;
}

.poly-table thead th {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.poly-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.poly-table tbody tr:last-child {
  border-bottom: none;
}

.poly-table tbody tr:hover {
  background: #f7f7f7;
}



@media (max-width: 1024px) {
  .poly-section {
    background-size: 60%;
  }
}

@media (max-width: 768px) {
  .poly-section {
    background-image: none;
  }

  .poly-inner {
    padding-left: 0;
  }

  .poly-table {
    font-size: 14px;
  }
}



.phos-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.phos-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url('/images/phosphonats/bg-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.phos-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 80px;
  color:#111;
}


.phos-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
  background: rgba(255,255,255,0.95);
}

.phos-table td {
  padding: 18px 24px;
  vertical-align: middle;
  font-size: 15px;
}

.phos-table td.left {
  width: 25%;
  font-weight: 500;
  color: #fff;
}

.phos-table td:not(.left) {
  width: 75%;
  color: #111;
}


.c1  { background:#2dbedc; }
.c2  { background:#2891a5; }
.c3  { background:#287d8c; }
.c4  { background:#235f6f; }
.c5  { background:#304147; }
.c6  { background:#233c3f; }


.phos-table tr {
  border-bottom: 1px solid #e6e6e6;
}

.phos-table tr:last-child {
  border-bottom: none;
}


@media (max-width: 1024px) {
  .phos-section::after {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .phos-section::after {
    display: none;
  }

  .phos-inner {
    padding-left: 0;
  }

  .phos-table td {
    display: block;
    width: 100% !important;
  }

  .phos-table tr {
    margin-bottom: 20px;
    display: block;
  }
}



.phos-visual {
  padding: 120px 0;
  background: #f7f7f7; /* hafif kontrast */
}

.phos-visual-inner {
  display: flex;
  justify-content: center;
}

.phos-visual-inner img {
  max-width: 900px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}



.nap-section {
  padding: 80px 0;
  margin-bottom: 60px; /* section arası hafif boşluk */
}

.nap-section:last-child {
  margin-bottom: 0;
}

.nap-container {
  max-width: 1200px;
  margin: 0 auto;
}
.nap-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #111;
}
.nap-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* sol geniş */
  height: 520px; /* tüm sectionlar aynı yükseklik */
  gap: 40px;
}
.nap-left img,
.nap-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nap-content {
  display: flex;
  align-items: center;
  padding: 0 60px;
  background: #f7f7f7;
}
.nap-title {
    font-size: 28px;
    margin-bottom:50px;
    margin-left:50px;
  }

.nap-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}
@media (max-width: 1024px) {

  .nap-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .nap-left,
  .nap-right {
    height: 320px;
  }

  .nap-content {
    padding: 60px 30px;
  }

  .nap-title {
    font-size: 28px;
    color:#111;
  }
}



.as-section {
  padding: 100px 0;
  font-size:16px;
  color:#111;
  line-height: 1.7;
}

.as-table {
  width: 100%;
  border-collapse: collapse;
  color: #111;
}

.as-table th,
.as-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
}

.as-table thead {
  background: #f2f2f2;
}

.as-table thead th {
  font-weight: 600;
}

.as-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.as-table tbody tr:last-child {
  border-bottom: none;
}
.as-light {
  background: #f7f7f7;
}

.as-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #111;
}

.as-light p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #111;
}
.as-dark {
  background: #111;
}

.as-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.as-box:last-child {
  border-bottom: none;
}

.as-box-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.as-box-col p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {

  .as-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .as-title {
    font-size: 26px;
  }

}

/* LEGAL PAGE RESET */

.legal-page section {
  margin: auto !important;
  padding: 0 !important;
  width:760px;

}

.legal-page .legal-section {
  margin-bottom: 20px !important;
  color:#111;
}

.legal-page .legal-section:last-child {
  margin-bottom: 0 !important;
}

.legal-page h2,
.legal-page h3,
.legal-page h4 {
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

.legal-page p {
  margin-bottom: 12px !important;
}

.legal-page ul {
  margin: 8px 0 12px 18px !important;
}

.legal-page li {
  margin-bottom: 6px !important;
}


.legal-section ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 18px;
}

.legal-section li {
  margin-bottom: 6px;
}

.page-content section {
  margin: 0;
}




.sulfur-section {
  display: flex;
  gap: 80px;
  padding: 80px 0;
  width:1200px;
  margin:auto;
  color:#111;
}

/* 60 / 40 oran */
.sulfur-left {
  flex: 0 0 70%;
}

.sulfur-right {
  flex: 0 0 30%;
}

/* LEFT */

.sulfur-left h2 {
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid #c00;
  font-weight: 500;
}

/* RENKLİ üçgen ikon */
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #c00000; /* accent renk */
}

/* RIGHT TABLE */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  padding-left: 20px; /* tabloyu biraz içeri alır */
}

.spec-table th {
  text-align: left;
  padding: 18px 18px;
  border-bottom: 1px solid #111;
  font-weight: 600;
  background-color: #111;
  color:#fff;
}

.spec-table td {
  padding: 18px 18px;
  border-bottom: 1px solid #aaa;
}

.spec-table .tick {
  text-align: right;
  color: #c00000; /* tick rengi */
  font-weight: 700;
  padding-right:18px;
}




.core-section {
  padding: 100px 0;
  color:#111;
  margin:auto;
  line-height:1.7;
}

.core-section1 {
  color:#111;
  width:760px;
  margin:auto;
}

.light-bg {
  background: #f3f3f3;
}

/* TRIANGLE LIST */

.triangle-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}

.triangle-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  font-weight: 500;
}

.triangle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #c00000;
}

/* Alt border gri olan listeler */

.gray-border li {
  border-bottom: 1px solid #aaa;
}

/* TABLE */

.table-wrapper {
  max-width: 900px;
}

.core-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.core-table th {
  
  font-weight: 700;
  background: #111;
  color:#fff;
  padding:10px;

}

.core-table td {
  padding: 22px;
  border-bottom: 1px solid #111;
  vertical-align: top;
}

/* SPLIT 50/50 */

.split-50 {
  display: flex;
  gap: 80px;
}

.split-col {
  flex: 1;
}

.split-col h3 {
  margin-bottom: 30px;
}




.avi {background-color: #eff0f2;}


.aviation-section {
  padding: 140px 0;
  width:1200px;
  margin:auto;
}

.light-bg {
  background: #f3f3f3;
}

.aviation-grid {
  display: grid;
  grid-template-columns: 70% 30%; /* SOL daha geniş */
  gap: 60px;
  align-items: start; /* ÜSTTEN hizalama */
}

.aviation-item img {
  width: 100%;
  height: auto;
  display: block;
}



.industry-container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 60px;
  width:1000px;
  margin:auto;
}

.industry-image img {
  width: 100%;
  height: auto;
  display: block;
}

.industry-col {
  width: 100%;
}

.capability-card-ind {
  display: block;
  width: 100%;
  aspect-ratio: 351 / 538; /* oran sabit */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}





.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width:1200px;
  margin:auto;
  margin-top:50px;
  margin-bottom:50px;
}


.products-grid-ind {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width:900px;
  margin:auto;
  margin-top:50px;
  margin-bottom:50px;
}


.product-card {
  position: relative;
  aspect-ratio: 4 / 3; /* kare değil, daha yatay */
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.product-content {
  width: 100%;
  padding: 24px;
  background: #e41210;
}

.product-content h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}


.industry-detail{padding:0}


.industry-detail .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  justify-content: center;   /* kritik */
  gap: 40px;
}

.industry-detail .industry-products {
  padding-top: 40px;   /* 100px yerine 40 */
  padding-bottom: 100px;
}


.industry-detail .product-item {
  display: block;
  width: auto !important;
  max-width: none !important;
  text-decoration: none;
  color: #111;
  overflow: hidden;
  background: #fff;
  position: relative;

  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.45s cubic-bezier(.22,.61,.36,1);
}


.industry-detail .product-image {
  width: 100%;
  aspect-ratio: 351 / 538;
  max-height: 500px;
  background-size: cover;
  background-position: center;

  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}


.industry-detail .product-caption {
  background: #c00000;
  padding: 16px 18px;
  transition: background 0.4s ease;
}

.industry-detail .product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.industry-detail .product-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border 0.35s ease;
  pointer-events: none;
}



.industry-detail .product-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.08);
}

.industry-detail .product-item:hover .product-image {
  transform: scale(1.04);
}

.industry-detail .product-item:hover .product-caption {
  background: #9e0000;
}

.industry-detail .product-item:hover::after {
  border-color: #c00000;
}




.world-map {
  width: 100%;
  height: auto;
  display: block;
}




.global-map-section{}
.global-map-section .container{width:100%;}

/* GLOBAL PRESENCE MAP */

.world-map path {
  fill: #000;
  stroke: #ffffff;
  stroke-width: 0.4;
  transition: all .2s ease;
}

.world-map path.market-active {
  fill: #a10f17;
  stroke-width: 0.8;
  cursor: pointer;
}

.world-map path.market-active {
  fill: #a10f17;
  stroke-width: 0.8;
  cursor: pointer;
  transition: all .2s ease;
}

.world-map path.market-active.is-hovered {
  fill: #d61f29;
  stroke-width: 1.2;
}


.world-map path.home-country {
  fill: #ff4d5a;
  stroke: #ffffff;
  stroke-width: 1.2;
  cursor: default;
  transition: all .2s ease;
}

.world-map path.home-country:hover {
  fill: #ff2e3e;
}


/* Tooltip */

.map-tooltip {
  position: fixed;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity .15s ease;
  z-index: 9999;
  white-space: nowrap;
}





/* ============================= */
/* SECTION */
/* ============================= */

.product-section {
  width: 100%;
  background: #efefef;
  padding: 100px 0;
}

.product-section .section-head{ margin-bottom:50px;}

/* ============================= */
/* CONTAINER (1200px LIMIT) */
/* ============================= */

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================= */
/* FLEX GRID (ORTALI SON SATIR) */
/* ============================= */

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* OLAY BURADA */
  gap: 32px;
}


/* ============================= */
/* CARD */
/* ============================= */

.product-card {
  position: relative;
  flex: 0 0 calc(25% - 24px); /* 4 kolon */
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #Fff;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
}



.product-card.vertical {
  aspect-ratio: 4 / 5;
}

.product-card:hover {
  transform: translateY(-6px);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 640px) {
  .product-card {
    flex: 0 0 100%;
  }
}


/* ============================= */
/* BACKGROUND */
/* ============================= */

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}

.product-card:hover .card-bg {
  transform: scale(1.05);
}


/* ============================= */
/* OVERLAY */
/* ============================= */

.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.70),
    rgba(0,0,0,0.250),
    rgba(0,0,0,0)
  );
  transition: height 0.5s cubic-bezier(.22,.61,.36,1);
  z-index: 1;
}

.product-card:hover::after {
  height: 70%;
}


/* ============================= */
/* CONTENT */
/* ============================= */

.card-content {
  position: absolute;
  bottom: 0;
  padding: 28px;
  z-index: 2;
}

.card-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color:#fff
}





/* ============================= */
/* SECTION */
/* ============================= */

.news-section {
  width: 100%;
  background: #efefef;
  padding: 100px 0;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================= */
/* GRID – GERÇEK MATEMATİK */
/* ============================= */

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;   /* İKİ EŞİT SATIR */
  gap: 32px;
}

/* Sol kart iki satırı kaplar */
.news-card-large {
  grid-row: span 2;
}


/* ============================= */
/* CARD */
/* ============================= */

.news-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #fff;
  min-height: 260px; /* güvenli taban yükseklik */
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
}

.news-card:hover {
  transform: translateY(-6px);
}


/* ============================= */
/* BACKGROUND */
/* ============================= */

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}

.news-card:hover .card-bg {
  transform: scale(1.05);
}


/* ============================= */
/* OVERLAY */
/* ============================= */

.news-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  transition: height 0.5s cubic-bezier(.22,.61,.36,1);
  z-index: 1;
}

.news-card:hover::after {
  height: 75%;
}


/* ============================= */
/* CONTENT */
/* ============================= */

.card-content {
  position: absolute;
  bottom: 0;
  padding: 28px;
  z-index: 2;
}

.news-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.news-card-large h3 {
  font-size: 18px;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .news-card-large {
    grid-row: auto;
  }

  .news-card {
    min-height: 300px;
  }
}

 .news-detail {width:1200px; margin:auto;}
 .news-img-caption {max-width:500px; margin:auto;}
 .news-img-caption img {max-width:500px;}





 .hr-section {
  padding: 120px 20px;
  font-family: 'Inter', sans-serif;
}

.hr-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.hr-header {
  margin-bottom: 50px;
}

.hr-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.hr-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.hr-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.file-upload input {
  padding: 12px;
  background: #f0f2f4;
  cursor: pointer;
}

.submit-btn {
  margin-top: 20px;
  padding: 16px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .hr-container {
    padding: 40px 30px;
  }
}



.form-message {
  margin-top: 20px;
  font-weight: 500;
}

.form-message.loading {
  color: #999;
}

.form-message.success {
  color: #2e7d32;
}

.form-message.error {
  color: #c62828;
}








.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.container-750 {
  max-width: 750px;
  margin: 0 auto;
  padding: 100px 24px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.intro-text {
  padding: 55px;
  border-radius: 28px;
  background: linear-gradient(145deg,#f2f2f2 0%,#e9ecef 60%,#f7f7f7 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  line-height:1.7;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.intro-text p{margin-top:15px;}
.intro-text h2 { color:#111; font-size:32px; line-height:1.3; }

.intro-media {
  position: relative;
  aspect-ratio: 4 / 5;
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

@media (max-width: 992px) {

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-media {
    aspect-ratio: 16 / 9; /* mobilde daha yatay daha iyi durur */
  }

  .intro-text {
    min-height: auto;
  }

}

.docs-grid { display:grid; gap:30px; justify-content:center; }
.docs-grid.cols-2 { grid-template-columns: repeat(2,320px); }
.docs-grid.cols-3 { grid-template-columns: repeat(3,320px); }

.doc-card {
  padding:35px;
  border:1px solid #eee;
  border-radius:20px;
  transition:.3s;
}
.doc-card:hover { transform:translateY(-4px); border-color:#111; }

/* RELATED SLIDER SAFE VERSION */

.section-related {
  padding: 120px 0;
  overflow: hidden;
  background:#dfdfdf;
}

.related-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.related-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 20px;   /* hover için boşluk */
}
.related-slider {
  display: flex;
  gap: 30px;
  transition: transform 1.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  
}

/* 5 kart */
.related-slider > .product-card {
  flex: 0 0 calc((100% - 120px) / 5);
  max-width: calc((100% - 120px) / 5);
}

/* OKLAR */
.related-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.related-nav.prev { left: 10px; }
.related-nav.next { right: 10px; }

/* PDF PANEL */
.pdf-panel { position:fixed; inset:0; display:none; z-index:9999; }
.pdf-panel.active { display:block; }

.pdf-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(4px);
}

.pdf-drawer {
  position:absolute;
  top:0;
  right:0;
  width:60%;
  height:100%;
  background:#fff;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .4s ease;
  box-shadow:-20px 0 60px rgba(0,0,0,0.2);
}

.pdf-panel.active .pdf-drawer { transform:translateX(0); }

.pdf-header {
  padding:25px 35px;
  border-bottom:1px solid #eee;
  display:flex;
  justify-content:space-between;
}

#pdfFrame { flex:1; border:none; }

.pdf-footer {
  padding:20px 35px;
  border-top:1px solid #eee;
}

.pdf-download-btn {
  background:#111;
  color:#fff;
  padding:12px 20px;
  text-decoration:none;
  border-radius:6px;
}

.product-page {
  color: #222;
}

.product-page h2,
.product-page h3,
.product-page p,
.product-page li {
  color: inherit;
}



.section-documents {
  padding: 120px 0;
  text-align: center;
  background: #f5f5f5;
}

.documents-header {
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.section-title.centered {
  font-size: 28px;
  font-weight: 400;
  color: #111;
  margin: 0;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: #111;
  margin: 20px auto 0;
  opacity: 0.2;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 30px;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  color: #111;
  transition: 0.35s cubic-bezier(0.22,1,0.36,1);
}

.doc-card:hover {
  transform: translateY(-4px);
  border-color: #111;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.doc-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-icon svg {
  width: 24px;
  height: 24px;
  color: #111;
  transition: 0.3s ease;
}

.doc-card:hover .doc-icon svg {
  color: #000;
}

.doc-info h3 {
  font-size: 16px;
  margin: 0 0 6px 0;
  font-weight: 400;
}

.doc-type {
  font-size: 13px;
  color: #777;
}






.section-applications {
  padding: 50px 0 50px 0;
  text-align: center;
  background:#fafafa;
}

.applications-header {
  margin-bottom: 70px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 60px;
  text-align: left;
}

.application-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  transition: 0.3s ease;
}

.application-item:hover {
  transform: translateX(4px);
}

.app-icon svg {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  color: #111;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}



/* CONTAINER */
.doc-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* LAYOUT */
.doc-layout {
  display: flex;
  gap: 40px;
}

/* SIDEBAR */
.doc-sidebar {
  width: 260px;
  background: #111;
  border-radius: 12px;
  padding: 10px 0;
}

.doc-sidebar div {
  padding: 14px 20px;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
}

.doc-sidebar div:hover {
  background: #222;
  color: #fff;
}

.doc-sidebar .active {
  background: #fff;
  color: #000;
  font-weight: 600;
}

/* CONTENT */
.doc-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TEXT */
.doc-content h2 {
  margin-top: 0;
}

.doc-block {
  border: 1px solid #fefefe;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  color:#111;
}

.row {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f1f1;
}

.row:last-child {
  border-bottom: none;
}

.row span {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}

.row strong {
  font-size: 15px;
  color: #111;
}


.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color:#111;
}

.doc-table th {
  text-align: left;
  background: #f5f5f5;
  padding: 10px;
  font-weight: 600;
}

.doc-table td {
  padding: 10px;
  border-top: 1px solid #eee;
  vertical-align: top;
}

.doc-table tr:hover {
  background: #fafafa;
}



.doc-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
}

.doc-button:hover {
  background: #333;
}