/* Standalone stylesheet for the PHP-rendered blog section — mirrors the main
   site's actual design tokens exactly (tailwind.config.ts + globals.css):
   primary #00AFC4, cyan accent #06B6D4, dark navy #07111F/#030c18, Sora
   display font, Inter body font, rounded-4xl/5xl cards, shadow-soft/premium,
   the platform-mesh gradient used on every page's hero/CTA sections.

   The site has no dark mode (globals.css: `color-scheme: light`, no .dark
   class is ever applied anywhere) — this file is deliberately light-only,
   matching that. Dark sections here (hero band, CTA box, footer) mirror
   where the real site itself uses dark as a fixed accent, not a theme. */

:root {
  --primary: #00AFC4;
  --cyan: #06B6D4;
  --electric: #2563EB;
  --secondary: #1E293B;
  --ink: #0F172A;
  --muted: #475569;
  --muted-light: #94A3B8;
  --border: #E2E8F0;
  --surface: #F8FAFC;
  --body-bg: #F5F7FA;
  --navy: #07111F;
  --footer-bg: #030c18;
  color-scheme: light;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
}

h1, h2, h3, .display {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a { color: var(--primary); text-decoration: none; }
p a, li a { text-decoration: underline; text-underline-offset: 2px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ─── Header — full replica of site-header.tsx: top utility bar, main nav
   with 5 dropdown mega-menus, mobile slide-out. No React/framer-motion in
   PHP, so interactivity is plain click-toggled panels with a CSS
   transition (see the <script> in _layout.php's blogHeaderNav()). ─── */
.site-header { position: sticky; top: 0; z-index: 50; }

.header-topbar { display: none; border-bottom: 1px solid var(--border); background: rgba(248,250,252,0.9); backdrop-filter: blur(4px); }
@media (min-width: 1024px) { .header-topbar { display: block; } }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; }
.topbar-left { display: flex; align-items: center; gap: 16px; font-size: 11px; color: var(--muted); }
.topbar-dot { display: flex; align-items: center; gap: 6px; }
.topbar-dot span { height: 6px; width: 6px; border-radius: 999px; background: #10B981; }
.topbar-sep { color: #CBD5E1; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--secondary); }
.topbar-right a:hover { color: var(--primary); text-decoration: none; }
.topbar-divider { height: 12px; width: 1px; background: var(--border); }
.topbar-hours { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted-light); }

.header-main { border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); transition: box-shadow .2s, border-color .2s; }
.site-header.scrolled .header-main { border-color: var(--border); box-shadow: 0 1px 2px rgba(15,23,42,0.06); }
.header-main-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-logo { display: flex; align-items: center; padding: 12px 0; }
.header-logo img { height: 40px; width: auto; display: block; }

.header-nav { display: none; align-items: stretch; }
@media (min-width: 1280px) { .header-nav { display: flex; } }
.nav-item {
  display: flex; align-items: center; gap: 6px; background: none; border: 0; border-bottom: 2px solid transparent;
  padding: 0 16px; font-size: 14px; font-weight: 500; color: var(--muted); cursor: pointer; font-family: "Inter", sans-serif;
  transition: color .15s, border-color .15s;
}
.nav-item:hover { color: var(--ink); border-color: var(--border); }
.nav-item.active { color: var(--primary); border-color: var(--primary); }
.nav-item svg { color: var(--muted-light); transition: transform .15s; }
.nav-item.active svg { color: var(--primary); transform: rotate(180deg); }

.header-ctas { display: flex; align-items: center; gap: 8px; }
.header-call { display: none; align-items: center; gap: 6px; border-radius: 0.5rem; padding: 8px 12px; font-size: 14px; font-weight: 600; color: var(--secondary); }
@media (min-width: 1024px) { .header-call { display: flex; } }
.header-call:hover { background: var(--surface); color: var(--primary); text-decoration: none; }
.header-quote-btn { display: none; border-radius: 0.5rem; background: var(--primary); padding: 8px 16px; font-size: 14px; font-weight: 600; color: #fff; box-shadow: 0 1px 2px rgba(15,23,42,0.08); }
@media (min-width: 1024px) { .header-quote-btn { display: inline-flex; align-items: center; } }
.header-quote-btn:hover { background: #0891A8; text-decoration: none; }
.header-hamburger { display: inline-flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: 0.5rem; border: 1px solid var(--border); background: none; color: var(--secondary); cursor: pointer; }
@media (min-width: 1280px) { .header-hamburger { display: none; } }
.header-hamburger:hover { background: var(--surface); }

/* Dropdown mega-menus */
.mega-menu { display: none; position: absolute; inset-inline: 0; top: 100%; z-index: 40; border-bottom: 1px solid var(--border); background: #fff; box-shadow: 0 20px 40px rgba(15,23,42,0.12); }
.mega-menu.open { display: block; }
.mega-menu-inner { padding: 32px 20px; }
.mega-grid-4 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .mega-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.mega-intro { grid-column: span 1; display: flex; flex-direction: column; justify-content: space-between; border-radius: 1rem; background: var(--navy); padding: 24px; color: #fff; }
.mega-intro-badge { display: inline-block; align-self: flex-start; border-radius: 999px; background: rgba(255,255,255,0.1); padding: 4px 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #67E8F9; }
.mega-intro h3 { margin: 16px 0 0; font-size: 19px; font-weight: 600; line-height: 1.3; color: #fff; }
.mega-intro p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: #94A3B8; }
.mega-intro-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #22D3EE; }
.mega-intro-link:hover { color: #67E8F9; text-decoration: none; }
.mega-intro-link-solid { border-radius: 0.5rem; background: var(--primary); padding: 10px 16px; color: #fff; }
.mega-intro-link-solid:hover { background: #0891A8; color: #fff; }
.mega-products-cols { grid-column: span 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mega-col-title { margin: 0 0 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-light); }
.mega-col ul { list-style: none; margin: 0; padding: 0; }
.mega-col li a { display: block; border-radius: 0.5rem; padding: 8px 10px; margin: 0 -10px; font-size: 14px; color: var(--muted); }
.mega-col li a:hover { background: var(--surface); color: var(--primary); text-decoration: none; }
.mega-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-light); }
.mega-industries-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.mega-industries-head h3 { margin: 4px 0 0; font-size: 19px; font-weight: 600; color: var(--ink); }
.mega-outline-link { display: inline-flex; align-items: center; gap: 8px; border-radius: 0.5rem; border: 1px solid var(--border); padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--secondary); }
.mega-outline-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.mega-industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .mega-industries-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .mega-industries-grid { grid-template-columns: repeat(6, 1fr); } }
.industry-card { display: block; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--surface); padding: 16px; }
.industry-card:hover { border-color: rgba(0,175,196,0.3); background: #fff; box-shadow: 0 8px 20px rgba(15,23,42,0.08); text-decoration: none; }
.industry-icon { display: flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: 0.5rem; background: rgba(0,175,196,0.1); color: var(--primary); }
.industry-card p { margin: 12px 0 0; font-size: 14px; font-weight: 600; color: var(--secondary); }
.mega-simple-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .mega-simple-grid { grid-template-columns: repeat(3, 1fr); } }
.mega-simple-card { display: block; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--surface); padding: 20px; }
.mega-simple-card:hover { border-color: rgba(0,175,196,0.3); background: #fff; box-shadow: 0 8px 20px rgba(15,23,42,0.08); text-decoration: none; }
.mega-simple-card h3 { margin: 8px 0 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.mega-simple-desc { margin: 4px 0 0; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Mobile overlay */
.mobile-backdrop { display: none; position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,0.4); }
.mobile-backdrop.open { display: block; }
.mobile-overlay {
  position: fixed; top: 0; bottom: 0; right: 0; z-index: 50; width: 100%; max-width: 380px;
  background: #fff; box-shadow: -20px 0 60px rgba(15,23,42,0.2);
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s ease-in-out;
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-overlay-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding: 16px 20px; }
.mobile-overlay-head img { height: 32px; width: auto; }
.mobile-overlay-head button { display: flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: 0.5rem; border: 1px solid var(--border); background: none; cursor: pointer; color: var(--secondary); }
.mobile-overlay-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.mobile-section-toggle {
  display: flex; width: 100%; align-items: center; justify-content: space-between; border: 0; background: none;
  border-radius: 0.75rem; padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left;
  font-family: "Inter", sans-serif;
}
.mobile-section-toggle:hover { background: var(--surface); }
.mobile-section-toggle svg { color: var(--muted-light); transition: transform .15s; }
.mobile-section-toggle.active svg { transform: rotate(180deg); }
.mobile-section-body { display: none; margin: 4px 0 8px 16px; padding-left: 16px; border-left: 2px solid var(--border); }
.mobile-section-body.open { display: block; }
.mobile-section-body a { display: block; border-radius: 0.5rem; padding: 8px 12px; font-size: 14px; color: var(--muted); text-decoration: none; }
.mobile-section-body a:hover { background: var(--surface); color: var(--primary); }
.mobile-col-title { margin: 12px 0 4px; padding: 0 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-light); }
.mobile-overlay-footer { border-top: 1px solid var(--border); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 0.75rem; padding: 12px; font-size: 14px; font-weight: 600; text-decoration: none; }
.mobile-cta-outline { border: 1px solid var(--border); background: var(--surface); color: var(--ink); }
.mobile-cta-primary { background: var(--primary); color: #fff; }
.mobile-cta-whatsapp { background: #25D366; color: #fff; }

/* ─── Dark hero band — the platform-mesh gradient used sitewide for hero/CTA sections ─── */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 15% 0%, rgba(37,99,235,0.35), transparent 45%),
    radial-gradient(circle at 85% 100%, rgba(6,182,212,0.25), transparent 45%),
    linear-gradient(160deg, #07111F 0%, #0B1730 55%, #0F1F35 100%);
  color: #fff;
}
.blog-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
}
.blog-hero .wrap { position: relative; }
.blog-hero .eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: #67E8F9;
}
.blog-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); margin: 12px 0 14px; text-wrap: balance; }
.blog-hero p { color: #CBD5E1; font-size: 17px; max-width: 620px; margin: 0; }
.blog-hero .breadcrumb { margin-bottom: 18px; font-size: 13px; color: #94A3B8; }
.blog-hero .breadcrumb a { color: #CBD5E1; }
.blog-hero .breadcrumb a:hover { color: #fff; }
.blog-hero .meta-line { position: relative; margin-top: 18px; font-size: 13px; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Body section (white, matches globals.css body bg) ─── */
.blog-body-section { background: var(--body-bg); }

/* ─── Post cards ─── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
  padding: 48px 0 72px;
}
.post-card {
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 28px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.post-card:hover { border-color: rgba(0,175,196,0.4); box-shadow: 0 20px 60px rgba(15,23,42,0.08); transform: translateY(-2px); }
.post-card .meta { font-size: 12px; font-weight: 600; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.post-card h2 { font-size: 20px; line-height: 1.35; margin: 0 0 10px; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--primary); }
.post-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.post-card .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--primary); }
.empty-state { padding: 64px 0; color: var(--muted); text-align: center; }

/* ─── Single post ─── */
.post-article { max-width: 720px; padding-top: 48px; padding-bottom: 80px; }
.post-body { font-size: 17px; color: #1e293b; }
.post-body h2 { font-size: 25px; margin: 42px 0 14px; color: var(--ink); }
.post-body h3 { font-size: 20px; margin: 30px 0 10px; color: var(--secondary); }
.post-body p { margin: 0 0 18px; color: #334155; }
.post-body ul, .post-body ol { margin: 0 0 18px; padding-left: 22px; color: #334155; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--ink); }

/* ─── FAQ section — plain accordion-style Q&A cards (no JS in this
   PHP-only section, so no interactive collapse — matches the visible
   structure the FAQPage schema above describes) ─── */
.post-faqs { margin-top: 52px; }
.post-faqs h2 { font-size: 22px; margin: 0 0 20px; color: var(--ink); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: var(--surface);
}
.faq-item h3 { font-size: 16px; margin: 0 0 8px; color: var(--ink); }
.faq-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ─── CTA box — mirrors industry-cta.tsx: rounded-5xl bg-platform-mesh shadow-premium ─── */
.post-cta {
  margin-top: 52px;
  padding: 32px;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(37,99,235,0.35), transparent 45%),
    radial-gradient(circle at 85% 100%, rgba(6,182,212,0.25), transparent 45%),
    linear-gradient(160deg, #07111F 0%, #0B1730 55%, #0F1F35 100%);
  color: #fff;
  box-shadow: 0 40px 100px rgba(6,11,22,0.35);
  text-align: center;
}
.post-cta h3 { color: #fff; margin: 0 0 8px; font-size: 21px; }
.post-cta p { color: #CBD5E1; margin: 0 0 22px; font-size: 14px; }
.post-cta .buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.post-cta .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: transform .15s;
}
.post-cta .btn:hover { transform: translateY(-1px); text-decoration: none; }
.post-cta .btn.primary { background: var(--primary); color: #fff; box-shadow: 0 12px 40px rgba(0,175,196,0.25); }
.post-cta .btn.secondary { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); }

.related-links { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border); }
.related-links .label { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 14px; }
.related-links a {
  display: inline-block; margin: 0 10px 10px 0; padding: 9px 18px;
  border: 1px solid var(--border); border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--secondary); text-decoration: none; transition: border-color .15s, color .15s;
}
.related-links a:hover { border-color: rgba(0,175,196,0.4); color: var(--primary); }

.related-posts { margin-top: 44px; }
.related-posts .label { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 16px; }
.related-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.related-post-card {
  display: block; padding: 18px; border: 1px solid var(--border); border-radius: 1.25rem;
  text-decoration: none; transition: border-color .15s, box-shadow .15s;
}
.related-post-card:hover { border-color: rgba(0,175,196,0.4); box-shadow: 0 12px 30px rgba(15,23,42,0.06); }
.related-post-card h4 { font-size: 15px; margin: 0 0 6px; color: var(--ink); font-family: "Sora", sans-serif; font-weight: 600; }
.related-post-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ─── Pagination ─── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 0 0 56px; }
.pagination a, .pagination span {
  min-width: 40px; text-align: center; padding: 9px 14px; border-radius: 999px; font-size: 14px;
  font-weight: 600; border: 1px solid var(--border); color: var(--secondary); text-decoration: none;
}
.pagination a:hover { border-color: rgba(0,175,196,0.4); color: var(--primary); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ─── Footer — full replica of src/components/site-footer.tsx, embedded
   here so blog pages share the exact same footer as the rest of the site
   instead of a reduced version. #030c18, cyan hairline top. ─── */
.blog-footer { position: relative; overflow: hidden; background: var(--footer-bg); color: #fff; padding: 64px 0 0; }
.blog-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.5), transparent);
}
.blog-footer .footer-inner { position: relative; }
.blog-footer .footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .blog-footer .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1fr; }
}
.blog-footer .footer-logo img { height: 34px; width: auto; }
.blog-footer .footer-tagline { margin: 16px 0 0; max-width: 320px; font-family: "Sora", sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.blog-footer .contact-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; font-size: 14px; color: #CBD5E1; }
.blog-footer .contact-item { display: flex; align-items: flex-start; gap: 12px; }
.blog-footer .contact-item svg { margin-top: 2px; flex-shrink: 0; color: #67E8F9; }
.blog-footer .contact-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: #22D3EE; }
.blog-footer .contact-item p { margin: 2px 0 0; line-height: 1.4; color: #CBD5E1; }
.blog-footer h3.footer-heading { margin: 0; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.35em; color: #67E8F9; font-family: "Inter", sans-serif; }
.blog-footer .footer-links { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.blog-footer .footer-links a { color: #CBD5E1; text-decoration: none; transition: color .15s; }
.blog-footer .footer-links a:hover { color: #fff; }
.blog-footer .newsletter-copy { margin: 20px 0 0; font-size: 14px; line-height: 1.7; color: #CBD5E1; }
.blog-footer .newsletter-form { margin-top: 16px; display: flex; align-items: center; gap: 12px; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); padding: 8px; }
.blog-footer .newsletter-form input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; padding: 8px 12px; font-size: 14px; color: #fff; }
.blog-footer .newsletter-form input::placeholder { color: #94A3B8; }
.blog-footer .newsletter-form button { border-radius: 0.75rem; background: var(--primary); color: #fff; border: 0; padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer; transition: filter .15s; }
.blog-footer .newsletter-form button:hover { filter: brightness(1.1); }
.blog-footer .newsletter-form button:disabled { cursor: not-allowed; opacity: 0.7; }
.blog-footer .newsletter-msg { margin: 12px 0 0; font-size: 12px; }
.blog-footer .newsletter-msg.success { color: #6EE7B7; }
.blog-footer .newsletter-msg.error { color: #FCA5A5; }
.blog-footer .socials { margin-top: 24px; display: flex; gap: 12px; }
.blog-footer .socials a { display: flex; height: 40px; width: 40px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #CBD5E1; transition: border-color .15s, color .15s; }
.blog-footer .socials a:hover { border-color: rgba(0,175,196,0.4); color: #67E8F9; }
.blog-footer .footer-bottom { position: relative; margin-top: 48px; display: flex; flex-direction: column; gap: 16px; border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0 32px; font-size: 14px; color: #94A3B8; }
@media (min-width: 640px) {
  .blog-footer .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.blog-footer .footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.blog-footer .iso-badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); padding: 6px 14px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; color: #A5F3FC; }
.blog-footer .footer-bottom > .footer-badges a { display: inline-flex; align-items: center; gap: 4px; color: #94A3B8; text-decoration: none; transition: color .15s; }
.blog-footer .footer-bottom > .footer-badges a:hover { color: #fff; }
.blog-footer .footer-copyright { display: flex; flex-direction: column; gap: 4px; text-align: left; }
@media (min-width: 640px) {
  .blog-footer .footer-copyright { text-align: right; }
}
.blog-footer .footer-copyright p { margin: 0; }
.blog-footer .footer-credit { font-size: 12px; color: #64748B; }
.blog-footer .footer-credit a { color: #64748B; text-decoration: none; transition: color .15s; }
.blog-footer .footer-credit a:hover { color: #fff; }

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .header-logo img { height: 32px; }
  .blog-hero { padding: 44px 0 40px; }
  .post-grid { grid-template-columns: 1fr; padding: 32px 0 48px; }
  .post-cta { padding: 24px; }
  .post-article { padding: 32px 0 56px; }
}
