:root {
  --bg: #d6ded9;
  --bg-2: #c8d2cc;
  --bg-3: #b7c3bc;
  --card: #f4f7f5;
  --ink: #1c2a25;
  --ink-soft: #3d4f48;
  --gold: #8a6d42;
  --mint: #4f7a6c;
  --line: rgba(36, 51, 46, 0.12);
  --shadow: 0 16px 40px rgba(36, 51, 46, 0.1);
  --radius: 24px;
  --header: 76px;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(79, 122, 108, 0.14), transparent 55%),
    radial-gradient(700px 420px at 100% 8%, rgba(138, 109, 66, 0.1), transparent 50%),
    var(--bg);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(138, 109, 66, 0.18);
}

body.nav-open {
  overflow: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.cursor-paused .cursor-glow,
body.cursor-paused .cursor-ring {
  opacity: 0;
}

img,
iframe,
video {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin: 0;
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

h2 em,
h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.cursor-glow,
.cursor-ring {
  display: none;
}

body.has-cursor .cursor-glow,
body.has-cursor .cursor-ring {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 80;
  will-change: transform, width, height;
}

.cursor-glow {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 109, 66, 0.16), transparent 70%);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  border: 1.5px solid rgba(138, 109, 66, 0.5);
  background: rgba(244, 247, 245, 0.35);
  box-shadow: 0 0 22px rgba(138, 109, 66, 0.16);
  transition: width 0.28s ease, height 0.28s ease, margin 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

body.cursor-hover .cursor-ring {
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  border-color: rgba(138, 109, 66, 0.8);
  background: rgba(138, 109, 66, 0.1);
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-mobile-only {
  display: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(28, 42, 37, 0.4);
  backdrop-filter: blur(2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: calc(var(--header) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  overflow: visible;
  background: rgba(214, 222, 217, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  flex-wrap: nowrap;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-width: 0;
  flex-shrink: 1;
}

.logo-text {
  white-space: nowrap;
}

.logo-mark svg {
  width: 40px;
  height: 40px;
}

.logo-text strong {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 1rem;
  font-weight: 600;
}

.nav a {
  opacity: 0.62;
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--gold);
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dcea0;
  box-shadow: 0 0 0 4px rgba(125, 206, 160, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn-dark {
  background: var(--gold);
  color: #24332e;
}

.btn-lime {
  background: linear-gradient(180deg, #d8c7a4, var(--gold));
  color: #24332e;
  box-shadow: 0 10px 24px rgba(201, 184, 150, 0.18);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.btn,
.menu-toggle,
.wa-float,
.whatsapp-cta,
.map-dir,
.phone-link {
  touch-action: manipulation;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(138, 109, 66, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-grid > *,
.bento > *,
.steps > *,
.neden-grid > *,
.teklif-grid > *,
.sss-grid > *,
.before-grid > *,
.footer-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lead,
.section-desc {
  margin-top: 18px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-cta .btn {
  flex: 1 1 auto;
  min-width: min(100%, 168px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-family: var(--font);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
}

.hero-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  position: relative;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36, 51, 46, 0.18));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.7s ease;
}

.hero-visual:hover .hero-photo img {
  transform: scale(1.05);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(244, 247, 245, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 260px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease;
  z-index: 2;
}

.float-card:hover {
  transform: translateY(-4px);
}

.float-card strong,
.float-card span {
  display: block;
}

.float-card span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.float-card-top {
  top: 28px;
  left: -28px;
}

.float-card-bottom {
  right: -12px;
  bottom: 36px;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 184, 150, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.mini-faces {
  display: flex;
}

.mini-faces span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #f4f7f5;
  margin-left: -8px;
  background: #8fbfb0;
}

.mini-faces span:nth-child(2) {
  background: #c9b896;
}

.mini-faces span:nth-child(3) {
  background: #5e746b;
}

.trust {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(36, 51, 46, 0.04);
}

.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--bg-2);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(201, 184, 150, 0.06), transparent 40%),
    var(--bg-3);
}

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.steps li,
blockquote,
.feature-list li,
.map-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.steps li:hover,
.feature-list li:hover {
  border-color: rgba(138, 109, 66, 0.35);
}

.service-card::after,
.steps li::after,
.feature-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    380px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(138, 109, 66, 0.1),
    transparent 46%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover::after,
.steps li:hover::after,
.feature-list li:hover::after {
  opacity: 1;
}

.service-card {
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-copy {
  padding: 20px 22px 24px;
}

.service-no {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.service-card h3 {
  margin: 10px 0 12px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.neden-grid,
.sss-grid,
.teklif-grid,
.before-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  padding: 22px;
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font);
  font-size: 1.35rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.steps li {
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 184, 150, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 184, 150, 0.28);
  font-weight: 700;
  margin-bottom: 16px;
}

.steps p {
  color: var(--ink-soft);
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.ba-slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  user-select: none;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.ba-before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  overflow: hidden;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  touch-action: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: var(--gold);
  z-index: 2;
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f7f5;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 2;
  background: rgba(36, 51, 46, 0.62);
  color: #f4f7f5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.ba-label-before {
  left: 16px;
}

.ba-label-after {
  right: 16px;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 28px 24px 24px;
}

blockquote::before {
  content: "“";
  font-family: var(--font);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  opacity: 0.7;
}

blockquote p {
  font-family: var(--font);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.4;
}

blockquote footer {
  margin-top: 18px;
  font-size: 0.9rem;
}

blockquote footer span {
  display: block;
  color: var(--ink-soft);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.08rem;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-weight: 400;
  font-size: 1.3rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq summary:hover {
  color: var(--gold);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn:focus-visible,
.nav a:focus-visible,
.map-dir:focus-visible,
.menu-toggle:focus-visible,
.phone-link:focus-visible,
.wa-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.map-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.map-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #eef2ef;
  border-bottom: 1px solid var(--line);
}

.map-pin {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.map-pin svg {
  width: 28px;
  height: 28px;
}

.map-tab strong,
.map-tab span {
  display: block;
}

.map-tab span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.map-dir {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--gold);
  color: #24332e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.map-dir:hover {
  transform: translateY(-2px);
}

.map-card iframe {
  border: 0;
  width: 100%;
  height: 280px;
  display: block;
  flex: 1;
  filter: none;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #3f8f5a;
  color: #f4fff7;
  font-weight: 700;
  max-width: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-mini {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.contact-mini a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.contact-mini a:hover {
  color: var(--gold);
}

.site-footer {
  background: #4d6058;
  color: #eef3f0;
  padding: 64px 0 calc(28px + 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-text.light {
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(238, 243, 240, 0.78);
  margin-top: 8px;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #e8d7b0;
}

.footer-grid h3 {
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(238, 243, 240, 0.55);
}

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 40;
  background: #3f8f5a;
  color: #f4fff7;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
}

@media (hover: none) {
  .btn:hover,
  .whatsapp-cta:hover,
  .wa-float:hover,
  .map-dir:hover,
  .float-card:hover {
    transform: none;
    box-shadow: none;
  }

  .hero-visual:hover .hero-photo img,
  .service-card:hover img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  body.has-cursor .cursor-glow,
  body.has-cursor .cursor-ring {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  .nav-backdrop.is-visible {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(238, 242, 239, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: min(70vh, calc(100dvh - var(--header)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    opacity: 1;
    padding: 14px 4px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav a::after {
    display: none;
  }

  .nav-mobile-only {
    display: flex;
  }

  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .float-card-top,
  .float-card-bottom {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 40px 0 56px;
  }

  .hero-grid,
  .neden-grid,
  .sss-grid,
  .teklif-grid,
  .before-grid,
  .footer-grid,
  .quotes {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-photo {
    aspect-ratio: 4 / 5;
    max-height: min(520px, 70vh);
  }

  .section {
    padding: 72px 0;
  }

  .trust-row {
    justify-content: flex-start;
    gap: 18px 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 64px;
    --radius: 20px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(1140px, calc(100% - 28px));
  }

  .header-actions .btn-dark {
    display: none;
  }

  .logo-mark svg {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 28px 0 44px;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
    height: 50px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-stats dt {
    font-size: 1.25rem;
  }

  .hero-stats dd {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-photo {
    border-radius: 20px;
    max-height: min(420px, 58vh);
    aspect-ratio: 3 / 4;
  }

  .bento,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .service-card img {
    height: 180px;
  }

  .lead,
  .section-desc {
    font-size: 1.02rem;
  }

  .ba-slider {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .ba-handle::after {
    width: 48px;
    height: 48px;
  }

  .map-tab {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    align-items: center;
  }

  .map-dir {
    grid-column: 1 / -1;
    margin-left: 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .map-card iframe {
    height: 240px;
  }

  .whatsapp-cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .site-footer {
    padding: 48px 0 calc(24px + 80px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .wa-float {
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .faq summary {
    font-size: 1rem;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .trust-row {
    font-size: 0.72rem;
    gap: 12px 16px;
  }

  h1 {
    font-size: 1.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  body.has-cursor .cursor-glow,
  body.has-cursor .cursor-ring {
    display: none;
  }
}
