:root {
  --primary: #10A37F;
  --primary-dark: #0D8A6A;
  --primary-light: #14B88E;
  --primary-bg: rgba(16,163,127,0.06);
  --primary-bg-strong: rgba(16,163,127,0.12);
  --text: #1a1a1a;
  --text-light: #555;
  --text-muted: #888;
  --bg: #fff;
  --bg-alt: #f7faf9;
  --border: #e5ebe8;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font); color: var(--text);
  background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 700; color: var(--text); text-decoration: none;
}
.nav-brand img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--text-light); font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: #fff !important; padding: 8px 20px;
  border-radius: 8px; font-weight: 600; font-size: .875rem;
  transition: background .2s;
}
.nav-cta:hover { background: var(--primary-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: .3s;
}
.lang-switch {
  position: relative;
}
.lang-switch select {
  appearance: none; background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-light); padding: 4px 24px 4px 8px; border-radius: 6px;
  font-size: .8rem; cursor: pointer;
}
.lang-switch::after {
  content: '▾'; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%); pointer-events: none; color: var(--text-muted);
  font-size: .7rem;
}

/* ── HERO (white/green) ── */
.hero {
  background: var(--bg);
  padding: 120px 0 120px; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16,163,127,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-bg-strong); border: 1px solid rgba(16,163,127,0.2);
  padding: 6px 16px; border-radius: 20px; font-size: .8rem; color: var(--primary);
  font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -0.02em; color: var(--text);
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px;
  max-width: 500px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff; padding: 14px 28px;
  border-radius: 10px; font-weight: 600; font-size: 1rem;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,163,127,0.3); color: #fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); color: var(--text); padding: 12px 28px;
  border-radius: 10px; font-weight: 500; font-size: 1rem; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.hero-visual {
  position: relative; width: 100%; min-height: 480px;
  display: flex; justify-content: center; align-items: center;
}
.hero-phone {
  width: 240px; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  position: absolute; transition: transform .4s ease;
}
.hero-phone-center { z-index: 3; }
.hero-phone-left {
  z-index: 2; transform: rotate(-8deg) translateX(-110px) scale(0.88);
}
.hero-phone-right {
  z-index: 1; transform: rotate(8deg) translateX(110px) scale(0.88);
}

/* ── Hero search bar ── */
.hero-search {
  display: flex; gap: 12px; max-width: 520px; margin-bottom: 20px;
}
.hero-search input {
  flex: 1; font-size: 1rem; padding: 14px 20px; border: 2px solid var(--border);
  border-radius: 12px; font-family: var(--font); outline: none;
  transition: border-color .2s; background: var(--bg);
}
.hero-search input:focus { border-color: var(--primary); }
.hero-search button {
  background: var(--primary); color: #fff; border: none; padding: 14px 32px;
  border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer;
  font-family: var(--font); transition: all .2s; white-space: nowrap;
}
.hero-search button:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,163,127,0.3); }
@media (max-width: 768px) {
  .hero-search { flex-direction: column; max-width: 100%; }
}

/* ── COUNTRY SELECTOR ── */
.country-bar {
  background: var(--primary-bg); border-bottom: 1px solid var(--border);
  padding: 16px 24px; text-align: center; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.country-bar label {
  font-size: .85rem; font-weight: 600; color: var(--text-light);
}
.country-select {
  appearance: none; background: var(--bg); border: 1px solid var(--border);
  padding: 6px 32px 6px 12px; border-radius: 8px; font-size: .85rem;
  font-weight: 500; cursor: pointer; color: var(--text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}

/* ── MARKETPLACES ── */
.marketplaces { padding: 100px 0; background: var(--bg-alt); }
.section-label {
  text-transform: uppercase; font-size: .75rem; font-weight: 700;
  color: var(--primary); letter-spacing: 2px; margin-bottom: 12px; text-align: center;
}
.section-title {
  font-size: 2.2rem; font-weight: 800; text-align: center;
  margin-bottom: 16px; letter-spacing: -0.01em;
  overflow-wrap: break-word; word-break: break-word;
}
.section-subtitle {
  text-align: center; color: var(--text-light); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto 48px;
}
.mp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.mp-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px 16px;
  text-align: center; border: 1px solid var(--border); transition: all .25s;
  text-decoration: none; color: var(--text);
}
.mp-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--primary); color: var(--text);
}
.mp-card[hidden] { display: none; }
.mp-card-icon {
  width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  overflow: hidden;
}
.mp-card-icon img { width: 48px; height: 48px; object-fit: contain; }
.mp-card-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.mp-card-desc { font-size: .75rem; color: var(--text-muted); }

