:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5c6863;
  --line: #dbe4df;
  --bg: #f7faf8;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #f59e0b;
  --red: #b42318;
  --blue: #1d4ed8;
  --shadow: 0 18px 50px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  color: #fff;
  font-weight: 800;
  background: var(--teal);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

nav a:hover {
  color: var(--teal-dark);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 800;
  border-radius: 8px;
}

.header-call,
.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--teal-dark);
  background: #d9f2ee;
}

.button.ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px) 72px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.08)),
    var(--bg);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 690px;
  color: #33413c;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: var(--teal-dark);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-item {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promise-item strong {
  color: var(--teal-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.promise-item span {
  color: var(--muted);
  font-weight: 800;
}

.service-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.service-panel span,
.service-panel p {
  display: block;
  margin: 0;
  color: var(--muted);
}

.service-panel a {
  color: var(--red);
  font-weight: 900;
}

.section,
.contact-section {
  padding: 76px clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 34px;
  background: #fff;
}

.intro p:last-child,
.areas > p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.quick-links a {
  padding: 10px 13px;
  color: var(--teal-dark);
  font-weight: 900;
  background: #eef7f4;
  border: 1px solid #cce6df;
  border-radius: 8px;
}

.service-grid,
.review-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

article,
blockquote,
.service-card {
  margin: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

article p,
blockquote p,
.service-card p,
details p {
  color: var(--muted);
}

.service-card {
  display: grid;
  gap: 10px;
  align-content: start;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}


.issue-section {
  background: #f7faf8;
}

.issue-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-intro {
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.issue-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.issue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 99, 87, 0.38);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}

.issue-card h3 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 20px;
}

.issue-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.issue-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 800;
}

.issue-cta-row {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.issue-main-cta {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(181, 34, 24, 0.20);
}

.why-section {
  background: #fff;
}

.why-grid article {
  background: #f7faf8;
}

.problem-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  color: #fff;
  background: var(--teal-dark);
}

.problem-band .eyebrow,
.problem-band h2 {
  color: #fff;
}


.symptom-tags,
.problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.symptom-tags span,
.problem-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  background: #f3f6fb;
  border: 1px solid #dde6f2;
  border-radius: 999px;
}

.areas {
  background: #fff;
}

.appointment-section {
  background: #fff;
}

.appointment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
}

.appointment-copy,
.appointment-action-card {
  padding: 26px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.appointment-copy h2 {
  margin-bottom: 12px;
}

.appointment-copy p {
  max-width: 760px;
}

.appointment-bullets {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.appointment-bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.appointment-bullets li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--red);
  font-weight: 900;
  content: "✓";
}

.appointment-note {
  padding: 14px 16px;
  color: var(--teal-dark);
  font-weight: 800;
  background: #fff;
  border: 1px solid #d9e7e2;
  border-radius: 14px;
}

.appointment-action-card {
  display: grid;
  align-content: center;
  gap: 12px;
  background: #ffffff;
}

.appointment-action-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 24px;
}

.appointment-action-card p {
  margin: 0 0 8px;
}


.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  padding: 22px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #cfdad5;
  border-radius: 8px;
  outline: none;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.appointment-form .full {
  grid-column: 1 / -1;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.area-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--teal-dark);
  font-weight: 900;
  background: #eef7f4;
  border: 1px solid #cce6df;
  border-radius: 8px;
}

.area-grid a span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.reviews {
  background: #f0f5f2;
}

blockquote {
  display: grid;
  gap: 16px;
}

cite {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
}

.faq {
  background: #fff;
}

details {
  max-width: 960px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: #20312c;
}

.contact-section .eyebrow,
.contact-section p {
  color: #d8e9e2;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px) 90px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-summary {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-summary a,
.footer-links a {
  color: var(--teal-dark);
  font-weight: 900;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  align-content: start;
}

.footer-links a {
  font-size: 14px;
}

.business-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
}

.business-info div {
  display: grid;
  gap: 2px;
}

.business-info dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.business-info dd {
  margin: 0;
  color: var(--muted);
}

