/* İzmirde Elektrikçi — özgün tasarım sistemi (ide-) */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --ide-ink: #121214;
  --ide-ink-soft: #2a2a30;
  --ide-paper: #f6f3ec;
  --ide-paper-dark: #ebe6db;
  --ide-cream: #fffef9;
  --ide-coral: #e85d4c;
  --ide-coral-dark: #c94a3a;
  --ide-blue: #2f6fed;
  --ide-blue-dark: #1e4fb8;
  --ide-lime: #c8f135;
  --ide-muted: #6b6b76;
  --ide-line: #d8d4cb;
  --ide-line-dark: rgba(255,255,255,.12);
  --ide-font-display: 'Syne', system-ui, sans-serif;
  --ide-font-body: 'DM Sans', system-ui, sans-serif;
  --ide-max: 1180px;
  --ide-read: 720px;
  --ide-nav-h: 72px;
  --ide-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.ide-body {
  margin: 0;
  font-family: var(--ide-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ide-ink);
  background: var(--ide-cream);
  padding-bottom: 76px;
}
@media (min-width: 768px) { body.ide-body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.ide-skip { position: absolute; left: -9999px; }
.ide-skip:focus { left: 1rem; top: 1rem; z-index: 9999; background: var(--ide-lime); padding: .5rem 1rem; }

/* ── Header ── */
.ide-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--ide-nav-h);
  background: var(--ide-ink);
  border-bottom: 1px solid var(--ide-line-dark);
}
.ide-header__inner {
  max-width: var(--ide-max); margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.ide-brand {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; color: #fff;
}
.ide-brand__mark {
  width: 44px; height: 44px;
  background: var(--ide-coral);
  display: grid; place-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.ide-brand__mark svg { width: 22px; height: 22px; fill: #fff; }
.ide-brand__name {
  font-family: var(--ide-font-display);
  font-weight: 800; font-size: 1.125rem;
  letter-spacing: -.02em; line-height: 1.1;
}
.ide-brand__sub { font-size: .65rem; opacity: .55; letter-spacing: .14em; text-transform: uppercase; }

.ide-header__actions { display: flex; align-items: center; gap: .5rem; }
.ide-btn-call {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ide-lime); color: var(--ide-ink);
  font-weight: 700; font-size: .875rem;
  padding: .55rem 1rem; text-decoration: none;
  transition: transform .2s var(--ide-ease), box-shadow .2s;
}
.ide-btn-call:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,241,53,.35); }
.ide-btn-call--ghost {
  background: transparent; color: #fff;
  border: 1px solid var(--ide-line-dark);
}
.ide-menu-toggle {
  width: 44px; height: 44px; border: none; cursor: pointer;
  background: transparent; color: #fff;
  display: grid; place-items: center;
}
@media (min-width: 900px) { .ide-menu-toggle { display: none; } }

.ide-nav-desktop {
  display: none; align-items: center; gap: 1.75rem;
  font-size: .9rem; font-weight: 500;
}
@media (min-width: 900px) { .ide-nav-desktop { display: flex; } }
.ide-nav-desktop a {
  color: rgba(255,255,255,.75); text-decoration: none;
  transition: color .15s;
}
.ide-nav-desktop a:hover { color: var(--ide-lime); }

/* Fullscreen menu overlay */
.ide-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ide-ink);
  transform: translateX(100%);
  transition: transform .4s var(--ide-ease);
  overflow-y: auto;
}
.ide-overlay.is-open { transform: translateX(0); }
.ide-overlay__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--ide-line-dark);
}
.ide-overlay__close {
  width: 44px; height: 44px; border: 1px solid var(--ide-line-dark);
  background: transparent; color: #fff; cursor: pointer; font-size: 1.25rem;
}
.ide-overlay__nav { padding: 2rem 1.25rem; }
.ide-overlay__nav a {
  display: block; font-family: var(--ide-font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem); font-weight: 700;
  color: #fff; text-decoration: none; padding: .65rem 0;
  border-bottom: 1px solid var(--ide-line-dark);
}
.ide-overlay__nav a:hover { color: var(--ide-lime); }
.ide-overlay__sub { padding: 0 1.25rem 2rem; }
.ide-overlay__sub a {
  display: block; color: rgba(255,255,255,.6); text-decoration: none;
  padding: .4rem 0; font-size: .95rem;
}
.ide-overlay__sub a:hover { color: var(--ide-coral); }

