/* ==========================================================================
   SIMKA Elektronik — site styles
   Tasarım referansı: assets/home-design.jpg (design-reference/index.html)
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  --navy-900: #01061b;
  --navy-800: #030f2c;
  --navy-700: #051546;
  --navy-600: #0b2e7a;

  --blue-500: #3b7cf0;
  --blue-600: #2b62d6;
  --blue-300: #7ba6f7;

  --ink-900: #0f1a35;
  --ink-700: #1f2a4a;
  --ink-600: #2b3147;
  --ink-500: #4b5162;
  --ink-400: #6b7080;

  --surface: #f2f2f4;
  --card: #f8f8fa;
  --card-solid: #fbfbfc;
  --line: #e6e7ec;

  --container: 1320px;
  --gutter: 32px;

  --radius-sm: 5px;
  --radius-md: 10px;

  --font: "Plus Jakarta Sans", "Segoe UI", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Arial, sans-serif;
}

/* --- Reset -------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-600);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, p, ul, ol { margin: 0; }

ul, ol { padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.section-title {
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

.section-lead {
  margin-top: 15px;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-600);
}

/* --- Hero + navigation -------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 64% 46%, #0d3489 0%, rgba(13, 52, 137, 0) 62%),
    linear-gradient(155deg, #041236 0%, #030d2b 45%, #01061b 100%);
  color: #fff;
}

.hero__photo {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(70%, 990px);
  height: auto;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 26%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 76%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 26%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 76%, transparent 100%);
  mask-composite: intersect;
}

.hero .container { position: relative; z-index: 2; }

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 78px;
}

.nav__logo img { width: 136px; height: auto; }

.nav__toggle {
  display: none;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-inline: auto;
}

.nav__link {
  position: relative;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.18s ease;
}

.nav__link:hover,
.nav__link.is-active { color: #fff; }

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--blue-500);
}

.nav__cta {
  flex: none;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nav__cta:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
}

.hero__body {
  max-width: 460px;
  padding: 28px 0 36px;
}

.hero__title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #fff;
}

.hero__text {
  margin-top: 18px;
  max-width: 392px;
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.86);
}

.hero__tagline {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--blue-500);
}

/* Süreç adımları */
.process {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-bottom: 24px;
}

.process__step { text-align: center; }

.process__bar {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}

.process__label {
  display: block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

.process__step.is-active .process__bar { background: var(--blue-500); }
.process__step.is-active .process__label { color: var(--blue-300); }

/* --- "What we do" ------------------------------------------------------- */
.what {
  padding: 34px 0 0;
  background: var(--surface);
}

.what__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.what__intro { padding-top: 8px; }

.services {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  overflow: hidden;
}

.service {
  display: grid;
  grid-template-columns: 104px 1px minmax(0, 1fr);
  align-items: center;
  min-height: 59px;
  padding: 6px 0;
}

.service__body { padding: 0 30px 0 41px; }

.service + .service { border-top: 1px solid var(--line); }

.service__icon {
  width: 44px;
  height: 30px;
  margin-inline: auto;
  object-fit: contain;
}

.service__rule {
  align-self: stretch;
  margin: 8px 0;
  background: #c9ccd6;
}

.service__title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink-700);
}

.service__text {
  margin-top: 3px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-500);
}

/* Bölüm ayıracı */
.wayforward {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 0;
  background: var(--surface);
}

.wayforward__dot {
  flex: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 3px solid var(--blue-500);
  background: #fff;
}

.wayforward__label {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.wayforward__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--blue-500), rgba(59, 124, 240, 0.28));
}

/* --- Production capabilities -------------------------------------------- */
.capabilities {
  padding: 28px 0 48px;
  background: var(--surface);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: minmax(0, 262px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.capabilities__intro { padding-top: 24px; }

.caps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-solid);
  overflow: hidden;
}

.cap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 14px 10px 14px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cap:nth-child(5n) { border-right: 0; }
.cap:nth-last-child(-n + 5) { border-bottom: 0; }

.cap__icon {
  flex: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.cap__title {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink-700);
}

.cap__sub {
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--ink-400);
}

.cap--more {
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.cap--more .cap__dots {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.6;
  color: var(--ink-700);
}

/* --- Footer ------------------------------------------------------------- */
.footer {
  padding: 58px 0 0;
  background: var(--navy-800);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr) minmax(0, 1.18fr) minmax(0, 0.95fr)
    minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 34px;
  padding-bottom: 46px;
}

