:root {
  --ink: #0d1d2d;
  --muted: #657280;
  --teal: #0c927d;
  --teal-deep: #087462;
  --red: #dc3434;
  --paper: #f4f6f4;
  --white: #ffffff;
  --line: #d8dfdc;
  --dark: #102737;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body.popup-open {
  overflow: hidden;
  touch-action: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.section-shell {
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 244, .92);
  border-bottom: 1px solid rgba(13, 29, 45, .1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1320px, calc(100% - 42px));
  height: 82px;
  margin: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  height: 60px;
  overflow: hidden;
}

.brand img {
  display: block;
  max-width: 176px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #354656;
  position: relative;
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s;
}

.desktop-nav a:hover:after {
  transform: scaleX(1);
}

.phone-pulse {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0 7px 14px;
  border-left: 1px solid var(--line);
}

.phone-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(220, 52, 52, .3);
  display: grid;
  place-items: center;
  color: var(--red);
  animation: phoneRing 2.1s ease-in-out infinite;
}

.phone-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-copy {
  display: flex;
  flex-direction: column;
}

.phone-copy small {
  font-size: 9px;
  color: #8c5151;
  font-weight: 700;
  letter-spacing: .04em;
}

.phone-copy b {
  font-size: 13px;
  margin-top: 2px;
}

@keyframes phoneRing {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 52, 52, 0);
    transform: rotate(0);
  }

  45% {
    box-shadow: 0 0 0 7px rgba(220, 52, 52, .07);
    transform: rotate(0);
  }

  50% {
    transform: rotate(-7deg);
  }

  55% {
    transform: rotate(7deg);
  }

  60% {
    transform: rotate(0);
  }
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 7px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.quick-contact-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
  background: rgba(6, 18, 27, .34);
  transition: opacity .25s ease, visibility .25s ease;
}