.business-info a {
  color: inherit;
}

.legal-page {
  max-width: 980px;
  min-height: 62vh;
  background: #fff;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-cta a + a {
  background: var(--teal);
}

.mobile-cta a:nth-child(2) {
  background: var(--blue);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .intro,
  .problem-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .promise-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-section {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
    line-height: 1.15;
  }

  .brand-mark {
    width: 40px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 24px 16px 28px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  p {
    margin-bottom: 12px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 14px;
  }

  .trust-list,
  .symptom-tags,
  .problem-list {
    gap: 8px;
  }

  .trust-list li,
  .symptom-tags span,
  .problem-list span {
    padding: 8px 11px;
    font-size: 13px;
  }

  .service-panel {
    gap: 10px;
    padding: 16px;
  }

  .service-panel strong {
    font-size: 22px;
  }

  .promise-item,
  article,
  blockquote,
  .service-card {
    padding: 16px;
  }

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

  .issue-grid {
    grid-template-columns: 1fr;
  }


  .promise-band,
  .appointment-form,
  .appointment-panel {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 18px;
  }

  .promise-band,
  .problem-band,
  .contact-section {
    gap: 16px;
  }

  .appointment-form,
  .appointment-copy,
  .appointment-action-card {
    padding: 16px;
    gap: 12px;
  }

  .section,
  .contact-section {
    padding: 32px 16px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .quick-links {
    gap: 8px;
    margin: -4px 0 18px;
  }

  .quick-links a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .service-grid,
  .review-grid,
  .why-grid {
    gap: 12px;
  }

  .area-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .area-grid a {
    padding: 14px;
  }

  details {
    padding: 14px 0;
  }

  summary {
    font-size: 17px;
  }

  .business-info,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 18px;
    padding: 22px 16px 76px;
  }

  .mobile-cta {
    display: grid;
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 8px;
  }

  .mobile-cta a {
    min-height: 44px;
    font-size: 14px;
  }
}


@media (max-width: 900px) {
  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .issue-grid {
    grid-template-columns: 1fr;
  }
}


/* Servis talebi sayfası */
.appointment-panel--teaser {
  align-items: stretch;
}

.booking-hero .hero-copy {
  max-width: 760px;
}

.booking-quick-card h2 {
  margin-top: 0;
}

.booking-explain .cards article,
.booking-steps article {
  position: relative;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.booking-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.accent-panel {
  background: #eefaf6;
}

.stacked-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-section .faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.06);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--teal-dark);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .booking-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobil sadeleştirme rötüşleri - 2026-06-30 */
.mobile-only-note {
  display: none;
}

