/* EKB Enerji — Kurumsal tasarım sistemi */

:root {
  --navy-950: #040d18;
  --navy-900: #071422;
  --navy-800: #0b1f3a;
  --navy-700: #132f52;
  --navy-600: #1e4470;
  --teal-600: #1a9b76;
  --teal-500: #22b88d;
  --teal-400: #3dcea3;
  --teal-50: #edf8f4;
  --gold-500: #b8956a;
  --gold-50: #faf6f0;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --color-primary: var(--navy-800);
  --color-primary-2: var(--navy-700);
  --color-accent: var(--teal-600);
  --color-accent-light: var(--teal-50);
  --color-bg: var(--slate-50);
  --color-text: var(--slate-900);
  --color-muted: var(--slate-500);
  --color-border: var(--slate-200);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --shadow-xs: 0 1px 2px rgba(7, 20, 34, 0.05);
  --shadow-sm: 0 4px 12px rgba(7, 20, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 20, 34, 0.08);
  --shadow-lg: 0 24px 48px rgba(7, 20, 34, 0.14);
  --shadow-form: 0 32px 64px rgba(4, 13, 24, 0.35);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1180px;
  --section-pad: clamp(4rem, 9vw, 7rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.025em;
}

p { margin-top: 0; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section-pad { padding-block: var(--section-pad); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-head-left {
  text-align: left;
  margin-inline: 0;
  max-width: 560px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.85rem;
  font-weight: 800;
}

.section-sub {
  color: var(--color-muted);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-eyebrow--light { color: var(--teal-400); }

.section-title--light {
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

/* ── Ana sayfa: Neden biz (showcase panel) ── */
.home-why {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

.home-why-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: var(--white);
}

.home-why-showcase {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(125deg, var(--navy-900) 0%, var(--navy-800) 45%, #123a5c 100%);
  overflow: hidden;
}

.home-why-showcase-glow {
  position: absolute;
  top: -30%;
  right: -5%;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: radial-gradient(circle, rgba(26, 155, 118, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.home-why-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.home-why-title {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-why-lead {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 54ch;
}

.home-why-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 520px;
}

.home-why-stat {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.home-why-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.home-why-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.home-why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -1px;
}

.home-why-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.65rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: var(--white);
  transition: background 0.2s ease;
}

.home-why-feature:last-child { border-right: none; }

.home-why-feature:hover {
  background: var(--slate-50);
}

.home-why-feature--highlight {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
}

.home-why-feature--highlight:hover {
  background: linear-gradient(180deg, #e4f5ef 0%, var(--white) 100%);
}

.home-why-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--teal-400);
  flex-shrink: 0;
}

.home-why-feature--highlight .home-why-feature-icon {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
}

.home-why-feature-step {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.35rem;
}

.home-why-feature h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  line-height: 1.35;
  color: var(--navy-800);
}

.home-why-feature p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ── Ana sayfa: Grup markaları ── */
.home-brands {
  background:
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 55%, #0f2844 100%);
  position: relative;
  overflow: hidden;
}

.home-brands::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(26, 155, 118, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-brands-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.home-brands-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 28rem;
  justify-self: end;
}

.home-brands-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-brand-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-brand-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(6px);
}

.home-brand-item--yalitim { border-left: 4px solid var(--teal-500); }
.home-brand-item--celik { border-left: 4px solid var(--gold-500); }
.home-brand-item--akstone { border-left: 4px solid #7eb8ff; }

.home-brand-mark {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.home-brand-item--yalitim .home-brand-mark { background: rgba(26, 155, 118, 0.25); color: var(--teal-400); }
.home-brand-item--celik .home-brand-mark { background: rgba(184, 149, 106, 0.25); color: #e8c99a; }
.home-brand-item--akstone .home-brand-mark { background: rgba(126, 184, 255, 0.2); color: #a8ccff; }

.home-brand-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.25rem;
}

.home-brand-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.3rem;
}

.home-brand-body p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.home-brand-arrow {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-brand-item:hover .home-brand-arrow {
  color: var(--teal-400);
  transform: translateX(4px);
}

.home-brands-more {
  position: relative;
  z-index: 1;
  margin: 1.75rem 0 0;
  text-align: center;
}

/* ── Ana sayfa: İş akışı (stepper) ── */
.home-workflow {
  background: var(--white);
  border-block: 1px solid var(--color-border);
}

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

.home-workflow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-600), var(--navy-600));
  opacity: 0.15;
  z-index: 0;
}

.home-workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.65rem;
  position: relative;
  z-index: 1;
}

.home-workflow-node {
  margin-bottom: 1.15rem;
}

.home-workflow-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy-800);
  background: var(--white);
  border: 2px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-workflow-step:hover .home-workflow-no {
  border-color: var(--teal-600);
  background: var(--teal-50);
  color: var(--teal-700);
}

.home-workflow-card {
  width: 100%;
  padding: 1.35rem 1.15rem;
  background: var(--slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.home-workflow-step:hover .home-workflow-card {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.home-workflow-card--finish {
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--white) 100%);
  border-color: rgba(26, 155, 118, 0.25);
}

.home-workflow-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.home-workflow-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ── Ana sayfa: Enerji rehberi (editorial) ── */
.home-guides {
  background:
    linear-gradient(180deg, var(--slate-100) 0%, var(--gold-50) 100%);
}

.home-guides-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.home-guides-intro .section-sub { margin-bottom: 1.5rem; }

.home-guides-cta {
  display: inline-flex;
}

.home-guides-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-guide-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.home-guide-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--slate-200);
  transition: background 0.2s ease, width 0.2s ease;
}

.home-guide-item:hover {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.home-guide-item:hover::before {
  background: var(--teal-600);
  width: 5px;
}

.home-guide-item--featured {
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-50) 100%);
  border-color: rgba(26, 155, 118, 0.28);
}

.home-guide-item--featured::before {
  background: var(--teal-600);
  width: 5px;
}

.home-guide-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.home-guide-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.home-guide-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  background: rgba(11, 31, 58, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.home-guide-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.home-guide-item--featured .home-guide-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.home-guide-excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-guide-item--featured .home-guide-excerpt {
  -webkit-line-clamp: 3;
}

.home-guide-read {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-600);
  transition: color 0.2s ease;
}

.home-guide-item:hover .home-guide-read { color: var(--teal-600); }

.mt-sm { margin-top: 1rem; }
.mt-lg { margin-top: 2.5rem; }

/* ── Topbar ── */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
}

