/* =====================================================
   GoPixel — Merged Global + Blog Stylesheet
   Covers: All pages (style.css) + Blog article pages (blog-shared.css)

   Variables reference:
     --orange, --pink, --purple, --magenta
     --grad-1 (135deg), --grad-2 (90deg orange→pink), --grad-3 (90deg pink→purple)
     --dark (#080808), --dark-2 (#0f0f0f), --dark-3 (#161616), --dark-4 (#1e1e1e)
     --white, --gray, --light-gray
     --font-display ('Exo 2'), --font-mono ('Space Mono')
     --nav-h (80px)
===================================================== */
/* Fonts loaded via <link> in HTML with display=swap — no @import here */

:root {
  --orange: #FF6B00;
  --pink: #FF2D87;
  --purple: #9B2DF0;
  --magenta: #C026D3;
  --grad-1: linear-gradient(135deg, #FF6B00 0%, #FF2D87 50%, #9B2DF0 100%);
  --grad-2: linear-gradient(90deg, #FF6B00, #FF2D87);
  --grad-3: linear-gradient(90deg, #FF2D87, #9B2DF0);
  --dark: #080808;
  --dark-2: #0f0f0f;
  --dark-3: #161616;
  --dark-4: #1e1e1e;
  --white: #ffffff;
  --gray: #a0a0a0;
  --light-gray: #e0e0e0;
  --font-display: 'Exo 2', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--grad-1); border-radius: 2px; }

/* Lock background scroll while mobile menu is open */
body.menu-open { overflow: hidden; }

/* ===== SELECTION ===== */
::selection { background: rgba(255,45,135,0.3); color: var(--white); }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,0,0.1);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(8,8,8,0.98);
  border-bottom-color: rgba(255,45,135,0.2);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.nav-logo img { height: 48px; width: 48px; }
.nav-logo-text { font-size: 1.4rem; font-weight: 800; background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }

.nav-logo-wordmark {
  display: flex; align-items: baseline; gap: 0;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 1.55rem; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1;
  text-decoration: none;
}
.nav-logo-go {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.nav-logo-pixel {
  background: linear-gradient(135deg, #FF6B00 0%, #FF2D87 50%, #9B2DF0 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(255,45,135,0.3));
}
@media (max-width: 480px) {
  .nav-logo-wordmark { font-size: 1.25rem; }
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--gray); text-decoration: none; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--grad-2); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--grad-1); color: var(--white) !important; padding: 10px 22px;
  border-radius: 6px; font-size: 0.8rem !important; letter-spacing: 0.08em !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px) !important; }

.nav-toggle { 
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
  background: none; border: none; z-index: 1001; position: relative;
}
.nav-toggle span { 
  display: block; width: 24px; height: 2px; 
  background: #ffffff; border-radius: 2px;
  transition: all 0.3s ease; 
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 40px 5% 80px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,107,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 60%, rgba(255,45,135,0.07) 0%, transparent 50%),
              radial-gradient(ellipse 60% 60% at 20% 80%, rgba(155,45,240,0.06) 0%, transparent 50%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: 
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 2rem;
  font-size: 0.8rem; font-weight: 600; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .grad-text { background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero p { font-size: 1.15rem; color: var(--gray); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--grad-1); color: var(--white);
  padding: 16px 36px; border-radius: 8px; font-size: 1rem;
  font-weight: 700; text-decoration: none; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 30px rgba(255,45,135,0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,45,135,0.4); }

.btn-ghost {
  background: transparent; color: var(--white);
  padding: 15px 36px; border-radius: 8px; font-size: 1rem;
  font-weight: 600; text-decoration: none; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,45,135,0.05); }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 1; display: flex; align-items: center; justify-content: center;
}

.hero-logo-wrap {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}

.hero-logo-wrap img { width: 280px; height: auto; position: relative; z-index: 2; animation: float 6s ease-in-out infinite; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.15);
  animation: spin linear infinite;
}
.hero-ring-1 { width: 100%; height: 100%; animation-duration: 20s; }
.hero-ring-2 { width: 80%; height: 80%; animation-duration: 15s; animation-direction: reverse; border-color: rgba(255,45,135,0.15); }
.hero-ring-3 { width: 60%; height: 60%; animation-duration: 25s; border-color: rgba(155,45,240,0.15); }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--grad-1);
}
.hero-dot-1 { top: 10%; right: 20%; animation: orb 8s ease-in-out infinite; }
.hero-dot-2 { bottom: 20%; left: 15%; animation: orb 10s ease-in-out infinite reverse; background: var(--grad-3); }
@keyframes orb { 0%,100%{transform:translate(0,0);} 33%{transform:translate(20px,-15px);} 66%{transform:translate(-10px,20px);} }

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; padding: 18px 0; background: var(--dark-2);
}
.marquee-track { display: flex; gap: 0; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 40px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray);
}
.marquee-item span { color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section { padding: 100px 5%; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--orange);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label::before { content: '//'; color: var(--pink); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.section-title .grad-text { background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

/* ===== BRAND CHANGE BANNER ===== */
.rebrand-banner {
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,45,135,0.1), rgba(155,45,240,0.15));
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 16px; padding: 24px 32px;
  margin: 0 5% 60px; text-align: center;
  position: relative; overflow: hidden;
}
.rebrand-banner::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-1); opacity: 0.03;
}
.rebrand-banner p { position: relative; font-size: 1rem; color: var(--light-gray); }
.rebrand-banner strong { color: var(--white); }
.rebrand-banner .grad-text { background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 60px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-1); opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 0.04; }

