:root {
  --orange: #ff6b12;
  --green: #73b51b;
  --dark: #242628;
  --light: #f7f7f7;
  --text: #282828;
  --muted: #666;
  --border: #dedede;
  --shadow: 0 9px 22px rgba(0, 0, 0, .12);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER — birebir korunacak alan */
.site-header {
  height: 90px;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1180px;
  height: 90px;
  margin: 0 auto;
  padding: 0 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 214px;
  flex: 0 0 214px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 214px;
  height: auto;
  display: block;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  height: 100%;
  align-items: center;
}

.main-nav a {
  height: 90px;
  display: inline-flex;
  align-items: center;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.login-btn {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(115, 181, 27, .25);
}

.user-btn {
  width: 24px;
  height: 24px;
  display: inline-flex;
  color: #5f9214;
}

.user-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* HERO */
.hero {
  height: 315px;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .97) 26%, rgba(255, 255, 255, .66) 49%, rgba(255, 255, 255, .02) 100%),
    linear-gradient(180deg, #eaf6ff, #fff);
  overflow: hidden;
  border-bottom: 1px solid #e7e7e7;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  height: 315px;
  margin: 0 auto;
  padding-left: 44px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 575px;
}

.hero h1 {
  margin: 0 0 17px;
  color: #2d2d2d;
  font-size: 41px;
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -.8px;
}

.hero p {
  width: 520px;
  margin: 0 0 22px;
  color: #222;
  font-size: 17px;
  line-height: 1.36;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 315px;
  width: 524px;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 13px;
  box-shadow: 0 8px 17px rgba(0, 0, 0, .14);
}

.cta strong {
  display: block;
  font-size: 15px;
  line-height: 1.07;
  font-weight: 900;
  text-transform: uppercase;
}

.cta small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.cta-orange {
  background: linear-gradient(180deg, #ff8023, #ff6609);
  min-width: 195px;
}

.cta-green {
  background: linear-gradient(180deg, #80c524, #65a516);
  min-width: 205px;
}

.cta-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.cta-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SELECT KARTLARI — aynı seçim düzeni */
.service-selects {
  max-width: 1180px;
  margin: 22px auto 31px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
}

.select-card {
  min-height: 360px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px 10px 12px;
  display: flex;
  flex-direction: column;
}

.select-head {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  text-align: left;
}

.select-icon {
  font-size: 38px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.select-head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.06;
  font-weight: 900;
  text-transform: uppercase;
}

.orange-card .select-head,
.orange-card .select-icon {
  color: var(--orange);
}

.green-card .select-head,
.green-card .select-icon {
  color: var(--green);
}

.select-card img {
  width: calc(100% + 20px);
  height: 108px;
  object-fit: cover;
  margin: 0 -10px 13px;
  display: block;
}

.select-card ul {
  list-style: none;
  margin: 0;
  padding: 0 2px 10px;
  flex: 1;
}

.select-card li {
  position: relative;
  min-height: 24px;
  margin: 7px 0;
  padding-left: 22px;
  font-size: 11px;
  line-height: 1.25;
  color: #1f1f1f;
}

.select-card li::before {
  content: "⌂";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 16px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.orange-card li::before {
  color: var(--orange);
}

.green-card li::before {
  color: var(--green);
}

.outline-btn {
  display: block;
  height: 28px;
  line-height: 24px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid;
  transition: .2s ease;
}

.orange-outline {
  border-color: var(--orange);
  color: var(--orange);
}

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

.green-outline {
  border-color: var(--green);
  color: var(--green);
}

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

/* ORTA BAŞLIKLAR */
.section-title {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-title span {
  height: 1px;
  flex: 1;
  background: #d9d9d9;
  position: relative;
}

.section-title span:first-child::after,
.section-title span:last-child::before {
  content: "";
  position: absolute;
  top: -1px;
  height: 2px;
  width: 78px;
  background: var(--orange);
}

.section-title span:first-child::after {
  right: 0;
}

.section-title span:last-child::before {
  left: 0;
}

.section-title h2 {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

/* SÜREÇ */
.process {
  margin-bottom: 29px;
}

.process-box {
  max-width: 1110px;
  min-height: 111px;
  margin: 10px auto 0;
  border: 1px solid #d8d8d8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 5px 13px rgba(0, 0, 0, .14);
}

.orange-bg {
  background: linear-gradient(180deg, #ff8023, #ff670d);
}

.green-bg {
  background: linear-gradient(180deg, #80c524, #69a819);
}

.step-icon {
  width: 54px;
  font-size: 50px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.orange-line {
  color: var(--orange);
}

.green-line {
  color: var(--green);
}

.process-item h3 {
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 900;
}

.process-item p {
  margin: 0;
  max-width: 190px;
  color: #222;
  font-size: 12px;
  line-height: 1.35;
}

.arrow {
  padding: 0 19px;
  font-size: 46px;
  line-height: 1;
  color: #2a2a2a;
}

/* NEDEN */
.why {
  max-width: 1110px;
  margin: 0 auto 24px;
  text-align: center;
}

.why h2 {
  margin: 0 0 9px;
  font-size: 20px;
  color: #333;
  text-transform: uppercase;
}

.why h2 span {
  color: var(--orange);
}

.why-grid {
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.why-grid div {
  min-height: 112px;
  padding: 20px 7px 13px;
  border-right: 1px solid #dedede;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.why-grid div:last-child {
  border-right: 0;
}

.why-grid span {
  color: var(--green);
  font-size: 42px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.why-grid strong {
  color: #1f1f1f;
  font-size: 12px;
  line-height: 1.22;
}

/* YATIRIM KARTLARI */
.investments {
  max-width: 1180px;
  margin: 0 auto 8px;
  padding: 0 36px;
  text-align: center;
}

.investments .section-title {
  padding: 0;
  margin-bottom: 18px;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.investment-card {
  display: block;
  height: 164px;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .10);
}

.investment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.investment-card:hover img {
  transform: scale(1.04);
}

.all-investments {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 242px;
  height: 31px;
  margin: 10px auto 0;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #ff801c, #ff6506);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

/* FOOTER — birebir korunacak alan */
.site-footer {
  margin-top: 12px;
  background: radial-gradient(circle at 20% 0%, #343a3b, #141819 76%);
  color: #fff;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 171px;
  padding: 28px 54px 17px;
  display: grid;
  grid-template-columns: 1.45fr 1fr .9fr 1.25fr;
  gap: 34px;
}

.footer-col {
  border-left: 1px solid rgba(255, 255, 255, .55);
  padding-left: 32px;
}

.footer-col:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-about img {
  width: 170px;
  height: auto;
  margin-bottom: 10px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.35;
}

.footer-about p {
  max-width: 255px;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}

.socials a {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.newsletter input {
  width: 100%;
  height: 35px;
  border: 0;
  border-radius: 4px;
  padding: 0 13px;
  margin: 3px 0 10px;
  font-size: 12px;
}

.newsletter button {
  width: 100%;
  height: 33px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  max-width: 1180px;
  height: 33px;
  margin: 0 auto;
  padding: 0 54px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: #d9d9d9;
  font-size: 11px;
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  position: relative;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 11px;
}

.footer-bottom a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 2px;
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, .45);
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .header-inner {
    padding: 0 22px;
    gap: 18px;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .service-selects {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .site-header,
  .header-inner {
    height: auto;
  }

  .header-inner {
    padding: 15px 18px;
    flex-wrap: wrap;
  }

  .brand {
    width: 190px;
    flex-basis: 190px;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .main-nav a {
    height: 35px;
  }

  .hero {
    height: auto;
  }

  .hero-inner {
    min-height: 360px;
    height: auto;
    padding: 36px 22px;
  }

  .hero-image {
    opacity: .24;
    width: 100%;
    height: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    width: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-selects {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .process-box {
    margin: 10px 20px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .arrow {
    display: none;
  }

  .why {
    margin-left: 20px;
    margin-right: 20px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    padding: 28px 22px 20px;
    grid-template-columns: 1fr;
  }

  .footer-col,
  .footer-col:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .footer-bottom {
    height: auto;
    padding: 15px 22px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 29px;
  }

  .section-title {
    gap: 12px;
  }

  .section-title h2 {
    font-size: 16px;
  }

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

  .investment-card {
    height: 180px;
  }
}

/* =========================================================
   EK: SCROLL UP / TOP TUŞU
   ========================================================= */
.scroll-top-btn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--orange), #e95304);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, var(--green), #5d9911);
}

/* =========================================================
   EK: MOBİL ALT MENÜ - 5 ADET MENÜ
   Desktop'ta görünmez, mobilde sabit alt bar olarak görünür.
   ========================================================= */
.mobile-bottom-nav {
  display: none;
}

/* =========================================================
   EK: GELİŞTİRİLMİŞ MOBİL GÖRÜNÜM
   Desktop header / kart / footer yapısı korunmuştur.
   ========================================================= */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 998;
  }

  .header-inner {
    min-height: 72px;
    padding: 12px 16px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .brand,
  .brand img {
    width: 176px;
  }

  .brand {
    flex: 0 0 176px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 10px;
    width: auto;
    justify-content: flex-end;
  }

  .login-btn {
    padding: 10px 14px;
    font-size: 11px;
    border-radius: 7px;
  }

  .user-btn {
    width: 23px;
    height: 23px;
  }

  .hero-inner {
    min-height: 415px;
    padding: 34px 20px 40px;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.12;
    letter-spacing: -.5px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.45;
    max-width: 92%;
  }

  .hero-buttons {
    width: 100%;
    gap: 10px;
  }

  .cta {
    width: min(100%, 340px);
    min-height: 58px;
  }

  .service-selects {
    margin-top: 18px;
    gap: 16px;
  }

  .select-card {
    min-height: auto;
    border-radius: 14px;
  }

  .select-card img {
    height: 150px;
  }

  .select-card li {
    font-size: 12px;
    margin: 9px 0;
  }

  .outline-btn {
    height: 38px;
    line-height: 34px;
    border-radius: 8px;
  }

  .process-item {
    align-items: flex-start;
  }

  .process-item p {
    max-width: none;
  }

  .why-grid div {
    min-height: 102px;
  }

  .investment-card {
    border-radius: 10px;
  }

  .site-footer {
    margin-bottom: 0;
  }

  .scroll-top-btn {
    right: 17px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .mobile-nav-item {
    position: relative;
    min-width: 0;
    height: 55px;
    border-radius: 14px;
    color: #454545;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .mobile-nav-item svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .mobile-nav-item.active,
  .mobile-nav-item:hover {
    color: var(--orange);
    background: rgba(255, 107, 18, .10);
  }

  .mobile-nav-main {
    color: #fff;
    background: linear-gradient(180deg, var(--orange), #ef5b05);
    box-shadow: 0 8px 18px rgba(255, 107, 18, .32);
    transform: translateY(-10px);
  }

  .mobile-nav-main.active,
  .mobile-nav-main:hover {
    color: #fff;
    background: linear-gradient(180deg, var(--green), #5f9c13);
  }
}

@media (max-width: 420px) {
  .brand,
  .brand img {
    width: 158px;
  }

  .brand {
    flex-basis: 158px;
  }

  .login-btn {
    padding: 9px 10px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero p {
    max-width: 100%;
  }

  .cta strong {
    font-size: 13px;
  }

  .cta small {
    font-size: 10px;
  }

  .mobile-bottom-nav {
    padding-left: 5px;
    padding-right: 5px;
  }

  .mobile-nav-item {
    font-size: 9px;
    border-radius: 12px;
  }

  .mobile-nav-item svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================================================
   V4 MOBİL RESPONSIVE KAYMA DÜZELTMELERİ
   - Sağ/sol taşma engellendi
   - Hero, kartlar ve footer mobilde tam genişliğe oturtuldu
   - Alt mobil menü 5 eşit sütun olarak sabitlendi
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    background: #fff;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    margin: 0;
    gap: 8px;
  }

  .brand,
  .brand img {
    width: 164px;
    max-width: 164px;
  }

  .brand {
    flex: 0 0 164px;
  }

  .login-btn {
    padding: 9px 11px;
    font-size: 10px;
    white-space: nowrap;
  }

  .user-btn,
  .user-btn svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    min-height: 370px;
    height: auto;
    margin: 0;
    padding: 22px 12px 34px;
    overflow: hidden;
  }

  .hero-image {
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: .24;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.08;
    letter-spacing: -.4px;
    overflow-wrap: break-word;
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero-buttons {
    width: 100%;
    max-width: 100%;
    gap: 9px;
  }

  .cta,
  .cta-orange,
  .cta-green {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 11px 16px;
  }

  .cta strong {
    font-size: 13px;
    line-height: 1.08;
  }

  .cta small {
    font-size: 9.5px;
    line-height: 1.15;
  }

  .service-selects,
  .section-title,
  .investments {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-selects {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .select-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 18px 10px 14px;
    border-radius: 14px;
  }

  .select-head {
    height: auto;
    min-height: 46px;
  }

  .select-card img {
    width: calc(100% + 20px);
    max-width: none;
    height: 142px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .select-card li {
    font-size: 12px;
    line-height: 1.35;
    margin: 9px 0;
    min-height: 21px;
  }

  .outline-btn {
    width: 100%;
    height: 38px;
    line-height: 34px;
    border-radius: 8px;
  }

  .section-title {
    gap: 10px;
  }

  .section-title h2 {
    font-size: 16px;
    text-align: center;
  }

  .process,
  .why,
  .investments,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .process-box {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin: 10px 12px 0;
    padding: 16px 14px;
    border-radius: 10px;
  }

  .process-item {
    width: 100%;
    gap: 12px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    font-size: 21px;
  }

  .step-icon {
    width: 44px;
    flex: 0 0 44px;
    font-size: 42px;
  }

  .why {
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .why-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid div {
    min-width: 0;
    min-height: 96px;
    padding: 15px 6px 12px;
  }

  .investment-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .investment-card {
    height: 145px;
    border-radius: 8px;
  }

  .all-investments {
    width: 100%;
    max-width: 320px;
  }

  .footer-inner,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .scroll-top-btn {
    right: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-nav-item {
    min-width: 0;
    width: 100%;
    height: 54px;
    padding: 5px 2px;
    border-radius: 12px;
    color: #414141;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
  }

  .mobile-nav-item svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-item span {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-nav-item.active,
  .mobile-nav-item:hover,
  .mobile-nav-main,
  .mobile-nav-main.active,
  .mobile-nav-main:hover {
    color: #fff;
    background: linear-gradient(180deg, var(--orange), #ef5b05);
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 380px) {
  .brand,
  .brand img {
    width: 145px;
    max-width: 145px;
  }

  .brand {
    flex-basis: 145px;
  }

  .login-btn {
    padding: 8px 9px;
    font-size: 9.5px;
  }

  .hero-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .service-selects,
  .section-title,
  .investments,
  .why {
    padding-left: 10px;
    padding-right: 10px;
  }

  .process-box {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .mobile-bottom-nav {
    padding-left: 4px;
    padding-right: 4px;
    gap: 2px;
  }

  .mobile-nav-item {
    height: 52px;
    font-size: 8px;
    border-radius: 10px;
  }

  .mobile-nav-item svg {
    width: 19px;
    height: 19px;
  }
}


/* =========================================================================
   🎯 GURBANEY PREMIUM HEADER & MENÜ KİTAP GİBİ HİZALAMA SİSTEMİ 🚀
   ========================================================================= */
/* =========================================================================
   🎯 GURBANEY PREMIUM HEADER & MENÜ KİTAP GİBİ HİZALAMA SİSTEMİ 🚀
   ========================================================================= */

/* --- 1. ORTAK KESİN TABAN HİZALAMASI (Hem İndex Hem Düzenleyici İçin) --- */
.main-nav .gurbaney-nav-list,
.main-nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;    /* Tüm menü kelimelerini dikeyde ip gibi ortalar */
    justify-content: center !important;  /* Menüleri ortalar */
    gap: 30px !important;              /* Menülerin arasına nizami boşluk */
    margin: 0 !important;
    list-style: none !important;
    flex-wrap: nowrap !important;       /* Asla alt satıra kırdırmaz */
    height: 45px !important;            /* Menü şerit yüksekliğini kitap gibi eşitler */
}

/* Menü Maddeleri */
.main-nav .gurbaney-nav-list .nav-item,
.main-nav ul li {
    position: relative !important;
    display: inline-block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Link Yazıları: Tüm kelimelerin yüksekliklerini ve paddinglerini eşitler */
.main-nav .gurbaney-nav-list .nav-link,
.main-nav ul li a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 15px !important;      /* Kelimelerin yan boşluk nizamı */
    margin: 0 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;          /* Satır yüksekliği inadını kırar */
    height: 35px !important;            /* Kutuları eşitler, kaymayı önler */
    box-sizing: border-box !important;
}

/* --- 2. SADECE DÜZENLEYİCİ SAYFASINA ÖZEL AYARLAR (Ok Butonları İçin) --- */
/* Menünün içinde ok kapsülü varsa, oklar sığsın diye listeyi hafifçe aşağı iter gurbaney */
.main-nav ul:has(.gurbaney-menu-yon-kapsul) {
    padding-top: 22px !important; 
    height: 65px !important;
}

/* OK KUTULARI: Her kelimenin tam üstünde, milimetrik uzaklıkta sabitlenir */
.main-nav .gurbaney-menu-yon-kapsul {
    position: absolute !important;
    top: -24px !important;             /* Okları yazının tam tepesine çiviler */
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    gap: 4px !important;
    z-index: 99999 !important;
    white-space: nowrap !important;
    background: transparent !important;
}

/* 🚨 GURBANEY ÇOKLU MÜKERRER OK ENGELEME KALKANI 🚨 */
/* Eğer bir menü linkinin içine kazara birden fazla ok kapsülü basıldıysa,
   tarayıcı sadece İLK kapsülü gösterir, diğer tüm yığılan fazlalıkları tamamen gizler! */
.main-nav .gurbaney-menu-yon-kapsul ~ .gurbaney-menu-yon-kapsul {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Ok butonlarının boyutlarını kibarlaştırma zırhı */
.main-nav .gurbaney-menu-yon-kapsul button {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    font-size: 7px !important;
    font-weight: bold !important;
    border-radius: 50% !important;     /* Kusursuz yuvarlak boncuklar */
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15) !important;
    cursor: pointer !important;
}

/* Buton Renk Mühürleri */
.main-nav .gurbaney-menu-yon-kapsul button.gurbaney-menu-sol,
.main-nav .gurbaney-menu-yon-kapsul button.gurbaney-menu-sag { background: #0ea5e9 !important; color: #fff !important; }
.main-nav .gurbaney-menu-yon-kapsul button.gurbaney-menu-silme-btn { background: #ef4444 !important; color: #fff !important; }

/* --- 3. DROPDOWN AÇILIR KUTU VE HOVER KALKANI --- */
.main-nav ul.gurbaney-nav-list li > .dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;              /* Kutuyu yazının altından başlatır, üstüne bindirmez! */
    left: 50% !important;
    transform: translateX(-50%) !important; /* Açılır kutuyu da menüye göre ortalar gurbaney */
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    padding: 12px !important;
    z-index: 999999 !important;
    min-width: 240px !important;
}

/* Sadece hover veya show durumunda temizce açılması */
.main-nav ul.gurbaney-nav-list li:hover > .dropdown-menu,
.main-nav ul.gurbaney-nav-list li > .dropdown-menu.show {
    display: block !important;
}

/* Dropdown olan menülere şık aşağı ok eklenmesi */
.main-nav ul.gurbaney-nav-list li:has(.dropdown-menu) > a::after {
    content: "▼" !important;
    font-size: 8px !important;
    display: inline-block !important;
    margin-left: 5px !important;
    transition: transform 0.2s ease !important;
    border: none !important;
}
.main-nav ul.gurbaney-nav-list li:has(.dropdown-menu):hover > a::after {
    transform: rotate(180deg) !important;
}

/* Dropdown'ın içindeki kaçak okları ve fazlalıkları siler */
.dropdown-menu .gurbaney-menu-yon-kapsul {
    display: none !important;
}

/* ========================================================================= */
/* 🎯 GURBANEY %100 ENGELLENEMEZ DROPDOWN GİZLEME VE HOVER MÜHÜRÜ 🚀         */
/* ========================================================================= */

/* 1. FARE ÜSTÜNDE DEĞİLKEN: Kutu etiketinde sinsi bir .show sınıfı yazsa bile tarayıcıda ZORLA gizlenir! */
.main-nav ul li:not(:hover) .dropdown-menu,
.navbar-nav .nav-item:not(:hover) .dropdown-menu,
.gurbaney-index-header-zırhı .dropdown:not(:hover) .dropdown-menu {
    display: none !important;        /* Sayfa ilk açıldığında hep açık kalma inadını strictly bitiren atomik mühür! */
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 2. Temel dropdown kapalı konumu ve lüks beyaz kutu görsel cildi */


/* 3. HOVER KİLİDİ: Sadece ve sadece fareyle kelimenin üzerine gelindiğinde yağ gibi açılır! */
.main-nav ul li:hover .dropdown-menu,
.navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.gurbaney-index-header-zırhı .dropdown:hover .dropdown-menu {
    display: block !important;         /* Sadece hover anında strictly görünür olur gurbaney! */
    opacity: 1 !important;
    visibility: visible !important;
}



.dropdown-menu .dropdown-item:hover {
    background-color: #f1f5f9 !important;
    color: #ff6b00 !important;
    padding-left: 24px !important;     /* Sağa doğru tatlıca milimetrik kayma şovu! */
    border: none !important;
}


/* =========================================================================
   🎯 GURBANEY HERO RESİM VE KART HİZALAMA SİSTEMİ 🚀
   ========================================================================= */
div.select-card img { width: 100% !important; max-width: 100% !important; height: 140px !important; min-height: 140px !important; max-height: 140px !important; object-fit: cover !important; display: block !important; }
.hero-inner { display: flex !important; align-items: center !important; justify-content: space-between !important; width: 100% !important; max-width: 1200px !important; margin: 0 auto !important; padding: 0 20px !important; box-sizing: border-box !important; }
.hero-copy { flex: 0 0 50% !important; max-width: 50% !important; padding-right: 30px !important; box-sizing: border-box !important; }
.hero-buttons { display: flex !important; gap: 15px !important; margin-top: 25px !important; flex-wrap: wrap !important; }


