/*
Theme Name: Z0Z0 Brain Rental
Theme URI: https://z0z0.jp
Description: Dark premium consulting theme for Z0Z0.JP — Brain Rental & Project Consulting
Author: T. Shiroiwa
Version: 1.0.0
Text Domain: z0z0
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --bg-deep: #08080d;
  --bg-section: #0b0b12;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --gold: #c8a44e;
  --gold-light: #e2c878;
  --gold-dim: rgba(200,164,78,0.08);
  --gold-glow: rgba(200,164,78,0.25);
  --gold-border: rgba(200,164,78,0.12);
  --txt: #e8e5df;
  --txt-muted: #9a968e;
  --txt-dim: #5e5b55;
  --white-5: rgba(255,255,255,0.05);
  --white-8: rgba(255,255,255,0.08);
  --ff-body: 'Noto Sans JP', 'DM Sans', -apple-system, sans-serif;
  --ff-display: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --max-w: 1100px;
  --max-w-narrow: 820px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  background: var(--bg-deep);
  color: var(--txt);
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========================================
   Layout
   ======================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 2rem; }

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  transition: all 0.3s;
}
.site-header.scrolled { background: rgba(8,8,13,0.95); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--txt);
  letter-spacing: 1px;
}
.site-logo span { color: var(--gold); }
.nav-main { display: flex; align-items: center; gap: 2rem; }
.nav-main a {
  font-size: 13px;
  color: var(--txt-muted);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-main a:hover { color: var(--txt); }
.nav-main a:hover::after { width: 100%; }
.nav-cta {
  font-size: 12px !important;
  color: var(--gold) !important;
  border: 1px solid rgba(200,164,78,0.3);
  padding: 6px 18px !important;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); }
.nav-cta::after { display: none !important; }

/* Language Switch */
.lang-switch {
  font-size: 12px;
  color: var(--txt-dim);
  padding: 4px 14px;
  border: 1px solid var(--white-5);
  border-radius: 20px;
  transition: all 0.3s;
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold-border); }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-toggle {
  font-size: 12px;
  color: var(--txt-dim);
  padding: 4px 14px;
  border: 1px solid var(--white-5);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  font-family: var(--ff-body);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.lang-toggle:hover { color: var(--gold); border-color: var(--gold-border); }
.lang-toggle svg { opacity: 0.5; }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,14,22,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 6px 0;
  min-width: 90px;
  z-index: 200;
}
.lang-menu.active { display: block; }
.lang-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--txt-muted);
  text-align: center;
  transition: all 0.2s;
}
.lang-menu a:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  position: relative;
}
.menu-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--txt-muted);
  position: absolute; left: 6px;
  transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,13,0.92) 0%, rgba(8,8,13,0.75) 50%, rgba(8,8,13,0.88) 100%);
}
/* Decorative glows */
.hero-glow-1 {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  animation: glow-pulse 7s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(200,164,78,0.15) 0%, transparent 70%);
  animation: glow-pulse 9s ease-in-out infinite 3s;
}
/* Geometric accent */
.hero-geo {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  border: 1px solid rgba(200,164,78,0.06);
  border-radius: 50%;
  animation: geo-rotate 30s linear infinite;
}
.hero-geo::before {
  content: '';
  position: absolute; inset: 30px;
  border: 1px solid rgba(200,164,78,0.04);
  border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute; inset: 60px;
  border: 1px solid rgba(200,164,78,0.03);
  border-radius: 50%;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.4; }
}
@keyframes geo-rotate { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 4rem 0;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease both;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  animation: fade-up 0.7s ease 0.15s both;
}
.hero h1 .accent {
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
.hero-sub {
  font-size: 15px;
  line-height: 2;
  color: var(--txt-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fade-up 0.7s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 2.5rem;
  animation: fade-up 0.7s ease 0.45s both;
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: fade-up 0.7s ease 0.55s both;
}
.cred-pill {
  font-size: 11px;
  color: var(--txt-dim);
  padding: 5px 14px;
  border: 1px solid var(--white-5);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 14px;
  font-family: var(--ff-body);
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-primary:hover {
  color: var(--bg-deep);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200,164,78,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
}
.btn-lg { padding: 14px 40px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

/* ========================================
   Section Commons
   ======================================== */
.section {
  padding: 5rem 0;
  position: relative;
}
.section--alt { background: var(--bg-section); }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 20%, var(--gold-dim) 50%, var(--gold-border) 80%, transparent 100%);
}
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.section-line { width: 36px; height: 1px; background: var(--gold); }
.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ========================================
   Needs / Pain Points Grid
   ======================================== */
.needs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.need-item {
  font-size: 14px;
  color: var(--txt-muted);
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 2px solid var(--gold-dim);
  transition: all 0.3s;
  line-height: 1.7;
  cursor: default;
}
.need-item:hover {
  background: var(--bg-card-hover);
  border-left-color: var(--gold);
  transform: translateX(4px);
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(200,164,78,0.25);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-num {
  font-size: 10px;
  color: var(--txt-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--txt-muted);
  line-height: 1.9;
}

/* ========================================
   About Section
   ======================================== */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  filter: grayscale(20%);
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  z-index: -1;
}
.about-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 4px;
}
.about-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-bio {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.about-list li {
  font-size: 13px;
  color: var(--txt-muted);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.7;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(200,164,78,0.3);
}

/* ========================================
   Strengths
   ======================================== */
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.strength-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-card);
  border-radius: 10px;
  transition: all 0.3s;
}
.strength-item:hover { background: var(--bg-card-hover); }
.strength-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 10px var(--gold-glow);
}
.strength-item span {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.7;
}