.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,45,135,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,107,0,0.2);
  position: relative; z-index: 1;
}

.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; position: relative; z-index: 1; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; position: relative; z-index: 1; }
.service-tag {
  padding: 4px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem; font-weight: 600; color: var(--gray);
  font-family: var(--font-mono); letter-spacing: 0.05em;
}

/* ===== STATS ===== */
.stats-section { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item {}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1;
  background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ===== PROCESS ===== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 60px; }
.process-step { position: relative; }
.step-num {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--orange);
  margin-bottom: 16px; letter-spacing: 0.1em;
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.step-line {
  position: absolute; top: 24px; right: -16px;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, rgba(255,107,0,0.4), transparent);
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px; margin-top: 60px;
}
.portfolio-card {
  border-radius: 16px; overflow: hidden;
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease; position: relative;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); border-color: rgba(255,45,135,0.2); }

.portfolio-img {
  height: 220px;
  background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.8rem; color: var(--gray); letter-spacing: 0.1em;
}
.portfolio-icon { font-size: 2.5rem; opacity: 0.5; }
.portfolio-body { padding: 24px; }
.portfolio-cat { font-family: var(--font-mono); font-size: 0.7rem; color: var(--pink); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.portfolio-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.portfolio-card p { color: var(--gray); font-size: 0.875rem; }

/* ===== TECH STACK ===== */
.tech-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.tech-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 12px 20px;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.3s ease; cursor: default;
}
.tech-item:hover { border-color: rgba(255,107,0,0.3); background: rgba(255,107,0,0.05); color: var(--orange); }
.tech-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-1); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(255,107,0,0.2); }
.testimonial-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--light-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-1); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-title { color: var(--gray); font-size: 0.8rem; }

/* ===== CTA ===== */
.cta-section {
  text-align: center; background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-box {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(255,45,135,0.06), rgba(155,45,240,0.08));
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 24px; padding: 64px 48px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,45,135,0.06), transparent 70%);
}
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; position: relative; }
.cta-box p { color: var(--gray); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
.cta-box .btn-primary { position: relative; font-size: 1.05rem; padding: 18px 44px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 5% 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo img { height: 44px; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--white); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.9rem; color: var(--gray);
  transition: all 0.3s ease;
}
.social-link:hover { background: var(--grad-1); border-color: transparent; color: var(--white); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }
.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }
.rebrand-note {
  font-size: 0.8rem; color: var(--gray);
  background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.15);
  border-radius: 100px; padding: 4px 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.6rem; color: white;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: wa-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); animation: none; }
@keyframes wa-bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

.whatsapp-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 14px; white-space: nowrap;
  font-size: 0.8rem; font-weight: 600; color: var(--white);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark-3);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 5% 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,107,0,0.06), transparent 70%);
  text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.8rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.contact-info-item p, .contact-info-item a { color: var(--white); font-size: 1rem; text-decoration: none; display: block; }
.contact-info-item a:hover { color: var(--orange); }

.contact-form { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray); margin-bottom: 8px; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 18px; color: var(--white);
  font-family: var(--font-display); font-size: 0.95rem;
  transition: all 0.3s ease; outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.1); }