.quick-contact-backdrop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.quick-contact {
  position: relative;
  width: min(460px, 100vw);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  background: #f8faf8;
  padding: max(32px, calc(22px + var(--safe-top))) max(32px, calc(28px + var(--safe-right))) max(28px, calc(22px + var(--safe-bottom))) max(32px, calc(28px + var(--safe-left)));
  border-left: 1px solid rgba(255, 255, 255, .7);
  box-shadow: -24px 0 80px rgba(0, 0, 0, .12);
  animation: sheetIn .35s ease both;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

@keyframes sheetIn {
  from {
    transform: translateX(28px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: max(14px, calc(8px + var(--safe-right)));
  top: max(12px, calc(6px + var(--safe-top)));
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.modal-close svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.popup-logo {
  width: 100%;
  min-height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  margin: 4px 0 24px;
}

.popup-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 78px;
  object-fit: contain;
}

.popup-kicker {
  font: 700 10px/1 "Manrope";
  letter-spacing: .17em;
  color: var(--teal);
  margin-bottom: 26px;
  text-align: center;
}

.quick-contact h2 {
  font: 800 clamp(30px, 4.1vw, 40px)/1.04 "Manrope";
  letter-spacing: -.05em;
  margin: 0;
  max-width: 370px;
}

.quick-contact>p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 18px 0 30px;
  max-width: 370px;
}

.quick-lines {
  border-top: 1px solid var(--line);
}

.quick-lines a {
  display: grid;
  grid-template-columns: minmax(110px, .75fr) 1fr;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.quick-line-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
}

.quick-line-label>span {
  font-size: 10px;
}

.line-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.whatsapp-icon,
.contact-type .whatsapp-icon,
.floating-wa .whatsapp-icon,
.dock-wa .whatsapp-icon {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.quick-lines b {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.quick-lines a:hover b {
  color: var(--teal-deep);
}

.popup-foot {
  margin-top: auto;
  padding-top: 28px;
  font-size: 10px;
  color: #89948f;
  letter-spacing: .08em;
}

.hero {
  min-height: 650px;
  padding: 100px 0 78px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: stretch;
  position: relative;
}

.hero:before {
  content: "24";
  position: absolute;
  right: 330px;
  top: 48px;
  font: 800 clamp(160px, 20vw, 290px)/.8 "Manrope";
  letter-spacing: -.09em;
  color: rgba(13, 29, 45, .025);
  pointer-events: none;
  z-index: -1;
}

.hero-rail {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 18px 4px 0;
}

.hero-rail>span {
  font: 700 10px "Manrope";
  color: var(--teal);
}

.hero-rail p {
  font: 700 9px/1.65 "Manrope";
  letter-spacing: .13em;
  color: #819089;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-copy {
  align-self: center;
  padding-right: 18px;
}

.microline {
  font: 700 10px "Manrope";
  letter-spacing: .14em;
  color: #718079;
  text-transform: uppercase;
  margin: 0 0 34px;
}

.hero h1 {
  font: 800 clamp(56px, 6.8vw, 92px)/.94 "Manrope";
  letter-spacing: -.065em;
  margin: 0;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-bottomline {
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  gap: 28px;
  align-items: end;
}

.hero-bottomline>p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.primary-link {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.primary-link .arrow-icon {
  width: 28px;
  height: 28px;
  padding: 7px;
  background: var(--ink);
  color: #fff;
}

.text-link {
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid #a8b4af;
  padding-bottom: 3px;
}

.hero-index {
  border-left: 1px solid var(--line);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-index a {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-areas: "no title""no meta";
  gap: 3px 11px;
  padding: 20px 0 20px 28px;
  border-bottom: 1px solid var(--line);
  transition: .25s;
}

.hero-index a:first-child {
  border-top: 1px solid var(--line);
}

.hero-index span {
  grid-area: no;
  font: 700 9px "Manrope";
  color: var(--teal);
  padding-top: 3px;
}

.hero-index b {
  grid-area: title;
  font: 700 17px "Manrope";
  letter-spacing: -.02em;
}

.hero-index small {
  grid-area: meta;
  color: var(--muted);
  font-size: 10px;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}

.signal-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.signal-inner span {
  font-size: 11px;
  color: var(--muted);
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.signal-inner span:first-child {
  padding-left: 0;
  border-left: 0;
}

.signal-inner b {
  font: 800 20px "Manrope";
  color: var(--ink);
  margin-right: 6px;
}

.section-no {
  font: 700 10px "Manrope";
  color: var(--teal);
  letter-spacing: .12em;
}

.section-kicker {
  font: 700 10px "Manrope";
  letter-spacing: .16em;
  color: #718079;
  margin: 0 0 13px;
}

.services {
  padding: 120px 0 130px;
}

.section-intro {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  margin-bottom: 70px;
}

.section-intro h2 {
  font: 800 clamp(44px, 5.2vw, 70px)/.98 "Manrope";
  letter-spacing: -.055em;
  margin: 0;
}

.section-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 28px 0 0;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(230px, .8fr) 1.25fr auto;
  gap: 26px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: .3s;
}

.service-row:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: .35s;
}

.service-row h3 {
  font: 700 clamp(24px, 3vw, 36px)/1 "Manrope";
  letter-spacing: -.04em;
  margin: 0;
  transition: .25s;
}

.service-row p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 430px;
}

.service-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.service-action .arrow-icon {
  width: 16px;
  height: 16px;
}

.service-no {
  font: 700 9px "Manrope";
  color: #8a9892;
}

/* Hizmet satırlarının başlıkları aynı dikey eksende kalsın. */
.indent-a,
.indent-b {
  margin-left: 0;
}

.about-wrap {
  background: var(--dark);
  color: #fff;
}

.about {
  min-height: 480px;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 110px 1.25fr .85fr;
  gap: 54px;
  align-items: center;
}

.about-marker {
  align-self: stretch;
  border-right: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 26px;
}

.about-marker span {
  font: 700 10px "Manrope";
  color: #72d5c4;
}

.about-marker small {
  font: 700 9px "Manrope";
  letter-spacing: .15em;
  color: #81949f;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-statement h2 {
  font: 800 clamp(40px, 5vw, 60px)/1.02 "Manrope";
  letter-spacing: -.05em;
  margin: 0;
}

.about-statement h2 em {
  font-style: normal;
  color: #72d5c4;
}

.about-statement p {
  max-width: 560px;
  color: #aebbc2;
  line-height: 1.75;
  font-size: 14px;
  margin: 20px 0 0;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.about-list>div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.about-list span {
  font: 700 9px "Manrope";
  color: #72d5c4;
  flex: 0 0 auto;
}

.about-list b {
  font-size: 13px;
  font-weight: 600;
}

.reviews {
  padding: 130px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 270px;
  gap: 46px;
  align-items: stretch;
}

.review-label {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 26px;
}

.review-label .section-kicker {
  margin-top: 16px;
}

.review-count {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.review-count b {
  font: 800 46px "Manrope";
  letter-spacing: -.06em;
}

.review-count span,
.review-count small {
  font-size: 11px;
  color: #84918c;
}

.review-main {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
}

.review-source {
  font: 700 10px "Manrope";
  letter-spacing: .14em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.review-main blockquote {
  font: 600 clamp(28px, 3.6vw, 48px)/1.25 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
  max-width: 790px;
}

.review-main blockquote:before {
  content: "“";
  color: var(--teal);
  margin-right: 4px;
}

.review-main blockquote:after {
  content: "”";
  color: var(--teal);
  margin-left: 4px;
}

.review-person-line {
  margin-top: auto;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.review-person-line>div:first-child {
  display: flex;
  flex-direction: column;
}

.review-person-line b {
  font-size: 13px;
}

.review-person-line small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}

.review-nav {
  display: flex;
  gap: 8px;
}

.review-nav button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.review-nav button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-progress {
  height: 2px;
  background: #dbe2de;
  margin-top: 20px;
}

.review-progress span {
  display: block;
  height: 100%;
  background: var(--teal);
  width: 6.25%;
  transition: .45s;
}

.review-queue {
  border-top: 1px solid var(--line);
  align-self: end;
}

.review-queue button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
}

.review-queue button span {
  font: 700 9px "Manrope";
  color: #9aa69f;
}

.review-queue button b {
  font-size: 11px;
  font-weight: 600;
}

.contact-section {
  padding: 110px 0 95px;
}

.contact-rule {
  height: 1px;
  background: var(--ink);
  margin-bottom: 55px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: end;
}

.contact-layout h2 {
  font: 800 clamp(42px, 5.4vw, 72px)/.98 "Manrope";
  letter-spacing: -.055em;
  margin: 0;
}

.contact-layout h2 em {
  font-style: normal;
  color: var(--teal);
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-type svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--teal);
}

.contact-details small {
  font-size: 9px;
  color: var(--muted);
}

.contact-details b {
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 36px 0;
}

.footer-shell {
  width: min(1220px, calc(100% - 56px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand-footer {
  height: 52px;
}

.brand-footer img {
  max-height: 48px;
  max-width: 160px;
}

.footer-shell>p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.footer-meta {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
  font-size: 9px;
  color: #89958f;
}

.footer-meta a,
.footer-link-btn {
  font-size: 9px;
  color: #89958f;
  text-decoration: none;
}

.footer-link-btn {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-meta a:hover,
.footer-link-btn:hover {
  color: var(--teal-deep, #0c927d);
}

.floating-wa {
  position: fixed;
  right: max(18px, calc(12px + var(--safe-right)));
  bottom: max(18px, calc(12px + var(--safe-bottom)));
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0c927d;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(13, 29, 45, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-wa svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-contact-dock {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: max(18px, calc(12px + var(--safe-right)));
  bottom: max(88px, calc(82px + var(--safe-bottom)));
  z-index: 60;
  width: min(340px, calc(100vw - 36px));
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 44px rgba(13, 29, 45, .2);
  border: 1px solid rgba(13, 29, 45, .08);
  display: none;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-consent p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #45524d;
}

.cookie-consent p a {
  color: #0c927d;
  font-weight: 600;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, opacity .15s ease;
}

.cookie-btn-ghost {
  background: transparent;
  border-color: rgba(13, 29, 45, .18);
  color: #45524d;
}

.cookie-btn-solid {
  background: #0c927d;
  color: #fff;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  opacity: .92;
}

@media(max-width: 720px) {
  .cookie-consent {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: calc(78px + var(--safe-bottom));
    padding: 14px 16px;
    gap: 10px;
    border-radius: 14px;
  }

  .cookie-consent p {
    font-size: 12px;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    padding: 9px 12px;
    font-size: 12px;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero-index a:hover {
    padding-left: 36px;
    background: rgba(255, 255, 255, .35);
  }

  .service-row:hover:before {
    width: 100%;
  }

  .service-row:hover h3 {
    transform: translateX(7px);
  }

  .review-nav button:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .review-queue button:hover b {
    color: var(--teal-deep);
  }

  .floating-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(13, 29, 45, .23);
  }
}

@media(max-width: 1050px) {
  .nav-shell {
    grid-template-columns: 170px 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .phone-pulse {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 56px 1fr;
  }

  .hero-index {
    grid-column: 2;
    border-left: 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-index a {
    padding-left: 0;
  }

  .hero:before {
    right: 0;
  }

  .section-intro,
  .contact-layout {
    grid-template-columns: 60px 1fr;
  }

  .section-copy,
  .contact-details {
    grid-column: 2;
  }

  .review-grid {
    grid-template-columns: 130px 1fr;
  }

  .review-queue {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .review-queue button {
    border-right: 1px solid var(--line);
  }
}

@media(max-width: 720px) {
  body {
    padding-bottom: calc(72px + var(--safe-bottom));
  }

  .section-shell {
    width: calc(100% - 28px);
  }

  .site-header {
    background: rgba(244, 246, 244, .96);
  }

  .nav-shell {
    width: calc(100% - 24px);
    height: 66px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand {
    height: 50px;
    min-width: 0;
  }

  .brand img {
    max-width: 148px;
    max-height: 46px;
  }

  .phone-pulse {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-menu {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 66px;
    background: rgba(248, 250, 248, .985);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(13, 29, 45, .12);
    padding: 8px;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 12px 11px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-call {
    gap: 10px;
    color: var(--teal-deep);
  }

  .mobile-menu-call svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


  .quick-contact-backdrop {
    background: rgba(6, 18, 27, .46);
    align-items: flex-end;
  }

  .quick-contact {
    --popup-pad-left: max(18px, calc(14px + var(--safe-left)));
    --popup-pad-right: max(18px, calc(14px + var(--safe-right)));
    width: 100%;
    height: auto;
    max-height: min(92vh, 780px);
    max-height: min(92dvh, 780px);
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-radius: 24px 24px 0 0;
    padding: 22px var(--popup-pad-right) max(20px, calc(14px + var(--safe-bottom))) var(--popup-pad-left);
    box-shadow: 0 -18px 60px rgba(0, 0, 0, .18);
    animation: sheetUp .32s ease both;
  }

  @keyframes sheetUp {
    from {
      transform: translateY(24px);
      opacity: 0;
    }

    to {
      transform: none;
      opacity: 1;
    }
  }

  .modal-close {
    right: max(12px, calc(6px + var(--safe-right)));
    top: 12px;
    width: 44px;
    height: 44px;
  }

  .popup-logo {
    /* Parent paddinginden bağımsız, popup/ekranın geometrik merkezine oturur. */
    width: auto;
    min-height: 66px;
    margin: 2px calc(0px - var(--popup-pad-right)) 12px calc(0px - var(--popup-pad-left));
    padding-inline: 52px;
    justify-content: center;
    align-items: center;
  }

  .popup-logo img {
    display: block;
    width: min(166px, 100%);
    max-width: 166px;
    max-height: 58px;
    margin-inline: auto;
    object-position: center;
  }

  .popup-kicker {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .quick-contact h2 {
    font-size: clamp(28px, 8.3vw, 36px);
    line-height: 1.04;
    text-align: center;
    max-width: 100%;
  }

  .quick-contact>p {
    font-size: 13px;
    line-height: 1.58;
    text-align: center;
    margin: 14px auto 22px;
    max-width: 330px;
  }

  .quick-lines a {
    grid-template-columns: minmax(88px, .72fr) minmax(0, 1fr);
    gap: 10px;
    min-height: 54px;
    padding: 9px 2px;
  }

  .quick-lines b {
    min-width: 0;
    font-size: clamp(10.5px, 3.35vw, 12px);
    text-align: right;
    overflow-wrap: anywhere;
  }

  .popup-foot {
    text-align: center;
    padding-top: 20px;
  }

  .hero {
    padding: 48px 0 48px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-rail {
    display: none;
  }

  .hero-copy {
    padding: 0;
  }

  .microline {
    margin-bottom: 20px;
    font-size: 8px;
    line-height: 1.7;
    letter-spacing: .11em;
  }

  .hero h1 {
    font-size: clamp(43px, 13.2vw, 64px);
    line-height: .98;
    letter-spacing: -.058em;
  }

  .hero-bottomline {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
  }

  .hero-bottomline>p {
    font-size: 14px;
    line-height: 1.65;
  }

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

  .primary-link {
    width: 100%;
    min-height: 52px;
    padding: 0 8px 0 16px;
    justify-content: space-between;
    background: var(--ink);
    color: #fff;
  }

  .primary-link .arrow-icon {
    width: 38px;
    height: 38px;
    padding: 10px;
    background: rgba(255, 255, 255, .1);
  }

  .text-link {
    min-height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 0;
  }

  .hero-index {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .hero-index a {
    min-height: 64px;
    padding: 14px 0;
  }

  .hero:before {
    font-size: 150px;
    right: -14px;
    top: 24px;
  }

  .signal-inner {
    grid-template-columns: 1fr 1fr;
  }

  .signal-inner span {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 14px 8px 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-inner span:nth-child(even) {
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }

  .signal-inner b {
    font-size: 18px;
  }

  .services {
    padding: 74px 0;
  }

  .section-intro,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-intro>.section-no,
  .contact-layout>.section-no {
    display: none;
  }

  .section-copy,
  .contact-details {
    grid-column: auto;
  }

  .section-intro h2 {
    font-size: clamp(38px, 10.5vw, 50px);
  }

  .section-copy {
    margin-top: 2px;
  }

  .service-row {
    grid-template-columns: 30px minmax(0, 1fr);
    grid-template-areas: "no title""no copy""no link";
    gap: 8px 10px;
    min-height: 0;
    padding: 22px 0;
  }

  .service-row .service-no {
    grid-area: no;
  }

  .service-row h3 {
    grid-area: title;
    font-size: 26px;
  }

  .service-row p {
    grid-area: copy;
    font-size: 12px;
    line-height: 1.6;
  }

  .service-action {
    grid-area: link;
    justify-content: flex-start;
    width: fit-content;
    min-height: 44px;
    margin-top: 0;
  }

  .indent-a,
  .indent-b {
    margin-left: 0;
  }

  .about {
    padding: 66px 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-marker {
    display: none;
  }

  .about-statement h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .about-statement p {
    font-size: 13px;
  }

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

  .reviews {
    padding: 76px 0;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .review-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .review-label .section-no {
    display: none;
  }

  .review-label .section-kicker {
    margin: 0;
  }

  .review-count {
    margin-top: 0;
  }

  .review-count b {
    font-size: 38px;
  }

  .review-main {
    min-height: 350px;
  }

  .review-source {
    margin-bottom: 24px;
  }

  .review-main blockquote {
    font-size: clamp(25px, 7.4vw, 32px);
    line-height: 1.28;
  }

  .review-person-line {
    padding-top: 26px;
    gap: 12px;
  }

  .review-person-line>div:first-child {
    min-width: 0;
  }

  .review-person-line small {
    line-height: 1.4;
  }

  .review-nav button {
    width: 48px;
    height: 48px;
  }

  .review-queue {
    display: none;
  }

  .contact-section {
    padding: 72px 0 68px;
  }

  .contact-rule {
    margin-bottom: 38px;
  }

  .contact-layout h2 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .contact-details a {
    min-height: 62px;
  }

  .contact-details b {
    font-size: 12px;
  }

  .site-footer {
    padding: 30px 0;
  }

  .footer-shell {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .footer-meta {
    grid-column: auto;
    flex-direction: column;
    gap: 7px;
  }

  .floating-wa {
    display: none;
  }

  .mobile-contact-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 72px;
    gap: 8px;
    padding: 8px max(10px, var(--safe-right)) calc(8px + var(--safe-bottom)) max(10px, var(--safe-left));
    background: rgba(248, 250, 248, .96);
    border-top: 1px solid rgba(13, 29, 45, .1);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-dock a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .dock-call {
    gap: 9px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .dock-call svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dock-wa {
    background: #0c927d;
    color: #fff;
  }

  .dock-wa svg {
    width: 23px;
    height: 23px;
    display: block;
  }
}

@media(max-width: 380px) {
  .quick-contact {
    --popup-pad-left: max(14px, calc(10px + var(--safe-left)));
    --popup-pad-right: max(14px, calc(10px + var(--safe-right)));
    border-radius: 20px 20px 0 0;
    padding-left: var(--popup-pad-left);
    padding-right: var(--popup-pad-right);
  }

  .quick-line-label>span {
    font-size: 9px;
  }

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

  .contact-details b {
    font-size: 11px;
  }
}

@media(max-width: 340px) {
  .quick-contact h2 {
    font-size: 25px;
  }

  .quick-lines a {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
    padding: 8px 2px;
  }

  .quick-lines b {
    text-align: left;
    padding-left: 26px;
  }
}

@media(max-height: 680px) {
  .quick-contact {
    padding-top: max(14px, calc(10px + var(--safe-top)));
    padding-bottom: max(14px, calc(10px + var(--safe-bottom)));
  }

  .popup-logo {
    min-height: 46px;
    margin-top: 0;
    margin-bottom: 7px;
  }

  .popup-logo img {
    max-width: 142px;
    max-height: 44px;
  }

  .popup-kicker {
    margin-bottom: 10px;
  }

  .quick-contact h2 {
    font-size: clamp(24px, 5.8vw, 31px);
  }

  .quick-contact>p {
    margin-top: 10px;
    margin-bottom: 14px;
    line-height: 1.48;
  }

  .quick-lines a {
    min-height: 48px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .popup-foot {
    padding-top: 12px;
  }
}

@media(max-width: 900px) and (max-height: 520px) {
  .quick-contact-backdrop {
    align-items: stretch;
  }

  .quick-contact {
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border-top: 0;
  }
}

@media(prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ============================================
   KURUMSAL BİLGİLER
   ============================================ */
.corporate {
  padding-bottom: 96px;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.corporate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}

.corporate-kicker {
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 10px;
}

.corporate-card>b {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.corporate-card dl {
  margin: 0;
}

.corporate-card dl>div+div {
  margin-top: 14px;
}

.corporate-card dt {
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.corporate-card dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #37423d;
  word-break: break-word;
}

.corporate-card dd a {
  color: var(--teal-deep);
  text-decoration: none;
  font-weight: 600;
}

.corporate-card dd a:hover {
  text-decoration: underline;
}

.corporate-note {
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
}

.corporate-note a {
  color: var(--teal-deep);
  font-weight: 600;
}

.footer-legal {
  margin: 18px 0 22px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}

.footer-legal p {
  margin: 0 0 3px;
}

.footer-legal b {
  color: var(--ink);
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .corporate-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .corporate-card {
    padding: 22px 20px;
  }
}