/* ── Hero ── */
.ide-hero {
  background: var(--ide-ink);
  color: #fff;
  position: relative; overflow: hidden;
  min-height: min(88vh, 780px);
  display: grid; align-items: end;
}
.ide-hero__grid-bg {
  position: absolute; inset: 0; opacity: .07;
  background-image:
    linear-gradient(var(--ide-line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--ide-line-dark) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ide-hero__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 520px;
  top: -10%; right: -15%;
  background: radial-gradient(circle, rgba(232,93,76,.45) 0%, transparent 65%);
  pointer-events: none;
}
.ide-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--ide-max); margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid; gap: 2.5rem;
}
@media (min-width: 900px) {
  .ide-hero__inner {
    grid-template-columns: 1.15fr .85fr;
    align-items: end; padding-bottom: 5rem;
  }
}
.ide-hero__eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ide-lime);
  margin-bottom: 1rem;
}
.ide-hero__title {
  font-family: var(--ide-font-display);
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 800; line-height: .95; letter-spacing: -.03em;
  margin: 0 0 1.25rem;
}
.ide-hero__title em { font-style: normal; color: var(--ide-coral); }
.ide-hero__lead { font-size: 1.15rem; opacity: .82; max-width: 32rem; margin: 0 0 2rem; }
.ide-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.ide-btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ide-coral); color: #fff;
  font-weight: 700; padding: 1rem 1.5rem;
  text-decoration: none; font-size: 1rem;
  transition: background .2s, transform .2s var(--ide-ease);
}
.ide-btn-primary:hover { background: var(--ide-coral-dark); transform: translateY(-2px); }
.ide-btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 2px solid rgba(255,255,255,.35); color: #fff;
  font-weight: 600; padding: .9rem 1.4rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.ide-btn-outline:hover { border-color: var(--ide-lime); background: rgba(200,241,53,.08); }

.ide-hero-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ide-line-dark);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.ide-hero__visual {
  border: 1px solid var(--ide-line-dark);
  overflow: hidden;
  line-height: 0;
  background: rgba(0,0,0,.25);
}
.ide-hero__visual img { width: 100%; height: auto; object-fit: cover; }
.ide-hero__aside { display: flex; flex-direction: column; gap: 1rem; }
.ide-hero__chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem;
}
.ide-hero__chip {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .75rem; border: 1px solid var(--ide-line-dark);
  color: rgba(255,255,255,.75);
}
.ide-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ide-line-dark); }
.ide-stat {
  background: rgba(0,0,0,.35); padding: 1.25rem 1rem; text-align: center;
}
.ide-stat__num {
  font-family: var(--ide-font-display);
  font-size: 1.75rem; font-weight: 800; color: var(--ide-lime);
}
.ide-stat__lbl { font-size: .7rem; opacity: .6; text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }

/* Marquee */
.ide-marquee {
  background: var(--ide-coral); color: #fff;
  overflow: hidden; white-space: nowrap;
  padding: .65rem 0; font-size: .8rem; font-weight: 600; letter-spacing: .06em;
}
.ide-marquee__track {
  display: inline-flex; animation: ide-marquee 28s linear infinite;
}
.ide-marquee__track span { padding: 0 2rem; }
.ide-marquee__track span::after { content: '◆'; margin-left: 2rem; opacity: .5; }
@keyframes ide-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.ide-wrap { max-width: var(--ide-max); margin: 0 auto; padding: 0 1.25rem; }
.ide-section { padding: 4.5rem 0; }
.ide-section--paper { background: var(--ide-paper); }
.ide-section--dark { background: var(--ide-ink); color: #fff; }
.ide-section__head { margin-bottom: 2.5rem; max-width: 36rem; }
.ide-kicker {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ide-coral); margin-bottom: .5rem;
}
.ide-section--dark .ide-kicker { color: var(--ide-lime); }
.ide-h2 {
  font-family: var(--ide-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 0;
}
.ide-lead { color: var(--ide-muted); margin-top: .75rem; }
.ide-section--dark .ide-lead { color: rgba(255,255,255,.65); }

/* Bento services */
.ide-bento {
  display: grid; gap: 1px;
  background: var(--ide-line);
  border: 1px solid var(--ide-line);
}
@media (min-width: 640px) { .ide-bento { grid-template-columns: repeat(3, 1fr); } }
.ide-bento__item {
  background: var(--ide-cream); padding: 1.75rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; min-height: 200px;
  transition: background .2s;
  position: relative; overflow: hidden;
}
.ide-bento__item:hover { background: #fff; }
.ide-bento__item--wide { grid-column: span 1; }
@media (min-width: 640px) { .ide-bento__item--wide { grid-column: span 2; } }
.ide-bento__item--accent { background: var(--ide-ink); color: #fff; }
.ide-bento__item--accent:hover { background: var(--ide-ink-soft); }
.ide-bento__icon {
  width: 40px; height: 40px; margin-bottom: 1rem;
  background: var(--ide-paper); display: grid; place-items: center;
  font-size: 1.1rem; color: var(--ide-coral);
}
.ide-bento__item--accent .ide-bento__icon { background: rgba(255,255,255,.1); color: var(--ide-lime); }
.ide-bento__title { font-family: var(--ide-font-display); font-weight: 700; font-size: 1.15rem; margin: 0 0 .5rem; }
.ide-bento__desc { font-size: .9rem; color: var(--ide-muted); flex: 1; }
.ide-bento__item--accent .ide-bento__desc { color: rgba(255,255,255,.65); }
.ide-bento__arrow { margin-top: 1rem; font-weight: 700; font-size: .85rem; color: var(--ide-blue); }
.ide-bento__thumb {
  aspect-ratio: 16/9; overflow: hidden; margin: -1.75rem -1.75rem 1rem;
  background: var(--ide-paper);
}
.ide-bento__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ide-bento__item--wide .ide-bento__thumb { aspect-ratio: 21/9; }

/* Homepage — acil durumlar */
.ide-problem-grid {
  display: grid; gap: 1px;
  background: var(--ide-line); border: 1px solid var(--ide-line);
}
@media (min-width: 640px) { .ide-problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ide-problem-grid { grid-template-columns: repeat(3, 1fr); } }
.ide-problem-card {
  background: #fff; padding: 1.5rem; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; min-height: 180px;
  transition: background .2s, transform .2s var(--ide-ease);
}
.ide-problem-card:hover { background: var(--ide-paper); transform: translateY(-2px); }
.ide-problem-card__icon {
  width: 44px; height: 44px; margin-bottom: 1rem;
  background: var(--ide-paper); color: var(--ide-coral);
  display: grid; place-items: center; font-size: 1.1rem;
}
.ide-problem-card__title {
  font-family: var(--ide-font-display); font-weight: 700;
  font-size: 1.05rem; margin: 0 0 .5rem;
}
.ide-problem-card__text { font-size: .88rem; color: var(--ide-muted); margin: 0; flex: 1; }
.ide-problem-card__link { margin-top: 1rem; font-weight: 700; font-size: .8rem; color: var(--ide-blue); }

/* Homepage — neden biz */
.ide-feature-grid {
  display: grid; gap: 1px;
  background: var(--ide-line); border: 1px solid var(--ide-line);
}
@media (min-width: 640px) { .ide-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ide-feature-grid { grid-template-columns: repeat(3, 1fr); } }
.ide-feature-card {
  background: var(--ide-ink); color: #fff; padding: 1.75rem;
}
.ide-feature-card__icon {
  width: 40px; height: 40px; margin-bottom: 1rem;
  background: rgba(255,255,255,.08); color: var(--ide-lime);
  display: grid; place-items: center;
}
.ide-feature-card__title { font-weight: 700; margin: 0 0 .5rem; font-size: 1rem; }
.ide-feature-card__text { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }

/* Homepage — ilçe kartları */
.ide-district-grid {
  display: grid; gap: 1px;
  background: var(--ide-line); border: 1px solid var(--ide-line);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .ide-district-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ide-district-grid { grid-template-columns: repeat(4, 1fr); } }
.ide-district-card {
  background: #fff; padding: 1.35rem; text-decoration: none; color: inherit;
  display: block; transition: background .15s;
}
.ide-district-card:hover { background: var(--ide-paper); }
.ide-district-card__time {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ide-coral); margin-bottom: .4rem;
}
.ide-district-card__title {
  font-family: var(--ide-font-display); font-weight: 700;
  font-size: 1.05rem; margin: 0 0 .35rem;
}
.ide-district-card__focus { font-size: .82rem; color: var(--ide-muted); margin: 0; line-height: 1.45; }

/* Homepage — mahalle şeridi */
.ide-mahalle-strip {
  display: grid; gap: 1px;
  background: var(--ide-line); border: 1px solid var(--ide-line);
}
@media (min-width: 640px) { .ide-mahalle-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ide-mahalle-strip { grid-template-columns: repeat(4, 1fr); } }
.ide-mahalle-card {
  background: #fff; padding: 1.15rem 1.25rem; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .2rem;
  transition: background .15s;
}
.ide-mahalle-card:hover { background: var(--ide-paper); }
.ide-mahalle-card__name { font-weight: 700; font-size: .95rem; }
.ide-mahalle-card__ilce { font-size: .75rem; color: var(--ide-muted); }
.ide-mahalle-card__time { font-size: .7rem; color: var(--ide-blue); font-weight: 600; margin-top: .25rem; }

/* Reviews with avatar */
.ide-review__head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.ide-review__avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid var(--ide-line);
}
.ide-review__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Trust strip */
.ide-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  padding: 1.25rem 0; border-top: 1px solid var(--ide-line);
  font-size: .9rem; font-weight: 600;
}
.ide-trust span::before { content: '■'; color: var(--ide-coral); margin-right: .5rem; font-size: .5rem; vertical-align: middle; }

