/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:        #0b0f0e;
  --bg2:       #111614;
  --bg3:       #181e1c;
  --surf:      rgba(255,255,255,.04);
  --surf2:     rgba(255,255,255,.07);
  --line:      rgba(255,255,255,.07);
  --line2:     rgba(255,255,255,.12);
  --text-1:    #eef2f0;
  --text-2:    #8fa89e;
  --text-3:    #546860;
  --green:     #3ddc97;
  --green-dim: rgba(61,220,151,.12);
  --green-bd:  rgba(61,220,151,.25);
  --red:       #f87171;
  --yellow:    #fbbf24;
  --sans:      'DM Sans', sans-serif;
  --serif:     'Playfair Display', Georgia, serif;
  --mono:      'DM Mono', monospace;
  --r8: 8px; --r12: 12px; --r16: 16px; --r20: 20px; --r24: 24px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; }
em { color: var(--green); font-style: normal; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-2); max-width: 540px; margin: 0 auto; font-size: 16px; }
.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-dim);
  border: 1px solid var(--green-bd);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 26px;
  background: var(--green);
  color: #0b0f0e;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r12);
  border: none; cursor: pointer;
  transition: opacity .18s, transform .18s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-1);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r12);
  border: 1px solid var(--line2);
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.btn-ghost:hover { background: var(--surf); border-color: var(--text-3); }
.btn-ghost.full { width: 100%; justify-content: center; }

.btn-primary-sm {
  padding: 8px 18px;
  background: var(--green);
  color: #0b0f0e;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--r8);
  border: none; cursor: pointer;
  transition: opacity .18s;
}
.btn-primary-sm:hover { opacity: .85; }

.btn-ghost-sm {
  padding: 8px 18px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r8);
  transition: color .18s;
}
.btn-ghost-sm:hover { color: var(--text-1); }

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,15,14,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-1);
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-1); }
.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  gap: 4px;
}
.nav-mobile a { padding: 10px 0; color: var(--text-2); font-size: 15px; border-bottom: 1px solid var(--line); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,220,151,.3), transparent 70%);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,100,180,.25), transparent 70%);
  bottom: 0; right: -80px;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-dim);
  border: 1px solid var(--green-bd);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.hero-title {
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-2);
  font-size: 13px;
}
.avatars { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}
.avatar:first-child { margin-left: 0; }
.hero-social-proof strong { color: var(--text-1); }

.hero-image-wrap {
  position: relative; z-index: 1;
  margin-top: 64px;
}
.hero-dashboard {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r20);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg3);
  border-bottom: 1px solid var(--line);
}
.dash-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dash-dot.red { background: #f87171; }
.dash-dot.yellow { background: #fbbf24; }
.dash-dot.green { background: #34d399; }
.dash-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  margin-left: 8px;
}
.dash-body { padding: 28px; }
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .dash-stat-row { grid-template-columns: repeat(2, 1fr); }
}
.dash-stat {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--r12);
  padding: 16px;
}
.dash-stat-label { font-size: 11px; color: var(--text-3); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.dash-stat-val { font-size: 22px; font-weight: 700; font-family: var(--mono); margin-bottom: 4px; }
.dash-stat-delta { font-size: 12px; font-weight: 600; }
.dash-stat-delta.up { color: var(--green); }
.dash-stat-delta.down { color: var(--red); }
.dash-chart-area { }
.chart-label { font-size: 12px; color: var(--text-3); margin-bottom: 14px; font-weight: 500; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
}
.bar {
  flex: 1;
  background: var(--surf2);
  border-radius: 6px 6px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  transition: background .2s;
}
.bar.active { background: var(--green); }
.bar span {
  font-size: 10px;
  color: var(--text-3);
  font-family: var(--mono);
}
.bar.active span { color: var(--bg); }

/* ─── LOGOS ───────────────────────────────────────────── */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.logo-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-3);
  font-weight: 700;
  letter-spacing: -.01em;
  opacity: .6;
  transition: opacity .2s;
}
.logo-item:hover { opacity: 1; }

