:root {
  --ink: #172033;
  --muted: #5d687a;
  --line: #dce3ee;
  --soft: #f5f7fb;
  --brand: #f97316;
  --brand-dark: #c2410c;
  --green: #16a34a;
  --navy: #0f1f3a;
  --white: #fff;
  --shadow: 0 16px 44px rgba(15, 31, 58, .12);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
:target {
  scroll-margin-top: 118px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: .7rem 1rem;
  z-index: 10;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 320px;
}
.brand-logo {
  display: block;
  width: 156px;
  height: auto;
  flex: 0 0 156px;
  border-radius: 6px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0;
}
.brand small, .muted, .trust-line { color: var(--muted); }
.brand span:last-child { display: grid; line-height: 1.2; }
.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(.65rem, 1.6vw, 1.3rem);
  align-items: center;
  font-size: .95rem;
}
.site-nav a, .site-footer a { text-decoration: none; color: var(--muted); }
.site-nav a:hover, .site-footer a:hover { color: var(--brand-dark); }
.header-cta, .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .78rem 1.05rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.header-cta, .btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(22, 163, 74, .24);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}
.nav-toggle { display: none; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 840px);
  align-items: end;
  min-height: clamp(700px, 82vh, 800px);
  padding: clamp(8rem, 14vw, 13rem) clamp(1rem, 6vw, 5rem) clamp(2.5rem, 7vw, 5rem);
  background:
    url("/assets/hero-istanbul-skyline.webp") center center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 18, 37, .74) 0%, rgba(8, 18, 37, .58) 28%, rgba(8, 18, 37, .18) 42%, rgba(8, 18, 37, 0) 58%);
}
.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}
.hero-content {
  align-self: end;
}
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--brand-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
}
h1, h2, h3 { line-height: 1.14; letter-spacing: 0; }
h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 5rem);
}
h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 3rem); }
h3 { margin: 0 0 .55rem; font-size: 1.08rem; }
.hero .eyebrow,
.hero h1,
.hero-text {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .24);
}
.hero-text { max-width: 760px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(255, 255, 255, .92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0 1rem; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  max-width: 920px;
  margin: 1.25rem 0;
}
.trust-bar > span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 48px;
  padding: .72rem .85rem;
  border: 1px solid rgba(15, 31, 58, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  font-weight: 800;
  font-size: .92rem;
}
.icon-check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.icon-check:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.disclaimer-note {
  max-width: 720px;
  padding: 1rem 1.15rem;
  border: 1px solid #fde68a;
  border-radius: 8px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  color: #713f12;
  font-size: .95rem;
  box-shadow: 0 10px 26px rgba(120, 53, 15, .08);
}
.independent-notice {
  padding: 1rem clamp(1rem, 6vw, 5rem);
  background: #fffbeb;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
}
.independent-notice p {
  max-width: 1040px;
  margin: 0 auto;
  color: #713f12;
  font-weight: 700;
}
.hero-panel {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 31, 58, .78), rgba(15, 31, 58, .88)),
    linear-gradient(135deg, #263c66, #0f1f3a);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 2rem;
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
}
.status-card {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
}
.status-card span { color: #fed7aa; font-weight: 800; }
.status-card strong { display: block; margin: .35rem 0; font-size: 1.45rem; }
.mini-grid {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  z-index: 1;
}
.mini-grid span {
  padding: .8rem;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 5rem);
}
.section > p, .section-head p, .intro-section > p { max-width: 900px; }
.section-head { margin-bottom: 1.5rem; }
.band { background: var(--soft); }
.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-section p { margin-bottom: 0; }
.review-panel {
  min-width: 300px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  box-shadow: var(--shadow);
}
.stars {
  margin: 0 0 1rem;
  color: #f59e0b;
  font-weight: 900;
  letter-spacing: .04em;
}
.cards, .item-grid, .steps {
  display: grid;
  gap: 1rem;
}
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards article, .faq-list details, .request-form, .item-grid span, .steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 31, 58, .05);
}
.cards article h3 a {
  color: inherit;
  text-decoration: none;
}
.cards article h3 a:hover {
  color: var(--brand-dark);
}
.item-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.item-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.item-grid span { font-weight: 800; }
.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps li { list-style: none; position: relative; padding-top: 3.2rem; }
.steps li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}
.premium-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.premium-steps li {
  padding-top: 1.15rem;
  min-height: 240px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.premium-steps li:before { display: none; }
.step-number {
  display: block;
  margin-bottom: 2.5rem;
  color: rgba(249, 115, 22, .34);
  font-size: 3rem;
  line-height: .85;
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}
.check-list li {
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.check-list li:before { content: "Ã¢Å“â€œ "; color: var(--green); font-weight: 900; }
.link-chips { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0; }
.link-chips a {
  padding: .7rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.faq-list { display: grid; gap: .75rem; }
summary { cursor: pointer; font-weight: 900; }
.customer-stories-section {
  background: linear-gradient(135deg, #fff, #fff7ed);
}
.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .8rem;
  padding: 1.1rem clamp(1rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .65rem .8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}
.trust-ribbon .stars {
  color: #f59e0b;
  letter-spacing: .03em;
}
.customer-stories-news {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-news-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
.story-news-window {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}
.story-news-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  touch-action: pan-y;
}
.story-news-card {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(280px, .42fr);
  gap: 1rem;
  flex: 0 0 100%;
  min-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(.8rem, 2vw, 1rem);
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 42px rgba(15, 31, 58, .08);
  overflow: hidden;
}
.story-news-image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--white);
  border: 1px solid var(--line);
}
.story-news-image img {
  width: 100%;
  height: clamp(260px, 36vw, 360px);
  object-fit: contain;
  object-position: center center;
  display: block;
}
.story-feature-column {
  display: grid;
  align-content: start;
  gap: .8rem;
}
.story-image-title {
  display: grid;
  gap: .35rem;
  color: var(--navy);
  text-decoration: none;
}
.story-image-title strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.15;
}
.story-image-title span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.story-full-link {
  justify-self: start;
}
.story-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 900;
}
.story-news-stars {
  color: #f59e0b;
  letter-spacing: .06em;
}
.story-review-panel {
  display: grid;
  align-content: start;
  gap: .8rem;
  padding: clamp(.65rem, 2vw, 1rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 31, 58, .08);
}
.story-review-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}
.story-review-screenshot {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.story-review-screenshot img {
  width: 100%;
  height: clamp(170px, 20vw, 260px);
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #fff;
}
.story-review-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.story-review-link:hover {
  color: var(--brand-dark);
}
.story-feedback-card {
  display: grid;
  gap: .65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.story-feedback-card blockquote,
.story-feedback-card p {
  margin: 0;
}
.story-feedback-card cite {
  color: var(--muted);
  font-weight: 800;
}
.story-news-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  max-width: max-content;
  margin: 1rem auto 0;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 22px rgba(15, 31, 58, .08);
}
.story-news-dots .story-dot {
  min-width: 34px;
  height: 34px;
  padding: 0 .65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.story-news-dots .story-dot.is-active {
  min-width: 38px;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}
.story-news-arrow {
  top: calc(50% - 18px);
  width: 38px;
  height: 38px;
  background: rgba(8,18,37,.68);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.story-news-arrow.story-arrow-prev { left: .75rem; }
.story-news-arrow.story-arrow-next { right: .75rem; }
.story-news-arrow:disabled {
  opacity: .45;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem clamp(1rem, 6vw, 5rem) 0;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
}
.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}
.story-detail-page {
  background: #fff;
}
.story-detail-hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 6vw, 5rem) clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, #f8fafc, #fff7ed);
}
.story-detail-hero h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 4.8vw, 4.65rem);
  line-height: 1.05;
}
.story-detail-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.story-detail-review {
  max-width: 1040px;
  margin: clamp(1.2rem, 3vw, 2rem) auto 0;
}
.story-detail-image {
  max-width: 1040px;
  margin: clamp(1.2rem, 3vw, 2rem) auto 0;
  padding: 0 clamp(1rem, 3vw, 0rem);
}
.story-detail-image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.story-detail-image figcaption {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.story-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 6vw, 5rem);
}
.story-detail-body {
  max-width: 820px;
  line-height: 1.78;
}
.story-detail-body h2 {
  margin-top: 2rem;
}
.story-detail-body blockquote {
  margin: 1.1rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: #fff7ed;
  color: #713f12;
  font-weight: 800;
}
.process-timeline,
.story-photo-gallery,
.story-help-cta {
  max-width: 1040px;
  margin: clamp(1.2rem, 4vw, 2.5rem) auto;
  padding: 0 clamp(1rem, 6vw, 5rem);
}
.process-timeline h2,
.story-photo-gallery h2 {
  margin-bottom: 1rem;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: timeline;
}
.timeline-list li {
  counter-increment: timeline;
  display: grid;
  gap: .45rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 31, 58, .06);
  font-weight: 900;
}
.timeline-list li::before {
  content: counter(timeline);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .9rem;
}
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.photo-gallery-grid figure {
  margin: 0;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 31, 58, .06);
}
.photo-gallery-grid img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #fff;
  border-radius: 6px;
}
.photo-gallery-grid figcaption {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.story-help-cta {
  display: grid;
  gap: 1rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding-top: clamp(1.5rem, 4vw, 2.4rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.4rem);
}
.story-help-cta h2 {
  margin: 0;
  max-width: 780px;
}
.story-help-cta p {
  margin: 0;
  max-width: 820px;
  color: #dbe4f0;
}
.story-help-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: .2rem 0;
  list-style: none;
}
.story-help-list li {
  padding: .48rem .7rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.story-final-outcome {
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
  color: #14532d;
}
.story-detail-review-bottom {
  display: grid;
  margin: 1.4rem 0;
}
.faq-section,
.related-links {
  display: grid;
  gap: 1rem;
  max-width: 1040px;
  margin: 2rem auto 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #f8fafc;
}
.faq-section summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}
.faq-section p {
  margin: .75rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}