.form-group textarea { min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select option { background: var(--dark-3); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-visual {
  position: relative; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.about-logo-bg {
  width: 100%; height: 100%; border-radius: 24px;
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-logo-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,107,0,0.08), transparent 70%);
}
.about-logo-bg img { width: 75%; position: relative; z-index: 1; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.value-item {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 20px;
  transition: all 0.3s ease;
}
.value-item:hover { border-color: rgba(255,107,0,0.2); }
.value-emoji { font-size: 1.5rem; margin-bottom: 8px; }
.value-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 0.8rem; color: var(--gray); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 60px; }
.team-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px; text-align: center;
  transition: all 0.4s ease;
}
.team-card:hover { border-color: rgba(255,45,135,0.2); transform: translateY(-6px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--grad-1); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800;
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--orange); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 12px; }
.team-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 5% 80px;
}
.legal-content h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 8px; }
.legal-date { color: var(--gray); font-size: 0.875rem; margin-bottom: 48px; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin: 40px 0 16px; color: var(--orange); }
.legal-content p, .legal-content li { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--orange); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 60px; }
.pricing-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 36px; position: relative; transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(255,45,135,0.4);
  background: linear-gradient(135deg, rgba(255,107,0,0.05), rgba(255,45,135,0.05));
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-1); color: white; padding: 4px 20px;
  border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  white-space: nowrap;
}
.pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--gray); margin-bottom: 8px; }
.pricing-price { font-size: 2.2rem; font-weight: 900; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.pricing-desc { color: var(--gray); font-size: 0.875rem; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-features li {
  padding: 8px 0; font-size: 0.875rem; color: var(--light-gray);
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {

  /* Raise nav above the noise overlay (body::before z-index:9999) so the
     bar itself is always visible and interactive on mobile */
  nav { z-index: 10000; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 2rem;

    /* Must be lower than nav (10000) so the nav bar — including the
       close button — stays fully visible and clickable above the overlay */
    z-index: 9998;

    transform: translateX(100%);
    transition: transform .35s ease;
  }

  .nav-links.open { transform: translateX(0); }

  /* Toggle must beat nav-links within the same stacking context */
  .nav-toggle { display: flex; z-index: 10001; }

  .nav-links a { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
  .cta-box { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 60px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
/* Use your existing style.css and append these rules at the end */

/* ===== BLOG PAGE: UNIFIED WITH HOME TEMPLATE ===== */
.blog-page-hero {
  padding: calc(var(--nav-h) + 48px) 5% 90px;
  min-height: auto;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.blog-page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 32%, rgba(255,107,0,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 65% 60% at 75% 58%, rgba(255,45,135,0.08) 0%, transparent 52%),
    radial-gradient(ellipse 55% 55% at 20% 78%, rgba(155,45,240,0.06) 0%, transparent 48%);
}
.blog-page-hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 18%, transparent 72%);
}
.blog-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.blog-page-hero .section-label { justify-content: center; }
.blog-page-hero .section-subtitle { margin: 0 auto; }
.blog-hero-actions { justify-content: center; margin-top: 2.5rem; }
.blog-stats .stat-num { font-size: clamp(2rem, 5vw, 3.2rem); }
.blog-posts-section { background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.01) 100%); }
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; margin-bottom: 3rem; }
.filter-btn {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  border-color: rgba(255,107,0,0.35);
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,45,135,0.08));
  box-shadow: 0 10px 30px rgba(255,107,0,0.08);
}
.unified-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 0; }
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-thumb { height: 220px; position: relative; overflow: hidden; }
.thumb-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,107,0,0.28), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(255,45,135,0.22), transparent 35%),
    linear-gradient(135deg, rgba(255,107,0,0.10), rgba(155,45,240,0.10));
}
.thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  opacity: 0.9;
  z-index: 1;
}
.blog-card .card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(8,8,8,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.blog-card .card-body { display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray);
  font-size: 0.74rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 0; }
.blog-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.3s ease, color 0.3s ease;
}
.card-link:hover { gap: 0.75rem; color: var(--white); }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .blog-page-hero { padding: calc(var(--nav-h) + 36px) 5% 70px; }
  .blog-filters { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .blog-page-hero .section-title { font-size: 2.35rem; }
  .blog-hero-actions { flex-direction: column; }
  .filter-btn { width: 100%; justify-content: center; }
}



/* =====================================================
   BLOG — Article & Sidebar Styles
   (blog.html and blog/*.html)
===================================================== */

/* ── ARTICLE HERO ── */
.article-hero { padding: 110px 5% 56px; max-width: 860px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--gray); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.article-cat {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--grad-1); color: #fff;
  padding: 0.25rem 0.7rem; border-radius: 4px; margin-bottom: 1rem;
}
.article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 1rem;
}
.article-hero h1 span {
  background: var(--grad-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray);
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2.5rem;
}

/* ── CONTENT LAYOUT WITH SIDEBAR ── */
.content-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 5% 5rem;
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
}