.topbar-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.65);
}

.topbar-trust svg { color: var(--teal-400); flex-shrink: 0; }

.topbar-phone {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.topbar-phone:hover { color: var(--teal-400); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.03em;
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.15s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-800);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(26, 155, 118, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #168f6c 0%, var(--teal-600) 100%);
  box-shadow: 0 6px 20px rgba(26, 155, 118, 0.45);
  color: var(--white);
}

.btn-header {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}

.btn-header:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}

.btn-block { width: 100%; }

.btn-light {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover { background: var(--slate-100); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-footer-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-footer-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* ── Hero ── */
.hero-pro {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-pro-content {
  color: var(--white);
}

.hero-pro-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-800) 50%, #0d2d4f 100%);
  z-index: 0;
}

.hero-pro-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 75%);
}

.hero-pro-bg::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(26, 155, 118, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-pro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-trust-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-pro-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

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

.hero-pro-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 1.35rem 0 0;
}

.hero-pro-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-pro-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.hero-pro-points svg {
  flex-shrink: 0;
  color: var(--teal-400);
}

.hero-pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-pro-city { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

/* ── Consultation panel ── */
.consultation-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-form);
  color: var(--slate-900);
}

.consultation-panel .form-check,
.consultation-panel .form-disclaimer {
  color: var(--slate-600);
}