/* GEO blocks */
.ide-geo-card {
  background: #fff; border: 1px solid var(--ide-line);
  padding: 1.5rem; margin-bottom: 1rem;
}
.ide-geo-card--def { border-left: 4px solid var(--ide-blue); }
.ide-geo-card__label { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ide-muted); margin-bottom: .5rem; }
.ide-geo-facts {
  background: var(--ide-ink); color: #fff; padding: 1.5rem;
}
.ide-geo-facts dl { display: grid; gap: 1rem; margin: 0; }
.ide-geo-facts dt { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .5; }
.ide-geo-facts dd { margin: .15rem 0 0; font-weight: 600; }

/* District tags */
.ide-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.ide-tag {
  display: inline-block; padding: .55rem 1rem;
  background: #fff; border: 1px solid var(--ide-line);
  text-decoration: none; font-weight: 600; font-size: .875rem;
  transition: all .2s;
}
.ide-tag:hover { border-color: var(--ide-ink); background: var(--ide-ink); color: #fff; }
.ide-tag--cta { background: var(--ide-coral); border-color: var(--ide-coral); color: #fff; }
.ide-tag--cta:hover { background: var(--ide-coral-dark); border-color: var(--ide-coral-dark); }

/* Timeline */
.ide-timeline { display: grid; gap: 0; counter-reset: step; }
@media (min-width: 768px) { .ide-timeline { grid-template-columns: repeat(4, 1fr); } }
.ide-timeline__step {
  padding: 1.5rem 1.25rem; border-top: 3px solid var(--ide-coral);
  counter-increment: step; position: relative;
}
.ide-timeline__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--ide-font-display); font-weight: 800;
  font-size: 2rem; color: var(--ide-paper-dark); display: block; margin-bottom: .5rem;
}
.ide-timeline__title { font-weight: 700; margin-bottom: .35rem; }
.ide-timeline__text { font-size: .9rem; color: var(--ide-muted); margin: 0; }

/* Reviews */
.ide-reviews { display: grid; gap: 1rem; }
@media (min-width: 768px) { .ide-reviews { grid-template-columns: repeat(3, 1fr); } }
.ide-review {
  background: #fff; border: 1px solid var(--ide-line);
  padding: 1.5rem; transform: rotate(0deg);
}
.ide-review:nth-child(2) { transform: translateY(12px); }
.ide-review__stars { color: var(--ide-coral); margin-bottom: .75rem; font-size: .85rem; }
.ide-review__text { font-size: .95rem; margin: 0 0 1rem; }
.ide-review__author { font-weight: 700; font-size: .85rem; }

/* FAQ */
.ide-faq { display: grid; gap: 0; border: 1px solid var(--ide-line); }
@media (min-width: 768px) { .ide-faq { grid-template-columns: 1fr 1fr; } }
.ide-faq__item { border-bottom: 1px solid var(--ide-line); }
.ide-faq__q {
  width: 100%; text-align: left; background: #fff; border: none;
  padding: 1.15rem 1.25rem; font-family: inherit; font-weight: 600;
  font-size: .95rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
}
.ide-faq__q:hover { background: var(--ide-paper); }
.ide-faq__q[aria-expanded="true"] { background: var(--ide-paper); color: var(--ide-coral); }
.ide-faq__q[aria-expanded="true"] .ide-faq__icon { transform: rotate(45deg); }
.ide-faq__icon { font-size: 1.25rem; line-height: 1; transition: transform .2s; flex-shrink: 0; }
.ide-faq__a {
  display: none; padding: 0 1.25rem 1.15rem;
  font-size: .9rem; color: var(--ide-muted);
}
.ide-faq__a.is-open { display: block; }