/* ── ARTICLE BODY ── */
.article-body { max-width: none; padding: 0; margin: 0; }
.article-body h2 { font-size: 1.35rem; font-weight: 800; margin: 2.5rem 0 0.8rem; color: #F0F0F0; }
.article-body h2 .num {
  background: var(--grad-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-right: 0.4rem;
}
.article-body h2 .step {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
  background: var(--grad-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 0.3rem;
}
.article-body h3 { font-size: 1.05rem; font-weight: 800; margin: 1.8rem 0 0.6rem; color: var(--orange); }
.article-body p { color: #ccc; margin-bottom: 1.1rem; font-size: 1rem; }
.article-body ul,
.article-body ol { padding-left: 1.4rem; color: #ccc; margin-bottom: 1.1rem; }
.article-body li { margin-bottom: 0.5rem; font-size: 1rem; }
.article-body strong { color: #F0F0F0; }

/* ── CALLOUT ── */
.callout {
  background: var(--dark-2); border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0; padding: 1.2rem 1.5rem; margin: 2rem 0; color: #F0F0F0;
}
.callout .label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 1.5rem; margin: 2rem 0;
}
.highlight-box h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 1rem;
  background: var(--grad-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── CTA BLOCK (article inline CTA) ── */
.cta-block {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 2.5rem; text-align: center; margin: 3rem 0;
}
.cta-block h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.7rem; }
.cta-block p { color: var(--gray); margin-bottom: 1.5rem; }
.cta-btn {
  display: inline-block; background: var(--grad-1); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  padding: 0.8rem 2rem; border-radius: 8px; text-decoration: none; font-size: 0.95rem;
}

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }
.side-card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 1.5rem; overflow: hidden; position: relative;
}
.side-cta {
  background: linear-gradient(160deg, var(--dark-2) 0%, #1a0f1f 100%);
  border: 1px solid rgba(255,107,0,0.25);
}
.side-cta::before {
  content: ''; position: absolute; top: -40%; right: -40%;
  width: 140%; height: 140%; background: var(--grad-1); opacity: 0.08; border-radius: 50%;
}
.side-cta .icon { font-size: 1.8rem; margin-bottom: 0.6rem; position: relative; }
.side-cta h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; line-height: 1.3; }
.side-cta p { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.2rem; position: relative; line-height: 1.5; }
.side-cta-btn {
  display: block; text-align: center; background: var(--grad-1); color: #fff;
  font-family: var(--font-display); font-weight: 700; padding: 0.7rem 1rem;
  border-radius: 8px; text-decoration: none; font-size: 0.88rem; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.side-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.3); }
.side-cta .whatsapp-link {
  display: block; text-align: center; margin-top: 0.6rem;
  font-size: 0.8rem; color: var(--gray); text-decoration: none; position: relative;
}
.side-cta .whatsapp-link:hover { color: #25D366; }
.side-card h4 {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.side-posts { display: flex; flex-direction: column; gap: 0.9rem; }
.side-post { display: flex; gap: 0.7rem; text-decoration: none; align-items: flex-start; }
.side-post .sp-icon {
  font-size: 1.3rem; flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 8px; background: var(--dark-3); display: flex; align-items: center; justify-content: center;
}
.side-post .sp-text { flex: 1; }
.side-post .sp-title {
  font-size: 0.85rem; font-weight: 700; color: #F0F0F0;
  line-height: 1.35; margin-bottom: 0.15rem; transition: color .2s;
}
.side-post:hover .sp-title { color: var(--orange); }
.side-post .sp-meta { font-size: 0.7rem; color: var(--gray); font-family: var(--font-mono); }
.side-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.side-tag {
  background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.25);
  border-radius: 20px; padding: 0.3rem 0.85rem; font-size: 0.78rem;
  color: var(--orange); text-decoration: none; transition: all .2s;
}
.side-tag:hover { background: rgba(255,107,0,0.18); border-color: var(--orange); }


/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
  /* reset any nav-inherited layout */
  position: static !important;
  height: auto !important;
  display: block !important;
  z-index: auto !important;
  inset: auto !important;
}
.toc-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 0.9rem;
  line-height: 1;
}
.toc-list {
  padding-left: 1.3rem;
  margin: 0;
}
.toc-list li { margin-bottom: 0.5rem; font-size: 0; }
.toc-list a {
  font-size: 0.88rem;
  color: #ccc;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}
.toc-list a:hover { color: var(--white); }

/* ── FAQ SECTION ── */
.faq-list { margin: 1.5rem 0 2rem; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}
.faq-item:last-child { border-bottom: none; }
/* Override article-body h3 (specificity 0-1-1) with higher specificity */
.faq-item h3.faq-q,
.faq-q {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin: 0 0 0.4rem !important;
  line-height: 1.4;
}
.faq-a {
  font-size: 0.88rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* ── AUTHOR BIO ── */
.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.3rem;
  margin: 2.5rem 0;
}
.author-bio img {
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}
.author-bio-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.author-bio-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}
.author-bio-role {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.author-bio-text p {
  font-size: 0.86rem;
  color: #ccc;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .author-bio { flex-direction: column; }
  .author-bio img { width: 56px; height: 56px; }
}

/* ── BLOG RESPONSIVE ── */
@media (max-width: 980px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
  .side-cta { grid-column: 1/-1; }
}
@media (max-width: 600px) {
  .sidebar { grid-template-columns: 1fr; }
}
