:root {
  --bg: #f5f5f0;
  --surface: #ffffff;
  --text: #1c1c1a;
  --muted: #6b6b63;
  --accent: #c9530e;
  --accent-dark: #a3430a;
  --phone: #1a7a52;
  --phone-dark: #135e3e;
  --phone-light: #e6f4ed;
  --border: #e0ddd5;
  --border-light: #edeae3;
  --radius: 10px;
  --radius-lg: 16px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", "Segoe UI", system-ui, sans-serif;
  --max: 1140px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-dark); transition: color var(--transition); }
a:hover { color: var(--accent); }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--text); color: #fff;
  padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ─── HEADER ─── */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-right: auto;
}

/* Phone is always visible in the header */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--phone);
  text-decoration: none;
  background: var(--phone-light);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background var(--transition);
  order: 2;
}
.header-phone:hover { background: #d5ece1; color: var(--phone-dark); }
.header-phone-icon {
  width: 0.95rem;
  height: 0.95rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.02l-2.2 2.19z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.02l-2.2 2.19z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  order: 3;
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 15px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }

.site-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0 0.25rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.5rem;
  order: 4;
}
.site-nav.is-open { display: flex; }

.nav-drop { position: relative; }

.nav-drop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.6rem 0;
  cursor: pointer;
  text-align: left;
}
.nav-drop-btn::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  opacity: 0.5;
  transition: transform var(--transition);
}
.nav-drop-btn[aria-expanded="true"]::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  opacity: 0.8;
}
.nav-drop-btn:hover { color: var(--accent); }
.nav-drop-btn.is-active { color: var(--accent-dark); }

.nav-panel { display: none; padding: 0 0 0.5rem; }
.nav-drop-btn[aria-expanded="true"] + .nav-panel { display: block; }

.nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-panel a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-panel a:hover { background: var(--bg); color: var(--accent); }
.nav-panel a[aria-current="page"] { font-weight: 700; color: var(--accent-dark); }
.nav-panel-all {
  margin-top: 0.25rem;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .logo { margin-right: 1.5rem; }
  .site-nav {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    margin: 0;
    padding: 0;
    margin-right: auto;
    order: 1;
  }
  .nav-drop-btn {
    width: auto;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
  }
  .nav-drop-btn:hover { background: var(--bg); }
  .nav-panel {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 230px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem;
    z-index: 60;
  }
  .header-phone { font-size: 0.9rem; }
}