@media (max-width: 620px) {
  body {
    background: #eef4f1;
    line-height: 1.5;
  }

  .site-header {
    border-bottom-color: rgba(219, 228, 223, 0.85);
    box-shadow: 0 8px 24px rgba(23, 32, 29, 0.06);
  }

  .hero {
    margin: 10px 10px 0;
    padding: 22px 14px 18px;
    background: linear-gradient(160deg, rgba(15, 118, 110, 0.14), rgba(245, 158, 11, 0.07)), #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(23, 32, 29, 0.08);
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  p,
  .hero-copy,
  .section-intro,
  .intro p:last-child,
  .areas > p,
  article p,
  blockquote p,
  .service-card p,
  .issue-card p,
  details p,
  .appointment-copy p,
  .appointment-action-card p,
  .area-grid a span {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-copy {
    margin-bottom: 14px;
  }

  .hero-actions .button,
  .contact-actions .button,
  .appointment-action-card .button,
  .service-panel .button {
    min-height: 46px;
    border-radius: 14px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list li {
    display: grid;
    min-height: 42px;
    align-items: center;
    padding: 8px 9px;
    font-size: 12px;
    text-align: center;
    border-radius: 14px;
  }

  .service-panel {
    padding: 14px;
    background: #f9fffd;
    border-left: 4px solid var(--teal);
    border-radius: 18px;
    box-shadow: none;
  }

  .service-panel span,
  .service-panel p {
    font-size: 14px;
    line-height: 1.5;
  }

  .section,
  .contact-section {
    margin: 12px 10px;
    padding: 22px 14px;
    background: #ffffff;
    border: 1px solid rgba(219, 228, 223, 0.95);
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(23, 32, 29, 0.055);
  }

  .intro {
    display: block;
  }

  .intro p:last-child {
    padding: 14px;
    margin-bottom: 0;
    background: #f7faf8;
    border: 1px solid var(--line);
    border-left: 4px solid var(--teal);
    border-radius: 16px;
  }

  .promise-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .promise-item {
    min-height: 112px;
    padding: 13px 11px;
    border-radius: 18px;
  }

  .promise-item strong {
    font-size: 22px;
  }

  .promise-item span {
    font-size: 13px;
    line-height: 1.35;
  }

  .quick-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 8px;
    margin: -2px -2px 16px;
    scrollbar-width: none;
  }

  .quick-links::-webkit-scrollbar {
    display: none;
  }

  .quick-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 999px;
  }

  .service-grid,
  .why-grid,
  .review-grid,
  .area-grid,
  .issue-grid {
    gap: 10px;
  }

  article,
  blockquote,
  .service-card,
  .issue-card,
  .area-grid a {
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(23, 32, 29, 0.045);
  }

  .service-card,
  .why-grid article,
  .review-grid blockquote,
  .area-grid a,
  .issue-card {
    border-left: 4px solid rgba(15, 118, 110, 0.45);
  }

  .service-card p,
  .why-grid article p,
  .review-grid blockquote p,
  .area-grid a span,
  .issue-card p {
    margin-bottom: 0;
  }

  .issue-section {
    background: #ffffff;
  }

  .issue-card {
    position: relative;
    padding-right: 44px;
  }

  .issue-card::after {
    position: absolute;
    right: 16px;
    top: 18px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #fff;
    background: var(--red);
    border-radius: 999px;
    content: "›";
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .issue-link {
    margin-top: 10px;
    font-size: 14px;
  }

  .issue-cta-row {
    margin-top: 18px;
  }

  .issue-main-cta {
    width: 100%;
    min-height: 48px;
    text-align: center;
  }

  .appointment-panel {
    gap: 14px;
  }

  .appointment-copy,
  .appointment-action-card,
  .info-panel {
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(23, 32, 29, 0.045);
  }

  .appointment-note {
    padding: 12px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 14px;
  }

  .appointment-bullets li {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .area-grid a span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .contact-section {
    background: #20312c;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 14px 0 0;
  }

  .faq details,
  .faq-list details {
    padding: 14px;
    margin-bottom: 10px;
    background: #f7faf8;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .faq details:last-child,
  .faq-list details:last-child {
    margin-bottom: 0;
  }

  summary {
    font-size: 16px;
    line-height: 1.35;
  }

  .site-footer {
    margin-top: 12px;
    background: #ffffff;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .footer-links strong {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 8px;
    color: var(--ink);
    border-top: 1px solid var(--line);
  }

  .footer-links strong:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .footer-links a {
    display: block;
    padding: 8px 9px;
    background: #f7faf8;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.25;
  }
}

/* Mobil netleştirme - daha az makale, daha çok hızlı aksiyon */
@media (max-width: 620px) {
  body {
    background: #eef4f1;
  }

  .hero {
    margin: 8px 8px 0;
    padding: 18px 12px 14px;
  }

  .hero-copy {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero .service-panel {
    display: none;
  }

  .intro {
    display: none;
  }

  .section,
  .contact-section {
    margin: 10px 8px;
    padding: 18px 12px;
    border-radius: 20px;
  }

  .section-heading,
  .section-intro {
    margin-bottom: 12px;
  }

  .section-intro,
  .areas > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .promise-band {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
    scroll-snap-type: x mandatory;
  }

  .promise-band::-webkit-scrollbar,
  .quick-links::-webkit-scrollbar {
    display: none;
  }

  .promise-item {
    min-width: 150px;
    min-height: auto;
    padding: 11px 10px;
    scroll-snap-align: start;
  }

  .promise-item strong {
    font-size: 20px;
  }

  .promise-item span {
    font-size: 12px;
  }

  .service-grid,
  .issue-grid,
  .why-grid,
  .area-grid,
  .review-grid {
    gap: 8px;
  }

  article,
  blockquote,
  .service-card,
  .issue-card,
  .area-grid a {
    padding: 13px 14px;
  }

  .service-card p,
  .why-grid article p,
  .area-grid a span,
  .review-grid blockquote p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .issue-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .why-grid article:nth-child(n+4) {
    display: none;
  }

  .reviews {
    display: none;
  }

  .appointment-panel--teaser .appointment-copy p:not(.eyebrow),
  .appointment-panel--teaser .appointment-note {
    display: none;
  }

  .appointment-panel--teaser .appointment-copy,
  .appointment-panel--teaser .appointment-action-card {
    padding: 14px;
  }

  .appointment-panel--teaser .appointment-action-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .button,
  .header-call {
    border-radius: 12px;
  }

  .contact-section {
    padding-bottom: 20px;
  }

  .contact-section p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .site-footer {
    font-size: 12px;
  }

  .site-footer p {
    display: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .footer-links a {
    padding: 7px 8px;
    font-size: 11px;
  }
}

/* Mobil ana sayfa uygulama düzeni - v2 */
@media (max-width: 620px) {
  main#top {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  main#top > .hero { order: 0; }
  main#top > .promise-band { order: 1; }
  main#top > #ariza-belirtileri { order: 2; }
  main#top > #randevu { order: 3; }
  main#top > #hizmetler { order: 4; }
  main#top > #bolgeler { order: 5; }
  main#top > .why-section { order: 6; }
  main#top > .faq { order: 7; }
  main#top > #iletisim { order: 8; }

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

  .hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 32px);
  }

  .hero-copy {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }

  .hero-actions .button {
    min-height: 48px;
    font-size: 15px;
  }

  .trust-list li:nth-child(n+5) {
    display: none;
  }

  .promise-band {
    order: 1;
    margin: 10px 8px;
  }

  #ariza-belirtileri {
    border-color: rgba(180, 35, 24, 0.16);
  }

  #ariza-belirtileri h2 {
    font-size: 23px;
  }

  #ariza-belirtileri h2::before {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    content: "Sorunu seçin";
  }

  .issue-card {
    min-height: auto;
    padding: 13px 42px 13px 13px;
    border-left: 5px solid rgba(180, 35, 24, 0.75);
  }

  .issue-card h3 {
    margin-bottom: 4px;
    font-size: 17px;
  }

  .issue-card p {
    font-size: 13px;
    line-height: 1.4;
    -webkit-line-clamp: 1;
  }

  .issue-link {
    display: none;
  }

  .issue-card::after {
    top: 50%;
    transform: translateY(-50%);
  }

  #randevu {
    border-color: rgba(15, 118, 110, 0.18);
  }

  #randevu .appointment-copy h2 {
    font-size: 23px;
  }

  #randevu .appointment-action-card h3 {
    font-size: 18px;
  }

  #hizmetler .service-grid {
    display: grid;
    gap: 8px;
  }

  #hizmetler .service-card {
    position: relative;
    padding: 13px 42px 13px 13px;
  }

  #hizmetler .service-card::after,
  #bolgeler .area-grid a::after {
    position: absolute;
    right: 15px;
    top: 50%;
    color: var(--teal-dark);
    content: "›";
    font-size: 25px;
    font-weight: 900;
    transform: translateY(-50%);
  }

  #hizmetler .service-card h3 {
    margin-bottom: 3px;
    font-size: 17px;
  }

  #hizmetler .service-card p {
    font-size: 13px;
    -webkit-line-clamp: 1;
  }

  #bolgeler .area-grid a {
    position: relative;
    padding: 13px 38px 13px 13px;
  }

  #bolgeler .area-grid a span {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }

  #bolgeler .area-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .why-section .section-heading h2,
  .faq .section-heading h2 {
    font-size: 23px;
  }

  .why-grid article {
    padding: 13px;
  }

  .why-grid article h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .why-grid article p {
    font-size: 13px;
    -webkit-line-clamp: 1;
  }

  .faq details {
    padding: 12px 13px;
  }

  .faq details p {
    font-size: 14px;
    line-height: 1.45;
  }

  #iletisim h2 {
    font-size: 24px;
  }

  .site-footer .business-info {
    display: none;
  }

  .footer-summary p:nth-of-type(2) {
    display: none;
  }

  .footer-links a:nth-of-type(n+16) {
    display: none;
  }

  .mobile-cta {
    bottom: 8px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 228, 223, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    min-height: 42px;
    border-radius: 12px;
  }
}