.consultation-panel .form-check a {
  color: var(--navy-700);
}

.consultation-panel-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400), var(--gold-500));
}

.consultation-panel-body {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.consultation-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.4rem;
}

.consultation-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

.consultation-sub {
  color: var(--slate-500);
  font-size: 0.88rem;
  margin: 0 0 1.35rem;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group { margin-bottom: 0.9rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--slate-700);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.label-optional { font-weight: 400; color: var(--slate-400); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--slate-50);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19, 47, 82, 0.1);
}

.input-readonly {
  background: var(--slate-100) !important;
  color: var(--slate-500);
}

.btn-submit { margin-top: 0.15rem; padding-block: 0.9rem; }

.form-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: var(--slate-400);
  text-align: center;
  line-height: 1.5;
}

.form-feedback {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.form-feedback.is-success {
  background: var(--teal-50);
  color: #0d5c44;
  border: 1px solid #a7e8d4;
}

.form-feedback.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Stats bar ── */
.stats-bar {
  position: relative;
  margin-top: -2.5rem;
  z-index: 2;
  padding-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 10px;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ── Features ── */
.features-section { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-box-pro:hover {
  border-color: rgba(26, 155, 118, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--teal-400);
  border-radius: 10px;
  margin-bottom: 1.15rem;
}

.feature-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.feature-box p {
  color: var(--slate-500);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Process ── */
.process-section {
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--slate-50) 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline-pro::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-600), var(--navy-600));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.process-step:hover { box-shadow: var(--shadow-md); }

.process-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--teal-400);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.process-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.process-step p {
  color: var(--slate-500);
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ── Cities ── */
.cities-section { background: var(--white); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.85rem;
}

.cities-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.city-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.1rem;
  background: var(--slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.city-card:hover {
  background: var(--white);
  border-color: var(--navy-600);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.city-card-icon {
  color: var(--teal-600);
  display: flex;
}

.city-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.9rem;
}

.city-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
  transition: color 0.15s ease;
}

.city-card:hover .city-card-link { color: var(--teal-600); }

/* ── SEO content ── */
.breadcrumb-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.35rem;
  color: var(--slate-400);
}

.breadcrumb a { text-decoration: none; color: var(--navy-700); }
.breadcrumb a:hover { text-decoration: underline; }

.seo-content { max-width: 760px; margin-inline: auto; }

.seo-content-pro .content-section { margin-bottom: 2.75rem; }

.seo-content-pro .content-section h2 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--slate-200);
}

.seo-content-pro .content-section p {
  color: var(--slate-700);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 0.97rem;
}

.seo-content-pro .content-section p:last-child { margin-bottom: 0; }

.seo-content-pro .content-section a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-content-hub { max-width: 820px; }

.hero-pro-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.city-toc {
  background: var(--slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.city-toc-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-500);
  margin: 0 0 0.75rem;
}

.city-toc-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.city-toc-list a {
  color: var(--navy-700);
  text-decoration: none;
  font-size: 0.92rem;
}

.city-toc-list a:hover { text-decoration: underline; }

.city-district-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.city-district-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.city-district-list strong {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-size: 0.95rem;
}

.city-district-list span {
  color: var(--slate-500);
  font-size: 0.88rem;
  line-height: 1.55;
}

.city-districts-section > p {
  color: var(--slate-700);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
}

.city-district-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.city-district-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.city-district-pill:hover {
  border-color: var(--navy-600);
  background: var(--slate-50);
}

.city-district-details {
  display: grid;
  gap: 1rem;
}

.city-district-card {
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  scroll-margin-top: 5rem;
}

.city-district-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--navy-800);
  font-family: var(--font-display);
}