.footer__logo { width: 140px; height: auto; }

.footer__about {
  margin-top: 22px;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.18s ease;
}

.social a:hover { background: var(--blue-600); }

.social svg { width: 17px; height: 17px; fill: #fff; }

.footer__heading {
  margin-bottom: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer__links li + li { margin-top: 14px; }

.footer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.18s ease;
}

.footer__links a:hover { color: var(--blue-300); }

.footer__links svg {
  flex: none;
  width: 14px;
  height: 14px;
  stroke: var(--blue-500);
}

.contact address { font-style: normal; }

.contact li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.contact li + li { margin-top: 20px; }

.contact svg {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  fill: rgba(255, 255, 255, 0.75);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__legal span { color: rgba(255, 255, 255, 0.25); }

.footer__legal a:hover { color: #fff; }

/* Sağ alt yüzen buton */
.fab {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(123, 166, 247, 0.45);
  border-radius: 50%;
  background: #0a1b44;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.fab svg { width: 26px; height: 26px; stroke: #fff; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__photo { width: 62%; opacity: 0.55; }
  .what__grid,
  .capabilities__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .section-lead { max-width: 60ch; }
  .caps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cap:nth-child(5n) { border-right: 1px solid var(--line); }
  .cap:nth-child(3n) { border-right: 0; }
  .cap:nth-last-child(-n + 5) { border-bottom: 1px solid var(--line); }
  .cap:last-child { border-bottom: 0; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --gutter: 20px; }

  .nav { height: 66px; }
  .nav__toggle { display: block; }

  .nav__menu {
    position: absolute;
    inset: 66px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px var(--gutter) 20px;
    margin: 0;
    background: var(--navy-800);
  }

  .nav[data-open="true"] .nav__menu { display: flex; }

  .nav__cta { display: none; }

  .hero { display: flex; flex-direction: column; }

  .hero__photo {
    position: static;
    order: 2;
    width: 100%;
    margin-top: 10px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero > .container { order: 1; }

  .hero__body { padding: 34px 0 26px; }
  .hero__title { font-size: 32px; }

  .process { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
}

@media (max-width: 640px) {
  .caps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cap:nth-child(3n) { border-right: 1px solid var(--line); }
  .cap:nth-child(2n) { border-right: 0; }

  .service { grid-template-columns: 72px 1px minmax(0, 1fr); }
  .service__body { padding: 0 18px 0 20px; }
  .service__icon { width: 38px; height: 28px; }

  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: 27px; }
  .process { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT PAGE — assets/about-design.jpg
   ========================================================================== */

/* Sayfa üstü koyu hero (iç sayfalar) */
.pagehero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 460px at 72% 52%, #0d3489 0%, rgba(13, 52, 137, 0) 64%),
    linear-gradient(150deg, #04143d 0%, #030f2c 52%, #01071f 100%);
  color: #fff;
}

.pagehero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(58%, 760px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 34%);
  mask-image: linear-gradient(to right, transparent 0%, #000 34%);
}

.pagehero__body {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 66px 0 72px;
}

.pagehero__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
}

.pagehero__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue-500);
}

.pagehero__title {
  margin-top: 24px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.pagehero__rule {
  display: block;
  width: 46px;
  height: 2px;
  margin: 30px 0 26px;
  background: var(--blue-500);
}

.pagehero__text {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
}

/* Yaklaşımımız */
.approach {
  padding: 56px 0 62px;
  background: #fff;
  text-align: center;
}

.approach__title {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.approach__text {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-500);
}

.values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 52px;
}

.value {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.value:last-child { border-right: 0; }

.value svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 26px;
  fill: none;
  stroke: #1250c8;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value__title {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.value__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-500);
}

/* Hikâye + "Ne yapıyoruz?" paneli */
.story {
  padding: 56px 0 64px;
  background: #f4f6fa;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 48px;
  align-items: start;
}

.story__item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.story__item + .story__item { margin-top: 36px; }

.story__item img {
  width: 100%;
  aspect-ratio: 200 / 133;
  object-fit: cover;
  border-radius: 8px;
}

.story__kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1250c8;
}

.story__title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.story__text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ink-500);
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 40px 40px 46px;
  border-radius: 14px;
  background: linear-gradient(160deg, #123064 0%, #0b2249 45%, #071837 100%);
  color: #fff;
}

.panel__kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7fb0ff;
}