/* ── HOW IT WORKS (showcase with screenshots) ── */
.how-it-works { padding: 80px 0; }
.step-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1000px; margin: 0 auto;
  padding: 40px 0;
}
.step-showcase:nth-child(even) { direction: rtl; }
.step-showcase:nth-child(even) > * { direction: ltr; }
.step-showcase + .step-showcase { border-top: 1px solid var(--border); }
.step-phone { display: flex; justify-content: center; }
.step-phone img {
  width: 220px; border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}
.step-info {}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 4px 16px rgba(16,163,127,0.25);
}
.step-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.step-info p { font-size: 1rem; color: var(--text-light); line-height: 1.7; max-width: 400px; }

/* simple grid steps (for marketplace pages) */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.steps:has(.step:nth-child(4)) { grid-template-columns: repeat(2, 1fr); }
.step { text-align: center; }
.step .step-num { margin: 0 auto 16px; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--text-light); max-width: 260px; margin: 0 auto; }

/* ── FEATURE SHOWCASE ── */
.feature-showcase {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #eef7f4 100%);
  border-top: 1px solid var(--border);
}
.feature-showcase .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.feature-showcase .section-label,
.feature-showcase .section-title {
  grid-column: 1 / -1;
}
.feature-showcase .section-title { margin-bottom: 16px; }
.feature-showcase-text {}
.feature-showcase-highlights {
  display: flex; flex-direction: column; gap: 20px;
}
.fav-highlight {
  display: flex; gap: 16px; align-items: flex-start;
}
.fav-highlight-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: var(--primary-bg-strong); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.fav-highlight h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.fav-highlight p { font-size: .88rem; color: var(--text-light); line-height: 1.5; margin: 0; }
.feature-showcase-phone { display: flex; justify-content: center; }
.feature-showcase-phone img {
  width: 260px; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(16,163,127,0.15), 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(16,163,127,0.15);
}

/* ── FEATURES ── */
.features { padding: 80px 0; background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--bg); border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid var(--border); transition: all .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-bg-strong); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ── STATS ── */
.stats { padding: 60px 0; background: var(--primary); color: #fff; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-num { font-size: 2.5rem; font-weight: 800; }
.stat-label { font-size: .85rem; opacity: .8; margin-top: 4px; }

/* ── CTA ── */
.cta-section { padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.play-badge { height: 56px; display: inline-block; transition: transform .2s; }
.play-badge:hover { transform: scale(1.05); }

/* ── FOOTER ── */
.footer {
  background: #fafafa; border-top: 1px solid var(--border);
  color: var(--text-light); padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.footer-desc { font-size: .85rem; line-height: 1.6; max-width: 300px; }
.footer h4 { color: var(--text); font-size: .85rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--text-muted); font-size: .85rem; transition: color .2s; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--text-muted);
}
.footer-privacy { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-privacy:hover { color: var(--primary); }
.footer-privacy:hover { color: var(--primary); }
.footer-lang select {
  appearance: none; background: var(--bg);
  border: 1px solid var(--border); color: var(--text-light);
  padding: 6px 28px 6px 10px; border-radius: 6px; font-size: .8rem; cursor: pointer;
}

/* ── MARKETPLACE LANDING ── */
.mp-hero {
  background: var(--bg); padding: 120px 0 60px; text-align: center;
  position: relative; overflow: hidden;
}
.mp-hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(16,163,127,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.mp-hero-logo {
  margin-bottom: 20px; position: relative;
  display: flex; justify-content: center;
}
.mp-hero-logo img {
  width: 64px; height: 64px; border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  object-fit: contain; background: #fff;
  padding: 8px;
}
.mp-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; position: relative; }
.mp-hero h1 span { color: var(--primary); }
.mp-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto 32px; position: relative; }
.mp-hero .hero-ctas { justify-content: center; position: relative; }

.mp-content { padding: 60px 0; }
.mp-content h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; }
.mp-content h3 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.mp-content p, .mp-content li { font-size: 1rem; color: var(--text-light); line-height: 1.7; }
.mp-content ul { padding-left: 20px; margin-bottom: 16px; }
.mp-content li { margin-bottom: 8px; }