.city-district-card-note {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.city-district-card p:last-child {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.75;
}

.city-guide-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.city-guide-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.city-guide-link:hover {
  border-color: var(--navy-600);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.city-guide-link-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.92rem;
}

.city-guide-link-desc {
  color: var(--slate-500);
  font-size: 0.85rem;
}

.content-section-muted {
  background: var(--slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.65rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 1.15rem;
  transition: border-color 0.15s ease;
}

.faq-item[open] { border-color: var(--navy-600); }

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-800);
  padding: 1rem 0;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--teal-600);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CTA band (city pages) ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  margin: 0 0 0.4rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 0.95rem;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 2.5rem;
}

.footer-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-cta-text h2 {
  color: var(--white);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin: 0 0 0.35rem;
}

.footer-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-trust-badges span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(26, 155, 118, 0.12);
  border: 1px solid rgba(26, 155, 118, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-nav-list a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-nav-list a:hover,
.footer-contact-list a:hover { color: var(--teal-400); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--teal-400);
}

.footer-map iframe {
  width: 100%;
  height: 140px;
  border: 0;
  border-radius: var(--radius-sm);
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-org a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 600;
}

.footer-org a:hover {
  color: var(--teal-400);
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-domain { color: rgba(255, 255, 255, 0.55); }

/* ── Form onayları ── */
.form-consents {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--slate-600);
  cursor: pointer;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--teal-600);
}

.form-check a {
  color: var(--navy-700);
  font-weight: 600;
}

.form-check em {
  font-style: normal;
  color: var(--slate-400);
  font-size: 0.72rem;
}

.form-disclaimer a {
  color: var(--slate-500);
  text-decoration: underline;
}

/* ── Yasal sayfalar ── */
.legal-content h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--navy-800);
}

.legal-content h2:first-of-type { margin-top: 1.25rem; }

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--slate-700);
  line-height: 1.75;
}

.legal-content p {
  color: var(--slate-700);
  line-height: 1.75;
  margin: 0 0 0.75rem;
}

.legal-content a { color: var(--teal-700); font-weight: 600; }

.legal-updated {
  margin-top: 2rem !important;
  font-size: 0.85rem;
  color: var(--slate-500) !important;
}