.panel__title {
  margin-top: 22px;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.panel__text {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.checklist { margin-top: 30px; }

.checklist li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
}

.checklist li + li { margin-top: 17px; }

.checklist svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  fill: none;
  stroke: #3f86ff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1080px) {
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 44px; }
  .value:nth-child(3n) { border-right: 0; }
  .story__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .pagehero__photo {
    position: static;
    width: 100%;
    height: 220px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pagehero__body { padding: 40px 0 44px; }
  .pagehero__title { font-size: 29px; }
  .approach__title { font-size: 23px; }
}

@media (max-width: 640px) {
  .values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value { border-right: 0; padding: 0 10px; }
  .story__item { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .story__item img { aspect-ratio: 16 / 9; }
  .panel { padding: 30px 24px 34px; }
  .panel__title { font-size: 21px; }
}

/* İç sayfa üst çubuğu (hero üzerine binmeyen koyu header) */
.topbar {
  position: relative;
  z-index: 30;
  background: var(--navy-800);
}

/* ==========================================================================
   PRODUCTION PAGE — assets/production-design.jpg
   ========================================================================== */
.prod { background: #f6f7fb; }

.prod__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: center;
  padding: 46px 0 40px;
}

.prod__kicker {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f63c8;
}

.prod__title {
  margin-top: 18px;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #101828;
}

.prod__text {
  margin-top: 24px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-500);
}

.prod__usps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.usp {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.usp svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: #e8effb;
  fill: none;
  stroke: #1f4e9c;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-sizing: border-box;
}

.usp__title {
  font-size: 12.5px;
  font-weight: 800;
  color: #1f4e9c;
}

.usp__text {
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-400);
}

.prod__figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 32, 68, 0.14);
}

.prod__photo {
  width: 100%;
  aspect-ratio: 691 / 334;
  object-fit: cover;
}

/* Üretim adımları */
.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 48px;
}

.step img {
  width: 100%;
  aspect-ratio: 218 / 187;
  object-fit: cover;
  border-radius: 6px;
}

.step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.step__no {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  background: #e4ecfa;
  font-size: 12px;
  font-weight: 800;
  color: #1f5fc8;
}

.step__title {
  font-size: 14px;
  font-weight: 700;
  color: #101828;
}

.step__text {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-400);
}

/* Alt mavi şerit */
.strip {
  position: relative;
  overflow: hidden;
  padding: 34px 0 36px;
  background: linear-gradient(100deg, #1a5aa8 0%, #205fae 55%, #2a6bbb 100%);
  color: #fff;
}

.strip::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.07);
  clip-path: polygon(40% 0, 100% 0, 60% 42%, 100% 42%, 40% 100%, 0 100%, 40% 58%, 0 58%);
}

.strip__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.strip__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.strip__item svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strip__title {
  font-size: 15px;
  font-weight: 700;
}

.strip__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1080px) {
  .prod__hero { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .prod__title { font-size: 34px; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 34px; }
  .strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .prod__usps { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip__grid { grid-template-columns: minmax(0, 1fr); }
  .prod__title { font-size: 28px; }
}

/* ==========================================================================
   SHARE YOUR PROJECT PAGE — assets/project-design.jpg
   ========================================================================== */
.pj { background: #f8f8fc; padding-bottom: 0; }

.pj__hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #041538 0%, #072154 46%, #0a2c6e 74%, #0a2c6e 100%);
  color: #fff;
}

.pj__hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(105deg, transparent 0%, transparent 16%, #000 30%);
  mask-image: linear-gradient(105deg, transparent 0%, transparent 16%, #000 30%);
}

.pj__hero-body {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding: 40px 0 46px;
}

.pj__kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.pj__title {
  margin-top: 18px;
  font-size: 39px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.pj__rule {
  display: block;
  width: 76px;
  height: 3px;
  margin: 26px 0;
  background: #2f74e8;
}

.pj__text {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.9);
}

/* Form + yan sütun */
.pj__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px 0 0;
}

.card {
  padding: 26px 28px 30px;
  border: 1px solid #eceef4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 32, 68, 0.04);
}

.card + .card { margin-top: 24px; }

.card__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0d2350;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.form .full { grid-column: 1 / -1; }

.form input,
.form textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 14.5px;
  color: #0d2350;
  border: 1px solid #e2e5ee;
  border-radius: 7px;
  background: #fff;
}

.form textarea {
  min-height: 108px;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder { color: #7f89a3; }

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #2f74e8;
  box-shadow: 0 0 0 3px rgba(47, 116, 232, 0.14);
}

.form__hint {
  grid-column: 1 / -1;
  margin-top: -4px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-400);
}

.form__label {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: #0d2350;
}

.dropzone {
  grid-column: 1 / -1;
  padding: 26px 20px 24px;
  border: 1px dashed #ccd3e2;
  border-radius: 8px;
  background: #f7f8fb;
  text-align: center;
  cursor: pointer;
}

.dropzone.is-over { border-color: #2f74e8; background: #eef4ff; }

.dropzone svg {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  fill: none;
  stroke: #094bbc;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropzone__main {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #24304d;
}

.dropzone__link {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #1a63d8;
}

.dropzone__note {
  display: block;
  margin-top: 7px;
  font-size: 12.5px;
  color: var(--ink-400);
}

.dropzone__files {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  color: #0d2350;
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-500);
}

.consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: #094bbc;
}