/* ─── HERO ─── */
.hero {
  padding: 2rem 0 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero-home {
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(201,83,14,0.28), transparent 60%),
    linear-gradient(135deg, #171715 0%, #232220 55%, #302e29 100%);
  background-color: #1c1c1a;
  color: #fff;
  border-bottom: none;
  overflow: hidden;
}
.hero-home .eyebrow { color: rgba(255,255,255,0.55); }
.hero-home .lead { color: rgba(255,255,255,0.78); }
.hero-home .hero-note { color: rgba(255,255,255,0.6); }

/* Centered hero */
.hero-home .hero-copy {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.hero-home h1 { margin-inline: auto; }
.hero-home .lead { margin-inline: auto; max-width: 52ch; }
.hero-home .hero-actions { align-items: center; }
.hero-home .hero-chips { justify-content: center; }

.hero-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-home { padding: 4.5rem 0 5.5rem; }
  .hero-split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.hero-chips {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-chips li {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Hub hero with illustrative image */
.hero-hub-media { padding-bottom: 2.5rem; }
.hero-photo-light {
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
@media (min-width: 900px) {
  .hero-hub-media .hero-split { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
@media (max-width: 899px) {
  .hero-hub-media .hero-photo { margin-top: 1.5rem; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 64px),
    linear-gradient(160deg, #2b2926 0%, #201f1c 100%);
  overflow: hidden;
}
.hero-visual span {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 14%;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-visual span:nth-child(1) { top: 16%; }
.hero-visual span:nth-child(2) { top: 40%; left: 16%; right: 16%; }
.hero-visual span:nth-child(3) { top: 64%; left: 24%; right: 24%; background: linear-gradient(180deg, rgba(201,83,14,0.45), rgba(201,83,14,0.12)); border-color: rgba(201,83,14,0.4); }
@media (max-width: 899px) { .hero-visual { display: none; } }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-bar ul {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .trust-bar ul { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
}
.trust-bar strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
}
.trust-bar span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-note {
  margin: -0.75rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* ─── SERVICE CARD ICONS / MEDIA ─── */
.card-icon {
  width: 2rem;
  height: 2rem;
  fill: var(--accent);
  opacity: 0.9;
}

.card-grid-media a { padding: 0; overflow: hidden; }
.card-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg);
}
.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.card-grid-media a:hover .card-media img { transform: scale(1.04); }
.card-media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  background: linear-gradient(160deg, #f0ede6, #e6e2d9);
}
.card-text {
  display: block;
  padding: 1rem 1.15rem 1.2rem;
}
.card-grid-media strong { display: block; margin-bottom: 0.3rem; font-size: 1.05rem; }
.card-grid-media .card-text > span { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ─── SCOPE BAND ─── */
.scope-band {
  background: var(--surface);
  border-block: 1px solid var(--border);
  margin: 1rem 0;
}
.scope-inner {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 800px) {
  .scope-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.scope-col h2 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}
.scope-in h2 { color: var(--phone-dark); }
.scope-out h2 { color: var(--accent-dark); }
.cross-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.cross-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.cross-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1.35;
}
.scope-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.steps-home { gap: 0.75rem; }
@media (min-width: 900px) {
  .steps-home { grid-template-columns: repeat(4, 1fr); }
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, #135e3e 0%, #1a7a52 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  margin-top: 1rem;
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.cta-band p { margin: 0 0 0.75rem; color: rgba(255,255,255,0.85); }
.cta-phone a {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.cta-band .btn-phone {
  background: #fff;
  border-color: #fff;
  color: var(--phone-dark);
}
.cta-band .btn-phone:hover {
  background: #eafaf2;
  border-color: #eafaf2;
  color: var(--phone-dark);
}

.page-home .site-footer { margin-top: 0; }

.hero-landing {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.hero-text {
  max-width: 65ch;
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

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

.hero-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 50px;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
}
@media (max-width: 639px) {
  .btn-lg { width: 100%; }
}

.btn-phone {
  background: var(--phone);
  border-color: var(--phone);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,122,82,0.25);
}
.btn-phone:hover {
  background: var(--phone-dark);
  border-color: var(--phone-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26,122,82,0.3);
}

/* ─── SECTIONS ─── */
.section {
  padding: 2.5rem 0;
}
.section h2 {
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ─── CARD GRID (home) ─── */
.card-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card-grid a {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card-grid a:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}
.card-grid span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── CONTENT GRID (landing) ─── */
.content-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
}
@media (min-width: 1000px) {
  .content-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 2.5rem;
    padding: 2.5rem 0 4rem;
  }
}

/* ─── PROSE / ARTICLE ─── */
.prose .content-section {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}
.prose .content-section:last-child {
  border-bottom: none;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

.prose p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: #333;
}

.prose.narrow { max-width: 65ch; }

.check-list {
  padding-left: 0;
  margin: 0.75rem 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--phone);
  font-size: 1rem;
}

/* ─── MAHALLE BLOCK ─── */
.mahalle-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}
.mahalle-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.mahalle-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.mahalle-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 0.4rem;
}
.mahalle-list li {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

/* ─── STEPS ─── */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.steps li:hover { box-shadow: var(--shadow); }
.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-dark);
  font-size: 0.95rem;
}
.steps span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── FAQ ─── */
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.6rem;
  transition: border-color var(--transition);
}
.faq:hover { border-color: var(--accent); }
.faq[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}
.faq summary::before {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--bg);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
  transition: all var(--transition);
}
.faq[open] summary::before {
  content: "−";
  background: var(--accent);
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0.75rem 0 0 2rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── CTA INLINE ─── */
.cta-inline {
  background: linear-gradient(135deg, #e8f5ee 0%, #dff0e7 100%);
  border: 1px solid #b8dbc8;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.cta-inline h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.cta-inline p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.cta-inline .btn-phone {
  margin: 0 auto;
}

/* ─── SIDEBAR ─── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1000px) {
  .sidebar {
    position: sticky;
    top: 5rem;
  }
}

.sidebar .card,
.sidebar .link-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.card-cta {
  background: linear-gradient(180deg, var(--surface) 0%, #f8faf9 100%) !important;
  border-color: var(--phone) !important;
  border-width: 2px !important;
}

.card-cta h2,
.link-grid h2 {
  font-size: 1rem;
  margin: 0 0 0.6rem;
}

.phone-display {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.phone-display a {
  color: var(--phone);
  text-decoration: none;
}

.link-list {
  list-style: none; margin: 0; padding: 0;
}
.link-list a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.link-list a:hover { padding-left: 0.3rem; color: var(--accent); }
.link-list li:last-child a { border-bottom: 0; }

/* ─── HUB ─── */
.hub-body {
  padding: 2rem 0 3rem;
}
.hub-grids {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.hub-grids .link-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 700px) {
  .hub-grids { grid-template-columns: 1fr 1fr; }
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs ol {
  list-style: none; padding: 0;
  margin: 0 0 1rem;
  display: flex; flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 0.3rem;
  color: #c4bdb0;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }

/* ─── FOOTER ─── */
.site-footer {
  background: #1c1c1a;
  color: #d8d5cd;
  padding: 2.5rem 0;
  margin-top: 2rem;
}
.footer-inner {
  display: grid;
  gap: 0.75rem;
}
.footer-inner p { margin: 0; line-height: 1.6; }
.footer-contact {
  font-weight: 600;
  color: #e8e5dc;
}
.footer-cta { margin-top: 0.5rem !important; }
.footer-copy {
  font-size: 0.8rem;
  color: #8a867e;
  margin-top: 0.5rem !important;
}
.footer-legal {
  font-size: 0.85rem;
  margin: 0 !important;
}
.footer-legal a {
  color: #c8c4bc;
}
.site-footer a { color: #fff; }

/* ─── FLOATING PHONE BUTTON ─── */
.phone-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--phone);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(26,122,82,0.35);
  min-height: 50px;
  transition: all var(--transition);
}
.phone-float:hover {
  background: var(--phone-dark);
  color: #fff;
  box-shadow: 0 8px 30px rgba(26,122,82,0.45);
  transform: translateY(-2px);
}
.phone-float-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.02l-2.2 2.19z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.02l-2.2 2.19z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 899px) {
  /* Header: logo solda, telefon + menü sağda, sığmazsa telefon numarası ikona iner */
  .header-inner { gap: 0.4rem; }
  .header-phone { padding: 0.45rem 0.7rem; font-size: 0.82rem; gap: 0.35rem; }
}

@media (max-width: 380px) {
  .logo { font-size: 1.05rem; }
  .header-phone { font-size: 0; padding: 0.5rem; gap: 0; }
  .header-phone-icon { width: 1.1rem; height: 1.1rem; }
}

@media (max-width: 639px) {
  body { padding-bottom: 5.5rem; }
  .hero-home { padding: 2rem 0 2.5rem; }
  .hero-landing { padding: 1.75rem 0 2rem; }
  .content-grid { padding: 1.5rem 0 2rem; }
  .section { padding: 2rem 0; }
  .section h2 { font-size: 1.25rem; }

  /* Telefon numarası mobilde tıklanabilir kalsın diye biraz büyük */
  .cta-phone a { font-size: 1.6rem; }
  .cta-band { padding: 2.25rem 0; }

  /* Kaydırırken alttaki yüzen buton içerikle çakışmasın */
  .phone-float { right: 0.75rem; bottom: 0.75rem; padding: 0.75rem 1.1rem; }

  /* Uzun kelimeler taşmasın */
  .hero h1, .prose h2, .section h2 { overflow-wrap: anywhere; }
}

@media (min-width: 640px) {
  body { font-size: 1.0625rem; }
}