/* ========================================
   Process / Flow
   ======================================== */
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.flow-step {
  text-align: center;
  flex: 1;
}
.flow-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  transition: all 0.3s;
}
.flow-step:hover .flow-circle {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.flow-label { font-size: 13px; color: var(--txt-muted); }
.flow-line {
  flex: 0 0 auto;
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold-border), var(--gold-dim), var(--gold-border));
  margin-bottom: 24px;
}

/* ========================================
   Pricing
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.price-card:hover { border-color: rgba(200,164,78,0.25); }
.price-card--featured {
  border-color: rgba(200,164,78,0.3);
  background: rgba(200,164,78,0.04);
}
.price-label {
  font-size: 12px;
  color: var(--txt-dim);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.price-value {
  font-size: 18px;
  font-weight: 500;
}
.price-value small {
  font-size: 13px;
  color: var(--txt-muted);
  font-weight: 300;
  margin-left: 4px;
}
.price-card--featured .price-value { color: var(--gold-light); }

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 250px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.15;
}
.cta-box p {
  font-size: 16px;
  color: var(--txt-muted);
  line-height: 2;
  margin-bottom: 2rem;
  position: relative;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  border-top: 1px solid var(--gold-border);
  padding: 3rem 0;
  background: var(--bg-section);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--txt-dim);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 12px;
  color: var(--txt-dim);
}
.footer-links a:hover { color: var(--gold); }

/* ========================================
   Contact Form (CF7 Override)
   ======================================== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: var(--txt);
  font-family: var(--ff-body);
  font-size: 14px;
  transition: all 0.3s;
  margin-bottom: 1rem;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(200,164,78,0.1);
}
.wpcf7 input[type="submit"] {
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: all 0.3s;
}
.wpcf7 input[type="submit"]:hover {
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}
.wpcf7 label {
  font-size: 13px;
  color: var(--txt-muted);
  display: block;
  margin-bottom: 6px;
}

/* ========================================
   Page: Inquiry
   ======================================== */
.page-inquiry {
  padding-top: calc(64px + 4rem);
  padding-bottom: 4rem;
  min-height: 80vh;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.inquiry-info h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  margin-bottom: 1rem;
}
.inquiry-info p {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}

/* ========================================
   Blog Archive
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
}
.blog-card:hover {
  border-color: rgba(200,164,78,0.25);
  transform: translateY(-3px);
}
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-thumb { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.blog-card-date { font-size: 12px; color: var(--txt-dim); letter-spacing: 0.5px; }
.blog-card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 8px 0 10px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--txt-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.blog-card-more {
  font-size: 13px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-pagination { margin-top: 3rem; text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--txt-muted);
  border: 1px solid var(--gold-border);
  transition: all 0.3s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}

/* ========================================
   Single Post
   ======================================== */
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--txt-dim);
}
.post-meta-sep { color: var(--gold-border); }
.post-cat {
  font-size: 11px;
  color: var(--gold);
  padding: 3px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
}
.post-cat:hover { background: var(--gold-dim); }
.post-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.post-hero-img {
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.post-hero-img img { width: 100%; height: auto; display: block; }
.post-content {
  font-size: 15px;
  line-height: 2.1;
  color: var(--txt-muted);
}
.post-content h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--txt);
  margin: 2.5rem 0 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-border);
}
.post-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--txt);
  margin: 2rem 0 0.8rem;
}
.post-content p { margin-bottom: 1.5rem; }
.post-content a { color: var(--gold); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--txt);
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; }
.post-content pre {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 1.2rem;
  overflow-x: auto;
  font-family: var(--ff-body);
  font-size: 13px;
  margin: 1.5rem 0;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
}
.post-tag {
  font-size: 12px;
  color: var(--txt-dim);
  padding: 4px 14px;
  border: 1px solid var(--white-5);
  border-radius: 20px;
  transition: all 0.3s;
}
.post-tag:hover { color: var(--gold); border-color: var(--gold-border); }
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
}
.post-nav-item { }
.post-nav-next { text-align: right; }
.post-nav-label { display: block; font-size: 12px; color: var(--txt-dim); margin-bottom: 6px; }
.post-nav-item a { font-size: 14px; color: var(--txt-muted); line-height: 1.6; }
.post-nav-item a:hover { color: var(--gold); }

/* Google Translate Override */
.translate-bar { display: inline-block; }
.goog-te-gadget { font-family: var(--ff-body) !important; font-size: 12px !important; color: var(--txt-dim) !important; }
.goog-te-gadget select {
  background: var(--bg-card) !important;
  border: 1px solid var(--gold-border) !important;
  border-radius: 6px !important;
  color: var(--txt) !important;
  padding: 6px 12px !important;
  font-family: var(--ff-body) !important;
  font-size: 13px !important;
}
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }
.translate-bar .skiptranslate { display: block !important; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; gap: 1rem; }
  .post-nav-next { text-align: left; }
}

/* ========================================
   Scroll Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .nav-main { display: none; }
  .nav-main.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,13,0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--gold-border);
    gap: 1rem;
  }
  .menu-toggle { display: block; }

  .hero-content { padding: 2rem 0; }
  .hero h1 { font-size: 26px; }
  .hero-geo { display: none; }

  .needs-grid,
  .services-grid,
  .strengths-grid,
  .pricing-grid,
  .about-list,
  .inquiry-grid { grid-template-columns: 1fr; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo-wrap {
    max-width: 200px;
    margin: 0 auto;
  }

  .flow-steps { flex-wrap: wrap; gap: 8px; }
  .flow-line { width: 24px; }
  .flow-circle { width: 44px; height: 44px; font-size: 12px; }

  .cta-box { padding: 2.5rem 1.5rem; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