/* ── Çerez banner ── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 1rem;
  background: rgba(7, 20, 34, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 52ch;
}

.cookie-banner-text a {
  color: var(--teal-400);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.cookie-banner .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.cookie-banner .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

body.has-cookie-banner .whatsapp-float {
  bottom: calc(24px + 88px);
}

@media (max-width: 575px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions .btn {
    flex: 1;
    justify-content: center;
  }

  body.has-cookie-banner .whatsapp-float {
    bottom: calc(16px + 120px);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ── WhatsApp ── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ── Inner pages ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding-block: 3.5rem;
}

.page-hero h1 {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero .hero-text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin-top: 0.85rem;
  font-size: 1.02rem;
}

.page-content { background: var(--white); }

.content-prose { max-width: 760px; margin-inline: auto; }
.content-prose p { color: var(--slate-500); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── İletişim sayfası ── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, #123a5c 100%);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(26, 155, 118, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-hero-text h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.contact-hero-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 48ch;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-page {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.contact-card {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(26, 155, 118, 0.35);
  box-shadow: var(--shadow-sm);
}

.contact-card--accent {
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--white) 100%);
  border-color: rgba(26, 155, 118, 0.25);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--slate-100);
  color: var(--navy-700);
}

.contact-card--accent .contact-card-icon {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
}

.contact-card h2 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 0.3rem;
}

.contact-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--navy-800);
  line-height: 1.55;
  font-weight: 500;
}

.contact-card a {
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--teal-700);
  text-decoration: underline;
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: min(360px, 50vw);
  border: 0;
}

.contact-form-col .consultation-panel {
  box-shadow: var(--shadow-lg);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.contact-info-list li {
  padding: 1rem 1.15rem;
  background: var(--slate-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.contact-map-large iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.features-grid--3 { grid-template-columns: repeat(3, 1fr); }

.content-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.image-placeholder {
  min-height: 280px;
  background: var(--slate-100);
  border: 1px dashed var(--slate-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  font-weight: 600;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .topbar-trust { display: none; }

  .hero-pro-inner { grid-template-columns: 1fr; }
  .hero-pro-form { order: -1; }

  .stats-bar { margin-top: -1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .features-grid,
  .process-timeline,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-why-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-why-feature:nth-child(2) { border-right: none; }
  .home-why-feature:nth-child(1),
  .home-why-feature:nth-child(2) { border-bottom: 1px solid var(--color-border); }

  .home-brands-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-brands-lead {
    justify-self: start;
    max-width: none;
  }

  .home-workflow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .home-workflow-steps::before { display: none; }

  .home-guides-layout {
    grid-template-columns: 1fr;
  }

  .process-timeline-pro::before { display: none; }
  .process-step { margin: 0 0 0.75rem; }

  .nav-toggle-label { display: flex; }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-toggle:checked ~ .site-nav { max-height: 480px; }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
  }

  .nav-cta .btn-header { width: 100%; justify-content: center; }

  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-col {
    order: -1;
  }

  .two-col,
  .features-grid--3,
  .footer-cta-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .hero-pro-title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .hero-pro-lead {
    font-size: 0.98rem;
  }

  .hero-pro-meta {
    font-size: 0.82rem;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1;
    justify-content: center;
    min-height: 44px;
  }

  .city-district-nav {
    gap: 0.35rem;
  }

  .city-district-pill {
    padding: 0.5rem 0.85rem;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .city-district-card {
    padding: 1rem;
  }

  .city-toc {
    padding: 1rem 1.1rem;
  }

  .breadcrumb {
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  .btn,
  .nav-link,
  .btn-header {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .stats-grid,
  .features-grid,
  .footer-grid,
  .guide-article-layout {
    grid-template-columns: 1fr;
  }

  .process-timeline { grid-template-columns: 1fr; }

  .home-why-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .home-why-features {
    grid-template-columns: 1fr;
  }

  .home-why-feature {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .home-why-feature:last-child {
    border-bottom: none;
  }

  .home-brand-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .home-brand-arrow {
    display: none;
  }

  .home-workflow-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-workflow-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 0 0 1.25rem 0.5rem;
    border-left: 2px solid var(--slate-200);
    margin-left: 1.25rem;
  }

  .home-workflow-step:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }

  .home-workflow-node {
    margin-bottom: 0;
    margin-left: -1.85rem;
    flex-shrink: 0;
  }

  .home-workflow-no {
    width: 48px;
    height: 48px;
    font-size: 0.8rem;
  }

  .home-workflow-card {
    flex: 1;
    text-align: left;
  }

  .home-guides-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Enerji Rehberi ── */
.page-hero-guide { padding-block: 3.5rem; }

.hero-badge-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.85rem;
}

.guide-category-block { margin-bottom: 3rem; }

.guide-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-700);
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--slate-200);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.guide-card:hover {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.5rem;
}

.guide-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.guide-card-excerpt {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin: 0 0 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-600);
}

.guide-card:hover .guide-card-link { color: var(--teal-600); }

.guide-cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.guide-cta-box h2 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

.guide-cta-box p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}

.guide-cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--slate-200);
}

.btn-ghost-dark:hover {
  background: var(--slate-100);
  border-color: var(--navy-600);
  color: var(--navy-800);
}

.guide-cta-box .btn-ghost-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.guide-cta-box .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.guide-home-section { background: var(--slate-100); }

.guide-home-more { margin: 2rem 0 0; }

.guide-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.guide-article-header { margin-bottom: 2.5rem; }

.guide-article-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.65rem;
}

.guide-article-header h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  margin: 0 0 1rem;
}

.guide-article-intro {
  font-size: 1.05rem;
  color: var(--slate-700);
  line-height: 1.8;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--teal-600);
}