.mp-why { padding: 60px 0; background: var(--bg-alt); }
.mp-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mp-why-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border);
}
.mp-why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.mp-why-card p { font-size: .9rem; color: var(--text-light); }

/* ── FAQ ── */
.mp-faq { padding: 80px 0; background: var(--bg-alt); }
.mp-faq .container { max-width: 800px; }
.mp-faq .section-label { margin-bottom: 12px; }
.mp-faq .section-title { margin-bottom: 40px; }
.mp-faq details {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden; transition: border-color .2s;
}
.mp-faq details:hover { border-color: rgba(16,163,127,0.3); }
.mp-faq details[open] { border-color: var(--primary); }
.mp-faq summary {
  padding: 18px 24px; font-weight: 600; font-size: .95rem; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  transition: color .2s;
}
.mp-faq summary:hover { color: var(--primary); }
.mp-faq summary::-webkit-details-marker { display: none; }
.mp-faq summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--text-light);
  min-width: 20px; text-align: center; transition: color .2s;
}
.mp-faq details[open] summary::after { content: '\2212'; color: var(--primary); }
.mp-faq details[open] summary { color: var(--primary); }
.mp-faq details p {
  padding: 0 24px 20px; font-size: .9rem; color: var(--text-light); line-height: 1.7; margin: 0;
}

.mp-other { padding: 60px 0; }
.mp-other-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px;
  max-width: 700px; margin: 0 auto;
}