/* Inner pages */
.ide-page { padding: 2.5rem 0 4rem; }
.ide-page__title {
  font-family: var(--ide-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; letter-spacing: -.02em; margin: 0 0 .75rem;
}
.ide-breadcrumb { display: flex; flex-wrap: wrap; gap: .35rem .5rem; font-size: .8rem; margin-bottom: 1.5rem; color: var(--ide-muted); }
.ide-breadcrumb a { color: var(--ide-blue); text-decoration: none; }
.ide-breadcrumb a:hover { text-decoration: underline; }
.ide-prose h2 { font-family: var(--ide-font-display); font-size: 1.35rem; margin: 2rem 0 .75rem; }
.ide-prose p, .ide-prose li { color: var(--ide-ink-soft); }
.ide-prose ul { padding-left: 1.25rem; }
.ide-split { display: grid; gap: 2rem; }
@media (min-width: 900px) { .ide-split { grid-template-columns: 1fr 300px; } }
.ide-aside-box {
  background: var(--ide-paper); border: 1px solid var(--ide-line);
  padding: 1.5rem; position: sticky; top: calc(var(--ide-nav-h) + 1rem);
}
.ide-aside-box .ide-btn-primary { width: 100%; justify-content: center; margin-bottom: .5rem; }

/* Blog */
.ide-wrap--narrow { max-width: 42rem; }
.ide-blog-grid {
  display: grid; gap: 1px; margin-top: 2.5rem;
  background: var(--ide-line); border: 1px solid var(--ide-line);
}
@media (min-width: 768px) { .ide-blog-grid { grid-template-columns: repeat(2, 1fr); } }
.ide-blog-card {
  display: flex; flex-direction: column; background: #fff; color: inherit;
  text-decoration: none; transition: background .15s;
}
.ide-blog-card:hover { background: var(--ide-paper); }
.ide-blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--ide-paper); }
.ide-blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ide-blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ide-blog-card__tag { font-size: .65rem; font-weight: 700; letter-spacing: .12em; color: var(--ide-coral); }
.ide-blog-card__title {
  font-family: var(--ide-font-display); font-weight: 700; font-size: 1.2rem;
  margin: .5rem 0 .75rem; line-height: 1.25;
}
.ide-blog-card__excerpt { font-size: .9rem; color: var(--ide-muted); margin: 0 0 1rem; flex: 1; }
.ide-blog-card__meta {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
  font-size: .75rem; color: var(--ide-muted);
}
.ide-blog-card__more { color: var(--ide-coral); font-weight: 600; white-space: nowrap; }
.ide-blog-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--ide-muted); margin-bottom: 1.5rem; }
.ide-blog-hero { margin: 1.5rem 0; border: 1px solid var(--ide-line); overflow: hidden; }
.ide-blog-hero img { width: 100%; display: block; }
.ide-blog-geo { display: grid; gap: 1rem; margin-bottom: 2rem; }
.ide-blog-cta {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--ide-line);
}
.ide-related-links { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--ide-line); }
.ide-related-links__title { font-weight: 700; margin-bottom: .75rem; }
.ide-related-links__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.ide-related-links__list a {
  font-size: .85rem; padding: .45rem .9rem; border: 1px solid var(--ide-line);
  text-decoration: none; color: var(--ide-ink); transition: border-color .15s, color .15s;
}
.ide-related-links__list a:hover { border-color: var(--ide-coral); color: var(--ide-coral); }
.ide-takeaways {
  background: var(--ide-paper); border: 1px solid var(--ide-line);
  border-left: 4px solid var(--ide-lime); padding: 1.25rem 1.5rem;
}
.ide-takeaways__title { font-weight: 700; font-size: .85rem; margin-bottom: .75rem; }
.ide-takeaways__title i { color: var(--ide-coral); margin-right: .35rem; }
.ide-takeaways__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.ide-takeaways__list li { display: flex; gap: .5rem; align-items: flex-start; font-size: .9rem; color: var(--ide-ink-soft); }
.ide-takeaways__list i { color: var(--ide-coral); font-size: .65rem; margin-top: .35rem; }
.ide-topic-cluster { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--ide-line); }
.ide-topic-cluster__grid { display: grid; gap: 1.5rem; font-size: .9rem; }
@media (min-width: 640px) { .ide-topic-cluster__grid { grid-template-columns: repeat(3, 1fr); } }
.ide-topic-cluster__label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ide-muted); margin-bottom: .5rem;
}
.ide-topic-cluster__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.ide-topic-cluster__list a { color: var(--ide-blue); text-decoration: none; font-weight: 600; }
.ide-topic-cluster__list a:hover { text-decoration: underline; }