/* Radical mobile home: action-first, not article-first */
.mobile-action-home { display: none; }

@media (max-width: 700px) {
  body { background: #f3f7f5; padding-bottom: 74px; }
  .site-header { position: sticky; top: 0; z-index: 50; min-height: 58px; padding: 8px 12px; }
  .site-header nav { display: none; }
  .brand small { display: none; }
  .brand strong { font-size: 15px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .header-call { padding: 10px 12px; font-size: 14px; border-radius: 12px; }

  main#top { display: flex; flex-direction: column; }

  .hero { order: 1; min-height: auto; padding: 20px 14px 12px; display: block; background: linear-gradient(145deg, #eef8f4 0%, #ffffff 70%); }
  .hero-content { max-width: 100%; }
  .hero .eyebrow { font-size: 11px; margin-bottom: 8px; letter-spacing: .06em; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); line-height: .98; margin: 0 0 10px; letter-spacing: -.04em; }
  .hero-copy { font-size: 15px; line-height: 1.45; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 0; }
  .hero-actions .button { width: 100%; justify-content: center; min-height: 46px; border-radius: 13px; font-size: 15px; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 12px; }
  .trust-list li { font-size: 12px; padding: 8px 10px; border-radius: 999px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .service-panel { display: none; }

  .mobile-action-home { order: 2; display: grid; gap: 12px; padding: 12px 12px 18px; }
  .mobile-action-card { background: #fff; border: 1px solid rgba(15, 23, 42, .08); border-radius: 20px; padding: 16px; box-shadow: 0 12px 28px rgba(15, 23, 42, .06); }
  .mobile-action-card h2 { font-size: 22px; line-height: 1.08; margin: 0 0 8px; letter-spacing: -.025em; }
  .mobile-action-card p { margin: 0 0 12px; color: #52615d; font-size: 14px; line-height: 1.45; }
  .mobile-primary-card { background: #102b24; color: #fff; border: 0; }
  .mobile-primary-card p, .mobile-primary-card .eyebrow { color: rgba(255,255,255,.82); }
  .mobile-action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .mobile-action-button { text-decoration: none; border-radius: 16px; padding: 13px 12px; min-height: 76px; display: flex; flex-direction: column; justify-content: center; gap: 4px; border: 1px solid rgba(255,255,255,.16); color: #fff; background: rgba(255,255,255,.09); }
  .mobile-action-button span { font-weight: 800; font-size: 15px; }
  .mobile-action-button small { color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.2; }
  .mobile-action-button.call { background: #b91c1c; }
  .mobile-action-button.whatsapp { background: #e2fbf4; color: #075e54; }
  .mobile-action-button.whatsapp small { color: #0f766e; }
  .mobile-action-button.appointment { background: #fff; color: #11231f; }
  .mobile-action-button.appointment small { color: #52615d; }
  .mobile-action-button.fault { background: rgba(255,255,255,.14); }

  .mobile-problem-list { display: grid; gap: 8px; }
  .mobile-problem-list a { display: flex; align-items: center; justify-content: space-between; text-decoration: none; color: #0f4f46; background: #f2faf7; border: 1px solid rgba(15, 118, 110, .13); border-radius: 14px; padding: 13px 14px; font-weight: 800; font-size: 15px; }
  .mobile-problem-list span { font-size: 22px; line-height: 1; }

  .mobile-appointment-mini { background: linear-gradient(145deg, #fff 0%, #eefbf7 100%); }
  .mobile-appointment-mini .button { width: 100%; justify-content: center; }

  .mobile-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .mobile-chip-list a { text-decoration: none; color: #0f4f46; background: #f6fbf9; border: 1px solid rgba(15, 118, 110, .15); border-radius: 999px; padding: 10px 12px; font-weight: 800; font-size: 13px; }
  .areas-mini a { flex: 1 1 calc(50% - 8px); text-align: center; }

  .mobile-trust-mini ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
  .mobile-trust-mini li { position: relative; padding-left: 22px; color: #3f4f4b; font-size: 14px; line-height: 1.4; }
  .mobile-trust-mini li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #0f766e; font-weight: 900; }

  /* Keep content in HTML for SEO, but make mobile home action-focused */
  main#top > section:not(.hero):not(.mobile-action-home) { display: none !important; }

  .site-footer { padding: 14px 12px 86px; background: #fff; border-top: 1px solid rgba(15, 23, 42, .08); }
  .footer-summary p:nth-of-type(2), .business-info { display: none; }
  .footer-summary { font-size: 12px; margin-bottom: 10px; }
  .footer-links { display: none; }

  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 8px; background: rgba(255,255,255,.96); box-shadow: 0 -8px 24px rgba(15,23,42,.12); }
  .mobile-cta a { min-height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 13px; font-weight: 900; }
  .mobile-cta a:nth-child(1) { background: #b91c1c; color: #fff; }
  .mobile-cta a:nth-child(2) { background: #102b24; color: #fff; }
  .mobile-cta a:nth-child(3) { background: #e2fbf4; color: #075e54; }
}


/* Final mobile cache-safe correction */
@media (max-width: 700px) {
  html, body { overflow-x: hidden !important; }
  body { background: #f3f7f5 !important; padding-bottom: 82px !important; }
  main#top { display: flex !important; flex-direction: column !important; }
  .hero { display: none !important; }
  .mobile-action-home { display: grid !important; order: 1 !important; gap: 12px !important; padding: 12px 12px 18px !important; }
  .mobile-action-card { display: block !important; background: #fff !important; border: 1px solid rgba(15,23,42,.08) !important; border-radius: 20px !important; padding: 16px !important; box-shadow: 0 12px 28px rgba(15,23,42,.06) !important; }
  .mobile-primary-card { background: #102b24 !important; color: #fff !important; border: 0 !important; }
  .mobile-action-card h2 { font-size: 23px !important; line-height: 1.08 !important; margin: 0 0 8px !important; }
  .mobile-action-card p { font-size: 14px !important; line-height: 1.45 !important; margin: 0 0 12px !important; }
  .mobile-action-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 9px !important; }
  .mobile-action-button { display: flex !important; flex-direction: column !important; justify-content: center !important; gap: 4px !important; min-height: 74px !important; padding: 13px 12px !important; border-radius: 16px !important; color: #fff !important; }
  .mobile-action-button span { display: block !important; font-size: 15px !important; font-weight: 900 !important; }
  .mobile-action-button small { display: block !important; font-size: 12px !important; line-height: 1.2 !important; }
  .mobile-action-button.call { background: #b91c1c !important; }
  .mobile-action-button.whatsapp { background: #e2fbf4 !important; color: #075e54 !important; }
  .mobile-action-button.appointment { background: #fff !important; color: #11231f !important; }
  .mobile-problem-list { display: grid !important; gap: 8px !important; }
  .mobile-problem-list a { display: flex !important; justify-content: space-between !important; padding: 13px 14px !important; color: #0f4f46 !important; background: #f2faf7 !important; border: 1px solid rgba(15,118,110,.13) !important; border-radius: 14px !important; font-size: 15px !important; font-weight: 900 !important; }
  main#top > section:not(.mobile-action-home) { display: none !important; }
  .site-footer { display: none !important; }
}