.consent a { color: #1a63d8; font-weight: 600; }

.btn-primary {
  grid-column: 1 / -1;
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 7px;
  background: #094bbc;
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease;
}

.btn-primary:hover { background: #0a3f9e; }

/* Yan sütun listeleri */
.sendlist { margin-top: 22px; }

.sendlist li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.sendlist li + li { margin-top: 20px; }

.sendlist svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #1a63d8;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sendlist h3 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0d2350;
}

.sendlist p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-500);
}

.timeline { margin-top: 22px; }

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 20px;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline li::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 2px;
  left: 14px;
  width: 1px;
  background: #dfe4ef;
}

.timeline li:last-child::before { display: none; }

.timeline__no {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #0d2350;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.timeline h3 {
  margin-top: 5px;
  font-size: 13.5px;
  font-weight: 800;
  color: #0d2350;
}

.timeline p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-500);
}

/* Neden SIMKA */
.why {
  margin: 24px 0 0;
  padding: 30px 20px 34px;
  border: 1px solid #eceef4;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.why__title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d2350;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.why__item {
  padding: 0 22px;
  border-right: 1px solid #edeff5;
}

.why__item:last-child { border-right: 0; }

.why__item svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;
  fill: none;
  stroke: #1a4fa8;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why__item h3 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0d2350;
}

.why__item p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-500);
}

/* Alt iletişim şeridi */
.helpstrip {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 26px 0;
  background: linear-gradient(100deg, #164a97 0%, #1b57ae 55%, #2367c4 100%);
  color: #fff;
}

.helpstrip::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -50px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(40% 0, 100% 0, 60% 42%, 100% 42%, 40% 100%, 0 100%, 40% 58%, 0 58%);
}

.helpstrip__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.helpstrip__lead {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.helpstrip__lead svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 1.5; }

.helpstrip__small { font-size: 12.5px; color: rgba(255, 255, 255, 0.82); }

.helpstrip__title {
  margin: 2px 0 6px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.helpstrip__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 30px;
  font-size: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.helpstrip__contact svg { flex: none; width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.6; }

@media (max-width: 1080px) {
  .pj__grid { grid-template-columns: minmax(0, 1fr); }
  .why__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 32px; }
  .why__item:nth-child(3n) { border-right: 0; }
  .helpstrip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .helpstrip__lead { grid-column: 1 / -1; }
  .helpstrip__contact { border-left: 0; padding-left: 0; }
}

@media (max-width: 860px) {
  .pj__hero-photo {
    position: static;
    width: 100%;
    height: 200px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pj__title { font-size: 29px; }
  .form { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__item { border-right: 0; padding: 0 8px; }
  .helpstrip__grid { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 22px 18px 26px; }
}

/* ================= FORM FEEDBACK (PHP) ================= */
.form__alert {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
}
.form__alert p { margin: 0; }
.form__alert ul { margin: 8px 0 0; padding-left: 20px; }
.form__alert--ok {
  background: rgba(59, 124, 240, 0.10);
  border: 1px solid var(--blue-500);
  color: var(--navy-800);
}
.form__alert--error {
  background: #fdecec;
  border: 1px solid #e2554d;
  color: #8f2b25;
}
.form__error {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: #c23b34;
  font-size: 13px;
}
.dropzone.is-drag {
  border-color: var(--blue-500);
  background: rgba(59, 124, 240, 0.06);
}