/* ── CONTACT ── */
.contact { padding: 60px 0; background: var(--bg-alt); }
.contact .container { text-align: center; }
.contact h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.contact p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.contact-email {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.1rem; font-weight: 600; color: var(--primary);
  padding: 12px 28px; border: 2px solid var(--primary);
  border-radius: 10px; transition: all .2s;
}
.contact-email:hover { background: var(--primary); color: #fff; }

/* ── PRIVACY ── */
.privacy { padding: 120px 0 60px; }
.privacy h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.privacy .updated { color: var(--text-muted); font-size: .9rem; margin-bottom: 32px; }
.privacy h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.privacy p, .privacy li { font-size: .95rem; color: var(--text-light); line-height: 1.7; }
.privacy ul { padding-left: 20px; margin-bottom: 16px; }
.privacy li { margin-bottom: 6px; }

/* ── 404 ── */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--bg);
}
.page-404 h1 { font-size: 8rem; font-weight: 900; color: var(--primary); line-height: 1; }
.page-404 p { font-size: 1.2rem; color: var(--text-light); margin: 16px 0 32px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 40px; min-height: 400px; }
  .step-showcase { grid-template-columns: 1fr; gap: 32px; }
  .step-showcase:nth-child(even) { direction: ltr; }
  .step-info { text-align: center; }
  .step-info p { margin: 0 auto; }
  .step-num { margin: 0 auto 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 24px;
    gap: 16px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-phone { width: 200px; }
  .hero-phone-left, .hero-phone-right { display: none; }
  .hero-phone-center { position: relative; }
  .hero-visual { min-height: auto; }
  .step-showcase { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .step-showcase:nth-child(even) { direction: ltr; }
  .step-phone img { width: 180px; }
  .step-info { text-align: center; }
  .step-info p { margin: 0 auto; }
  .step-num { margin: 0 auto 16px; }
  .feature-showcase .container { grid-template-columns: 1fr; }
  .feature-showcase-phone img { width: 220px; }
  .feature-showcase-phone { order: -1; }
  .fav-highlight { text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps:has(.step:nth-child(4)) { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .mp-hero h1 { font-size: 2rem; }
  .mp-why-grid { grid-template-columns: 1fr; }
}

/* ── BLOG INDEX ── */
.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f0fdf9 0%, #e0f7f0 50%, #f8fffe 100%);
  border-bottom: 1px solid var(--border);
}
.blog-hero .container {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.blog-hero-text h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; }
.blog-hero-text p { font-size: 1.1rem; color: var(--text-light); max-width: 480px; line-height: 1.6; }
.blog-hero-phone { position: relative; }
.blog-hero-phone img {
  width: 180px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transform: rotate(3deg);
}

.blog-grid-section { padding: 60px 0 80px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.blog-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 0; text-decoration: none; color: inherit; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.blog-card:hover {
  border-color: var(--primary); box-shadow: 0 8px 30px rgba(16,163,127,.12);
  transform: translateY(-3px);
}
.blog-card-visual {
  height: 140px; background: linear-gradient(135deg, #e8faf4 0%, #d4f5ea 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.blog-card-visual img {
  height: 160px; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: rotate(2deg) translateY(20px);
}
.blog-card-visual .blog-card-mp-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #fff;
  padding: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: absolute; top: 12px; left: 16px;
}
.blog-card-content { padding: 20px 24px 24px; }
.blog-card-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #fff; background: var(--primary);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.blog-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.blog-card-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .85rem; font-weight: 600; color: var(--primary); margin-top: 14px;
}

/* ── BLOG ARTICLE ── */
.blog-article-hero {
  padding: 140px 0 50px;
  background: linear-gradient(135deg, #f0fdf9 0%, #e0f7f0 50%, #f8fffe 100%);
  border-bottom: 1px solid var(--border);
}
.blog-article-hero .container { max-width: 720px; }
.blog-article-breadcrumb {
  font-size: .8rem; color: var(--text-light); margin-bottom: 20px;
}
.blog-article-breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 500; }
.blog-article-breadcrumb a:hover { text-decoration: underline; }
.blog-article-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #fff; background: var(--primary);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 16px;
}
.blog-article-hero h1 { font-size: 2.2rem; font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.blog-article-meta { font-size: .85rem; color: var(--text-light); }

.blog-article-body-wrap { padding: 50px 0 60px; }
.blog-article-body-wrap .container { max-width: 720px; }
.blog-article-body h2 {
  font-size: 1.3rem; font-weight: 700; margin: 40px 0 16px;
  padding-left: 16px; border-left: 3px solid var(--primary);
}
.blog-article-body h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 12px; }
.blog-article-body p { font-size: .95rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.blog-article-body ul, .blog-article-body ol {
  margin: 0 0 16px 20px; font-size: .95rem; line-height: 1.8; color: var(--text);
}
.blog-article-body li { margin-bottom: 6px; }
.blog-article-body strong { color: var(--text); }
.blog-article-body a { color: var(--primary); font-weight: 500; }
.blog-article-body a:hover { text-decoration: underline; }
.blog-article-body .btn-primary { color: #fff; }
.blog-article-body .btn-primary:hover { color: #fff; text-decoration: none; }
.blog-article-body > p:first-child { font-size: 1.05rem; line-height: 1.7; color: var(--text); }

.blog-article-cta {
  margin-top: 48px; padding: 0; background: linear-gradient(135deg, #f0fdf9 0%, #e0f7f0 100%);
  border-radius: 16px; border: 1px solid rgba(16,163,127,.15); overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 0; align-items: center;
}
.blog-article-cta-text { padding: 36px; }
.blog-article-cta-text h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.blog-article-cta-text p { font-size: .9rem; color: var(--text-light); margin-bottom: 20px; }
.blog-article-cta-phone { padding: 20px 36px; overflow: hidden; }
.blog-article-cta-phone img {
  width: 150px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: block;
}

.blog-article-related { padding: 60px 0; background: var(--bg-alt); }
.blog-article-related .container { max-width: 720px; }
.blog-article-related h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.blog-article-related ul { list-style: none; padding: 0; margin: 0; }
.blog-article-related li {
  margin-bottom: 0; border-bottom: 1px solid var(--border);
}
.blog-article-related li:last-child { border-bottom: none; }
.blog-article-related a {
  display: block; color: var(--text); font-weight: 500; text-decoration: none;
  font-size: .95rem; padding: 14px 0; transition: color .2s;
}
.blog-article-related a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .blog-hero .container { grid-template-columns: 1fr; text-align: center; }
  .blog-hero-text p { margin: 0 auto; }
  .blog-hero-phone { display: none; }
  .blog-hero-text h1 { font-size: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-hero h1 { font-size: 1.7rem; }
  .blog-article-cta { grid-template-columns: 1fr; }
  .blog-article-cta-phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