/* Cards grid (listing pages) */
.ide-card-grid { display: grid; gap: 1px; background: var(--ide-line); border: 1px solid var(--ide-line); }
@media (min-width: 640px) { .ide-card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .ide-card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
.ide-card {
  background: #fff; padding: 1.5rem; text-decoration: none; color: inherit;
  display: block; transition: background .15s;
}
.ide-card:hover { background: var(--ide-paper); }
.ide-card__title { font-family: var(--ide-font-display); font-weight: 700; margin: 0 0 .35rem; }
.ide-card__desc { font-size: .9rem; color: var(--ide-muted); margin: 0; }

/* CTA band */
.ide-cta-band {
  background: var(--ide-ink); color: #fff;
  padding: 3.5rem 1.25rem; text-align: center;
}
.ide-cta-band__title { font-family: var(--ide-font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin: 0 0 1rem; }
.ide-cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.5rem; }

/* Footer */
.ide-footer { background: var(--ide-ink-soft); color: rgba(255,255,255,.7); font-size: .9rem; }
.ide-footer__grid {
  max-width: var(--ide-max); margin: 0 auto; padding: 3.5rem 1.25rem;
  display: grid; gap: 2.5rem;
}
@media (min-width: 768px) { .ide-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.ide-footer__brand { font-family: var(--ide-font-display); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: .75rem; }
.ide-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.ide-footer a:hover { color: var(--ide-lime); }
.ide-footer__col h4 { color: #fff; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1rem; }
.ide-footer__links { list-style: none; padding: 0; margin: 0; }
.ide-footer__links li { margin-bottom: .45rem; }
.ide-footer__bar {
  border-top: 1px solid var(--ide-line-dark);
  max-width: var(--ide-max); margin: 0 auto;
  padding: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  font-size: .8rem;
}

/* Floating dock */
.ide-dock {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}
.ide-dock__main {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ide-coral); color: #fff; border: none; cursor: pointer;
  font-size: 1.35rem; box-shadow: 0 8px 24px rgba(232,93,76,.45);
  transition: transform .2s var(--ide-ease);
}
.ide-dock__main.is-open { transform: rotate(45deg); background: var(--ide-ink); }
.ide-dock__actions { display: none; flex-direction: column; gap: .5rem; }
.ide-dock__actions.is-open { display: flex; }
.ide-dock__link {
  display: flex; align-items: center; gap: .6rem;
  background: var(--ide-ink); color: #fff; text-decoration: none;
  padding: .65rem 1rem; font-weight: 600; font-size: .85rem;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.ide-dock__link--wa { background: #128c7e; }
.ide-dock-mobile {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ide-ink);
}
@media (min-width: 768px) { .ide-dock-mobile { display: none; } }
.ide-dock-mobile a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem; color: #fff; text-decoration: none; font-weight: 700; font-size: .9rem;
}
.ide-dock-mobile a:first-child { background: var(--ide-coral); }
.ide-dock-mobile a:last-child { background: #128c7e; }

/* Badges */
.ide-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.ide-badge {
  font-size: .75rem; font-weight: 600; padding: .35rem .75rem;
  background: var(--ide-paper); border: 1px solid var(--ide-line);
}

/* Forms */
.ide-form { display: grid; gap: 1.25rem; }
.ide-form label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .35rem; color: var(--ide-muted); }
.ide-form input,
.ide-form textarea,
.ide-form select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--ide-line);
  background: #fff; font-family: inherit; font-size: 1rem;
}
.ide-form input:focus,
.ide-form textarea:focus { outline: 2px solid var(--ide-blue); outline-offset: 0; border-color: var(--ide-blue); }
.ide-form-box { background: #fff; border: 1px solid var(--ide-line); padding: 2rem; }

@media (prefers-reduced-motion: reduce) {
  .ide-marquee__track { animation: none; }
  * { transition-duration: .01ms !important; }
}