.guide-article .content-section {
  margin-bottom: 2.25rem;
}

.guide-article .content-section h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--slate-200);
}

.guide-article .content-section p {
  color: var(--slate-700);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.guide-article .content-section a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-article .content-section a:hover {
  color: var(--navy-800);
}

/* ── Grup ekosistemi / anahtar teslim ── */
.ecosystem-section {
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--white) 100%);
}

.ecosystem-section--compact {
  background: var(--white);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ecosystem-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ecosystem-card--link {
  text-decoration: none;
  color: inherit;
}

.ecosystem-card--link:hover {
  border-color: rgba(26, 155, 118, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ecosystem-card--highlight {
  border-color: rgba(26, 155, 118, 0.35);
  background: linear-gradient(160deg, var(--white) 0%, var(--teal-50) 100%);
}

.ecosystem-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.65rem;
}

.ecosystem-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}

.ecosystem-card p {
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  flex: 1;
}

.ecosystem-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.ecosystem-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 0.4rem;
}

.ecosystem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-600);
}

.ecosystem-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-700);
  text-decoration: none;
  margin-top: auto;
}

.ecosystem-link:hover {
  color: var(--navy-800);
}

.ecosystem-more {
  margin: 1.75rem 0 0;
  text-align: center;
}

.turnkey-section {
  background: var(--navy-900);
  color: var(--white);
}

.turnkey-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 155, 118, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
}

.turnkey-content .section-eyebrow {
  color: var(--teal-400);
}

.turnkey-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0.5rem 0 1rem;
  color: var(--white);
}

.turnkey-content > p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 52rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.turnkey-points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.turnkey-points li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.turnkey-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-400);
  font-weight: 700;
}

.turnkey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.turnkey-actions .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.turnkey-actions .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.guide-article-cta {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--teal-50);
  border: 1px solid rgba(26, 155, 118, 0.2);
  border-radius: var(--radius);
}

.guide-article-cta h2 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.guide-article-cta p {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin: 0 0 1rem;
}

.guide-sidebar { display: grid; gap: 1.25rem; position: sticky; top: 100px; }

.guide-sidebar-box {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.guide-sidebar-box h2 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  margin: 0 0 1rem;
}

.guide-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.guide-related-list a {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.45;
}

.guide-related-list a:hover { color: var(--teal-600); }

.guide-related-cat {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 0.2rem;
}

.guide-sidebar-contact p {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.guide-sidebar-contact .btn { margin-bottom: 0.5rem; }

.guide-empty {
  text-align: center;
  color: var(--slate-500);
  padding: 3rem;
}

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

  .turnkey-points {
    grid-template-columns: 1fr;
  }

  .guide-article-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .guide-sidebar { grid-template-columns: 1fr; }
}

/* ── Hakkımızda ── */
.about-page .breadcrumb-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
}

.about-intro {
  background: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.65rem;
}

.about-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.1;
}

.about-title-accent {
  width: 4.5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  border-radius: 2px;
  margin: 0.85rem 0 1.75rem;
}

.about-prose {
  display: grid;
  gap: 1.15rem;
}

.about-prose p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.9;
}

.about-prose strong {
  color: var(--navy-800);
  font-weight: 600;
}

.about-prose a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-intro-media {
  margin: 0;
  position: relative;
}

.about-intro-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 978 / 644;
}

.about-media-caption {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.about-media-caption svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--teal-600);
}

.about-stats {
  background: var(--slate-50);
  border-block: 1px solid var(--color-border);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}

.about-stat span {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.about-values {
  background: var(--white);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-value-card {
  padding: 1.5rem;
  background: var(--slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-sm);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.about-value-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
}

.about-value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.75;
}

.about-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.about-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-cta h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  margin: 0 0 0.4rem;
}

.about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 42ch;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-media {
    order: -1;
    max-width: 640px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-actions {
    flex-direction: column;
  }

  .about-intro-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