.related-links {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.related-links h2 {
  grid-column: 1 / -1;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
}
.related-links a:hover {
  background: var(--navy);
  color: #fff;
}
.customer-story-index {
  background: #fff;
}
.story-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1040px;
  margin: 0 auto;
}
.story-index-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.story-index-image {
  position: relative;
  display: block;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
  background: #f8fafc;
}
.story-index-card .btn {
  margin-top: .8rem;
}
.story-category {
  color: var(--brand-dark);
  font-size: .86rem;
  font-weight: 900;
}
.story-index-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #fff;
}
.story-index-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,37,0) 35%, rgba(8,18,37,.82) 100%);
}
.story-index-image span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: .7rem .8rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  background: rgba(8,18,37,.62);
  font-weight: 900;
  line-height: 1.35;
}
.happy-reviews {
  background: linear-gradient(135deg, #f8fafc, #fff7ed);
}
.maps-review-card {
  display: grid;
  gap: .8rem;
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.maps-review-card:hover {
  transform: translateY(-1px);
}
.maps-review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
}
.maps-review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #0f1f3a);
  color: #fff;
  font-weight: 900;
}
.maps-review-head strong,
.maps-review-head span {
  display: block;
}
.maps-review-head span {
  color: var(--muted);
  font-size: .9rem;
}
.maps-review-menu {
  color: #111827 !important;
  font-size: 1.5rem !important;
  line-height: 1;
}
.maps-review-stars {
  color: #f59e0b;
  font-weight: 900;
}
.maps-review-stars span {
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.maps-review-card p {
  margin: 0;
}
.review-screenshot-slot {
  display: grid;
  gap: .9rem;
  max-width: 620px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow);
}
.review-screenshot-slot p {
  margin: 0;
}
.review-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}
.review-screenshot-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.google-review-card img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center center;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.story-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}
.story-detail-cta {
  margin: 0;
}
.story-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  outline: none;
}
.story-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  touch-action: pan-y;
}
.story-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: .2rem;
}
.story-card {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.google-review-card {
  display: grid;
  gap: .85rem;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(135deg, #fff, #fffbeb);
  border-bottom: 1px solid var(--line);
}
.google-review-card:hover .review-link {
  color: var(--brand-dark);
}
.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.review-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: .08em;
}
.review-badge {
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: .42rem .7rem;
  color: #713f12;
  background: #fffbeb;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.google-review-card blockquote {
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}
.google-review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}
.review-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--navy);
  font-weight: 900;
}
.review-link svg {
  width: 18px;
  height: 18px;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  padding: clamp(1.1rem, 3vw, 2rem);
}
.story-label {
  display: inline-block;
  margin-bottom: .75rem;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-facts {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #f8fafc;
}
.story-facts dl {
  display: grid;
  gap: .85rem;
  margin: 0;
}
.story-facts div {
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
.story-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.story-facts dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.story-facts dd {
  margin: .18rem 0 0;
  color: var(--navy);
  font-weight: 900;
}
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}
.support-tags span {
  border-radius: 999px;
  padding: .42rem .58rem;
  background: #fff7ed;
  color: #7c2d12;
  font-size: .78rem;
  font-weight: 800;
}
.story-content {
  max-width: 760px;
}
.story-content h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}
.story-subtitle {
  margin: .65rem 0 1.25rem;
  color: var(--muted);
  font-size: 1.04rem;
}
.story-body {
  position: relative;
  line-height: 1.78;
}
.story-body p {
  margin: 0 0 1rem;
}
.story-body blockquote {
  margin: 1.1rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: #fff7ed;
  color: #713f12;
  font-weight: 800;
}
.story-body.is-collapsed {
  max-height: 34rem;
  overflow: hidden;
}
.story-body.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7rem;
  background: linear-gradient(rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.story-toggle {
  min-height: 44px;
  margin: .65rem 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.story-toggle:hover {
  border-color: #fed7aa;
  color: var(--brand-dark);
}
.story-cta {
  margin-top: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #fff7ed);
}
.story-cta p {
  color: var(--muted);
}
.story-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(15, 31, 58, .12);
  cursor: pointer;
}
.story-arrow svg {
  width: 22px;
  height: 22px;
}
.story-arrow-prev { left: -1.2rem; }
.story-arrow-next { right: -1.2rem; }
.story-arrow:disabled {
  opacity: .42;
  cursor: not-allowed;
}
.story-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}
.story-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}
.story-dot.is-active {
  width: 28px;
  background: var(--brand);
}
.visual-placeholders {
  background: linear-gradient(135deg, #fff, #f8fafc);
}
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.image-placeholder {
  min-height: 170px;
  display: grid;
  place-items: end start;
  padding: 1rem;
  border: 1px dashed rgba(15, 31, 58, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 31, 58, .08), rgba(249, 115, 22, .12)),
    repeating-linear-gradient(45deg, rgba(15, 31, 58, .04) 0, rgba(15, 31, 58, .04) 10px, transparent 10px, transparent 20px);
  color: var(--navy);
  font-weight: 900;
}
.feature-cards article {
  min-height: 230px;
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--brand-dark);
  font-weight: 900;
  border: 1px solid #fed7aa;
}
.form-section { background: linear-gradient(135deg, #f8fafc, #fff7ed); }
.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
}
label { display: grid; gap: .4rem; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: .75rem;
  font: inherit;
  background: var(--white);
}
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.file-note {
  border: 1px dashed #f59e0b;
  border-radius: 8px;
  background: #fffbeb;
  color: #713f12;
}
.final-cta {
  text-align: center;
  background: var(--navy);
  color: var(--white);
}
.final-cta p { margin-left: auto; margin-right: auto; max-width: 760px; color: #dbe4f0; }
.final-cta .hero-actions { justify-content: center; }
.service-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(30, 41, 59, .88)), url("/assets/hero-istanbul-skyline.webp") center center / cover no-repeat;
  color: #fff;
  padding: clamp(76px, 10vw, 132px) clamp(16px, 5vw, 72px);
}
.service-hero > div {
  width: min(960px, 100%);
}
.service-hero h1 {
  margin: .35rem 0 1rem;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: 0;
}
.service-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.75;
  font-weight: 700;
}
.notice {
  border-left: 5px solid var(--brand);
  border-radius: 8px;
  background: #fff7ed;
  padding: 1rem 1.1rem;
  color: #7c2d12;
}
.story-copy {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.85;
}
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-link-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: .7rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  padding: 1.1rem;
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  transition: transform .2s ease, border-color .2s ease;
}
.service-link-card:hover {
  transform: translateY(-3px);
  border-color: #fb923c;
}
.service-link-card strong {
  font-size: 1.05rem;
  line-height: 1.35;
}
.service-link-card span,
.service-link-card em {
  color: var(--muted);
  font-size: .92rem;
  font-style: normal;
  line-height: 1.55;
  font-weight: 700;
}
.service-link-card span.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff7ed;
  color: #ea580c;
  font-size: .78rem;
  font-weight: 950;
}
.photo-gallery-grid button {
  display: block;
  width: 100%;
  cursor: zoom-in;
  border: 0;
  background: transparent;
  padding: 0;
}
.photo-gallery-grid img {
  object-fit: cover;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, .84);
  padding: 1rem;
}
.gallery-modal[hidden] {
  display: none;
}
.gallery-modal img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.gallery-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  padding: 1rem;
  color: #7c2d12;
  line-height: 1.55;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: .2rem;
}
.form-success {
  margin: 0;
  border-radius: 8px;
  background: #dcfce7;
  padding: 1rem;
  color: #166534;
  font-weight: 800;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem clamp(1rem, 6vw, 5rem);
  background: #081225;
  color: var(--white);
}
.site-footer h2, .site-footer h3 { margin-top: 0; }
.site-footer div { display: grid; align-content: start; gap: .45rem; }
.footer-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #cbd5e1;
  font-size: .92rem;
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 8px;
    padding: .65rem .9rem;
    font-weight: 800;
  }
  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: .75rem;
  }
  .site-nav.is-open { display: grid; }
  .split { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: minmax(0, 840px);
    min-height: clamp(700px, 82vh, 800px);
    background-position: center center;
  }
  .trust-bar, .cards.four, .cards.three, .item-grid, .item-grid.compact, .steps, .premium-steps, .placeholder-grid, .site-footer { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-detail-layout { grid-template-columns: 1fr; }
  .story-news-card { grid-template-columns: 1fr; }
  .story-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-screenshot-grid { grid-template-columns: 1fr; }
  .trust-ribbon { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-news-image img { min-height: 280px; max-height: 440px; }
  .story-content { max-width: none; }
  .story-arrow-prev { left: .35rem; }
  .story-arrow-next { right: .35rem; }
  .reviews-section { grid-template-columns: 1fr; }
  .review-panel { min-width: 0; }
}
@media (max-width: 640px) {
  .brand { min-width: 0; }
  .brand-logo {
    width: 128px;
    flex-basis: 128px;
  }
  .brand small { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 720px;
    background-position: center center;
    padding-top: 9rem;
  }
  .trust-bar, .hero-actions, .request-form, .cards.four, .cards.three, .item-grid, .item-grid.compact, .steps, .premium-steps, .placeholder-grid, .site-footer { grid-template-columns: 1fr; }
  .trust-ribbon { grid-template-columns: 1fr; }
  .request-form { display: grid; }
  .site-footer { display: grid; }
  .hero-panel { min-height: 360px; padding: 1rem; }
  .mini-grid { left: 1rem; right: 1rem; bottom: 1rem; }
  .btn, .header-cta { width: 100%; }
  .customer-stories-section { padding-left: .85rem; padding-right: .85rem; }
  .story-card { border-radius: 8px; }
  .story-grid { padding: 1rem; }
  .story-arrow {
    width: 38px;
    height: 38px;
  }
  .story-arrow-prev { left: .15rem; }
  .story-arrow-next { right: .15rem; }
  .story-body.is-collapsed { max-height: 38rem; }
  .story-news-actions,
  .story-next-links {
    display: grid;
  }
  .story-news-card { padding: .7rem; }
  .story-news-content { padding: .45rem; }
  .story-news-image img { min-height: 240px; max-height: 360px; }
  .story-index-grid { grid-template-columns: 1fr; }
  .service-link-grid { grid-template-columns: 1fr; }
  .review-screenshot-grid { grid-template-columns: 1fr; }
  .timeline-list { grid-template-columns: 1fr; }
}

.mobile-whatsapp-sticky {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }
  .mobile-whatsapp-sticky {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(22, 163, 74, .28);
  }
}
.ak-business-link a { color: var(--brand-dark); font-weight: 900; }
.page-review-meta { margin: .85rem 0 0; color: rgba(255,255,255,.84); font-size: .95rem; font-weight: 700; }
.consent-row { align-items: start; grid-template-columns: auto 1fr; }
.consent-row input { width: auto; min-height: auto; margin-top: .3rem; }
.smart-request-form input[type="file"] { padding: .55rem; background: #f8fafc; }
.related-story-note .service-link-card { min-height: 120px; }

.official-resources .service-link-card { background: #fff; }