/* ─── FEATURES ────────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--line2); transform: translateY(-3px); }
.feature-card.featured {
  background: var(--green-dim);
  border-color: var(--green-bd);
}
.feature-icon { font-size: 28px; margin-bottom: 18px; }
.feature-card h3 { margin-bottom: 12px; font-size: 17px; }
.feature-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.feature-link { font-size: 13px; color: var(--green); font-weight: 600; }
.feature-link:hover { text-decoration: underline; }

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how { padding: 100px 0; background: var(--bg2); }
.steps { display: flex; flex-direction: column; gap: 80px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.step.reverse { direction: rtl; }
.step.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .step, .step.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .step-num { font-size: 2rem; }
}
.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--green);
  opacity: .3;
  line-height: 1;
}
.step-content h3 { font-size: 1.5rem; font-family: var(--serif); margin-bottom: 14px; }
.step-content p { color: var(--text-2); font-size: 15px; line-height: 1.75; }
.step-img img {
  width: 100%;
  border-radius: var(--r16);
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials { padding: 100px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--r16);
  padding: 28px;
}
.testimonial-card.large {
  background: var(--green-dim);
  border-color: var(--green-bd);
  padding: 36px;
}
.stars { color: var(--green); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-card.large p { color: var(--text-1); font-size: 16px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line2);
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-3); }

/* ─── GALLERY ─────────────────────────────────────────── */
.gallery { padding: 100px 0; background: var(--bg2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--r16); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ─── PRICING ─────────────────────────────────────────── */
.pricing { padding: 100px 0; }
.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle-label { font-size: 14px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.save-badge {
  padding: 2px 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-bd);
  border-radius: 100px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.toggle {
  width: 44px; height: 24px;
  background: var(--surf2);
  border: 1px solid var(--line2);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
}
.toggle.on { background: var(--green); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  transition: transform .2s;
}
.toggle.on .toggle-thumb { transform: translateX(20px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
.pricing-card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--r20);
  padding: 32px;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--green-bd);
  background: var(--green-dim);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--green);
  color: #0b0f0e;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.plan-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.currency { font-size: 22px; font-weight: 700; color: var(--text-2); }
.amount { font-family: var(--serif); font-size: 48px; font-weight: 900; line-height: 1; }
.period { font-size: 14px; color: var(--text-3); margin-left: 4px; }
.plan-desc { font-size: 13px; color: var(--text-2); margin-bottom: 24px; line-height: 1.65; }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 13px; color: var(--text-2); }
.plan-features li.muted { color: var(--text-3); }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { padding: 100px 0; background: var(--bg2); }
.faq-inner { }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--green); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dim) 0%, transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-content { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content > p { color: var(--text-2); margin-bottom: 32px; font-size: 16px; }
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 14px;
}
.cta-input {
  flex: 1;
  padding: 13px 16px;
  background: var(--surf);
  border: 1px solid var(--line2);
  border-radius: var(--r12);
  color: var(--text-1);
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
}
.cta-input:focus { border-color: var(--green); }
.cta-input::placeholder { color: var(--text-3); }
.cta-fine { font-size: 12px; color: var(--text-3); }
@media (max-width: 520px) {
  .cta-form { flex-direction: column; }
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer { padding: 64px 0 0; background: var(--bg); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
.footer-brand p { color: var(--text-3); font-size: 13px; margin: 12px 0 20px; max-width: 260px; line-height: 1.7; }
.socials { display: flex; gap: 16px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surf2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-3);
  transition: color .2s, border-color .2s;
}
.socials a:hover { color: var(--text-1); border-color: var(--line2); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 4px; font-family: var(--sans); }
.footer-col a { font-size: 14px; color: var(--text-3); transition: color .15s; }
.footer-col a:hover { color: var(--text-1); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ─── BLOG ────────────────────────────────────────────── */
.blog-hero {
  padding: 140px 0 80px;
  text-align: center;
}
.blog-hero h1 { margin-bottom: 16px; }
.blog-hero p { color: var(--text-2); max-width: 500px; margin: 0 auto; font-size: 16px; }
.blog-section { padding: 0 0 100px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
}
.blog-featured-img img {
  width: 100%;
  border-radius: var(--r20);
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--line);
}
.blog-featured-content .blog-tag { margin-bottom: 16px; }
.blog-featured-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.blog-featured-content p { color: var(--text-2); margin-bottom: 24px; line-height: 1.8; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.blog-meta img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-meta span { font-size: 13px; color: var(--text-3); }
.blog-meta strong { color: var(--text-2); }
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surf2);
  border: 1px solid var(--line2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--r16);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: var(--line2); transform: translateY(-4px); }
.blog-card-img { overflow: hidden; }
.blog-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: var(--text-2); margin-bottom: 20px; line-height: 1.7; }

/* Newsletter */
.newsletter-block {
  background: var(--green-dim);
  border: 1px solid var(--green-bd);
  border-radius: var(--r20);
  padding: 48px;
  text-align: center;
}
.newsletter-content h3 { font-size: 1.6rem; font-family: var(--serif); margin-bottom: 12px; }
.newsletter-content > p { color: var(--text-2); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--line2);
  border-radius: var(--r12);
  color: var(--text-1);
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
}
.newsletter-form input:focus { border-color: var(--green); }
.newsletter-form input::placeholder { color: var(--text-3); }
.fine-print { font-size: 12px; color: var(--text-3); }

@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-block { padding: 32px 24px; }
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .6s ease forwards; }
