@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --sk-bg: #0f0f23;
  --sk-text: #e2e8f0;
  --sk-accent: #06d6a0;
  --sk-primary: #8b5cf6;
  --sk-surface: #1e1e3f;
  --sk-surface-2: rgba(255,255,255,0.06);
  --sk-muted: #64748b;
  --sk-border: rgba(255,255,255,0.08);
  --sk-radius: 16px;
  --sk-radius-sm: 8px;
  --sk-radius-lg: 24px;
  --sk-font-h: 'Space Grotesk', system-ui, sans-serif;
  --sk-font-b: 'Inter', system-ui, sans-serif;
  --sk-max-w: 1200px;
  --sk-sp: 72px;
}

*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html, body { margin: 0; padding: 0; overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--sk-font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--sk-text);
  background: var(--sk-bg);
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sk-accent); text-decoration: none; transition: color 0.2s; }
a:hover { opacity: 0.85; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sk-font-h);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p { margin: 0 0 1em; color: var(--sk-muted); }

.sk-container { max-width: var(--sk-max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.sk-section { padding: var(--sk-sp) 0; position: relative; }
.sk-section:nth-child(even) { background: var(--sk-surface-2); }
.sk-grid { display: grid; gap: 32px; }
.sk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sk-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .sk-grid--2, .sk-grid--3, .sk-grid--4 { grid-template-columns: 1fr; }
}

.sk-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sk-border);
  transition: all 0.3s;
}
.sk-header-inner {
  max-width: var(--sk-max-w); margin: 0 auto; height: 100%;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sk-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sk-font-h); font-weight: 800; font-size: 20px;
  color: var(--sk-text); text-decoration: none;
}
.sk-nav { display: flex; align-items: center; gap: 8px; }
.sk-nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.sk-nav-link {
  padding: 8px 16px; border-radius: var(--sk-radius-sm);
  font-size: 15px; font-weight: 500; color: var(--sk-muted);
  transition: all 0.2s; text-decoration: none;
}
.sk-nav-link:hover, .sk-nav-link--active {
  color: var(--sk-text); background: var(--sk-surface);
}
.sk-nav-toggle {
  display: none; background: none; border: none; color: var(--sk-text);
  font-size: 24px; cursor: pointer; padding: 8px;
}
@media (max-width: 768px) {
  .sk-nav { display: none; }
  .sk-nav-toggle { display: block; }
  .sk-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--sk-bg); border-bottom: 1px solid var(--sk-border);
    padding: 16px;
  }
  .sk-nav.open .sk-nav-list { flex-direction: column; width: 100%; }
  .sk-nav.open .sk-nav-link { padding: 12px 16px; width: 100%; }
}

.sk-hero {
  min-height: 85vh; display: flex; align-items: center;
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative; overflow: hidden;
}
.sk-hero--dark {
  background: linear-gradient(135deg, #0f0f23 0%, #1e1e3f 100%);
}
.sk-hero--gradient {
  background: linear-gradient(135deg, #0f0f23 0%, rgba(6,214,160,0.08) 100%);
}
.sk-hero-inner {
  max-width: var(--sk-max-w); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px); width: 100%;
}
.sk-hero-split {
  display: grid; grid-template-columns: 55% 45%; gap: 64px; align-items: center;
}
.sk-hero-centered { text-align: center; max-width: 800px; margin: 0 auto; }
.sk-hero-kicker {
  display: inline-flex; padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(6,214,160,0.12); color: #06d6a0;
  border: 1px solid rgba(6,214,160,0.2);
  margin-bottom: 24px;
}
.sk-hero h1 {
  color: var(--sk-text); margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.sk-hero p { font-size: clamp(18px, 2vw, 22px); max-width: 600px; line-height: 1.6; }
.sk-hero-centered p { margin-left: auto; margin-right: auto; }
.sk-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.sk-hero-centered .sk-hero-actions { justify-content: center; }
.sk-hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.sk-hero-visual img {
  max-width: 100%; border-radius: var(--sk-radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
@media (max-width: 1024px) {
  .sk-hero-split { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .sk-hero-visual { order: -1; }
  .sk-hero-actions { justify-content: center; }
}

.sk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--sk-radius-sm);
  font-family: var(--sk-font-b); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s; min-height: 48px;
}
.sk-btn--primary {
  background: var(--sk-accent); color: #000000;
  box-shadow: 0 2px 12px rgba(6,214,160,0.25);
}
.sk-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(6,214,160, 0.35);
}
.sk-btn--secondary {
  background: var(--sk-surface); color: var(--sk-text);
  border: 1px solid var(--sk-border);
}
.sk-btn--secondary:hover { background: var(--sk-surface-2); transform: translateY(-2px); }
.sk-btn--ghost {
  background: transparent; color: var(--sk-muted);
  border: 1px solid transparent;
}
.sk-btn--ghost:hover { color: var(--sk-text); background: var(--sk-surface); }

.sk-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); padding: 32px;
  transition: all 0.3s; display: flex; flex-direction: column; gap: 16px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.sk-card:hover {
  transform: translateY(-4px); box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.15);
}
.sk-card-icon {
  width: 48px; height: 48px; border-radius: var(--sk-radius-sm);
  background: rgba(6,214,160,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.sk-card h3 { margin-bottom: 8px; }
.sk-card p { color: var(--sk-muted); line-height: 1.6; flex: 1; }

.sk-section-header {
  text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px);
}
.sk-section-header p { font-size: 18px; }

.sk-stats {
  display: flex; justify-content: center; gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap; padding: 48px 0;
}
.sk-stat { text-align: center; }
.sk-stat-number {
  display: block; font-family: var(--sk-font-h);
  font-size: clamp(36px, 4vw, 56px); font-weight: 800;
  color: var(--sk-accent); line-height: 1;
}
.sk-stat-label {
  display: block; font-size: 14px; color: var(--sk-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  margin-top: 8px;
}

.sk-steps {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.sk-step {
  padding: 32px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); position: relative;
}
.sk-step h3 { margin-bottom: 8px; }
.sk-step p { color: var(--sk-muted); }

.sk-pricing-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); padding: 40px 32px;
  display: flex; flex-direction: column; text-align: center;
  transition: all 0.3s;
}
.sk-pricing-card--featured {
  border-color: var(--sk-accent);
  box-shadow: 0 0 0 1px var(--sk-accent), 0 8px 32px rgba(6,214,160, 0.15);
  transform: scale(1.02);
}
.sk-pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sk-pricing-price {
  font-family: var(--sk-font-h); font-size: 48px; font-weight: 800;
  color: var(--sk-text); margin: 16px 0;
}
.sk-pricing-price span { font-size: 16px; color: var(--sk-muted); font-weight: 400; }
.sk-pricing-features {
  list-style: none; padding: 0; margin: 24px 0; text-align: left;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.sk-pricing-features li {
  padding-left: 28px; position: relative; color: var(--sk-muted); font-size: 15px;
}
.sk-pricing-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--sk-accent); font-weight: 700;
}

.sk-cta {
  background: linear-gradient(135deg, rgba(6,214,160,0.06), rgba(6,214,160,0.12));
  border: 1px solid rgba(6,214,160,0.15);
  border-radius: var(--sk-radius-lg); padding: clamp(48px, 6vw, 80px) 32px;
  text-align: center; margin: 48px 0;
}
.sk-cta h2 { margin-bottom: 16px; }
.sk-cta p { max-width: 560px; margin: 0 auto 32px; font-size: 18px; }
.sk-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.sk-testimonial {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.sk-testimonial-quote {
  font-size: 16px; color: var(--sk-muted); line-height: 1.7;
  font-style: italic; flex: 1; position: relative; padding-left: 20px;
  border-left: 3px solid var(--sk-accent);
}
.sk-testimonial-author { display: flex; align-items: center; gap: 12px; }
.sk-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(6,214,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--sk-accent); font-weight: 700; font-size: 16px;
}
.sk-testimonial-name { font-weight: 700; color: var(--sk-text); }
.sk-testimonial-role { font-size: 14px; color: var(--sk-muted); }

.sk-footer {
  border-top: 1px solid var(--sk-border); padding: 64px 0 32px;
  margin-top: auto;
}
.sk-footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px;
  margin-bottom: 48px;
}
.sk-footer-heading {
  font-size: 14px; font-weight: 700; color: var(--sk-text);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.sk-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sk-footer-links a { color: var(--sk-muted); font-size: 14px; }
.sk-footer-links a:hover { color: var(--sk-text); }
.sk-footer-bottom {
  border-top: 1px solid var(--sk-border); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--sk-muted); font-size: 14px;
}
@media (max-width: 768px) {
  .sk-footer-grid { grid-template-columns: 1fr 1fr; }
  .sk-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

.sk-form { display: flex; flex-direction: column; gap: 20px; }
.sk-input, .sk-textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--sk-border); border-radius: var(--sk-radius-sm);
  background: rgba(255,255,255,0.03); color: var(--sk-text);
  font-family: var(--sk-font-b); font-size: 15px;
  transition: all 0.2s; min-height: 48px;
}
.sk-input:focus, .sk-textarea:focus {
  outline: none; border-color: var(--sk-accent);
  box-shadow: 0 0 0 3px rgba(6,214,160, 0.1);
}
.sk-textarea { min-height: 120px; resize: vertical; }
.sk-label { font-size: 14px; font-weight: 600; color: var(--sk-text); margin-bottom: 6px; }

.sk-badge {
  display: inline-flex; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(6,214,160,0.1); color: #06d6a0;
  border: 1px solid rgba(6,214,160,0.2);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.sk-animate { animation: fadeInUp 0.5s ease-out both; }

.sk-legal {
  padding: 72px 0; max-width: 720px; margin: 0 auto;
}
.sk-legal h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 32px; }
.sk-legal h2 { font-size: 24px; margin-top: 48px; margin-bottom: 16px; }
.sk-legal p { color: var(--sk-muted); line-height: 1.8; margin-bottom: 16px; }
.sk-legal ul { padding-left: 24px; margin-bottom: 16px; color: var(--sk-muted); }
.sk-legal li { margin-bottom: 8px; line-height: 1.6; }

/* ── Skeleton BEM aliases ─────────────────────────────────── */
.sk-body { margin: 0; }
.sk-main { min-height: 60vh; }

/* Nav (skeleton uses __links, __cta) */
.sk-nav { max-width: var(--sk-max-w); margin: 0 auto; height: 100%;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sk-nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.sk-nav-links a {
  padding: 8px 16px; border-radius: var(--sk-radius-sm);
  font-size: 15px; font-weight: 500; color: var(--sk-muted);
  transition: all 0.2s; text-decoration: none;
}
.sk-nav-links a:hover { color: var(--sk-text); background: var(--sk-surface); }
.sk-nav-cta { display: flex; align-items: center; }
@media (max-width: 768px) {
  .sk-nav-links { display: none; }
  .sk-nav-toggle { display: block; }
  .sk-nav.open .sk-nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--sk-bg); border-bottom: 1px solid var(--sk-border);
    padding: 16px;
  }
}

/* Hero BEM */
.sk-hero__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.sk-hero__title {
  font-family: var(--sk-font-h); color: var(--sk-text);
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px;
  text-align: center;
}
.sk-hero__sub {
  font-size: clamp(18px, 2vw, 22px); max-width: 600px;
  line-height: 1.6; color: var(--sk-muted); margin-bottom: 32px;
  text-align: center; margin-left: auto; margin-right: auto;
}
.sk-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; justify-content: center; }
.sk-hero__proof {
  margin-top: 24px; font-size: 14px; color: var(--sk-muted);
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
/* Split hero overrides — left-align content */
.sk-hero--split .sk-hero__content { align-items: flex-start; }
.sk-hero--split .sk-hero__title { text-align: left; }
.sk-hero--split .sk-hero__sub { text-align: left; margin-left: 0; }
.sk-hero--split .sk-hero__actions { justify-content: flex-start; }
.sk-hero--split .sk-hero__proof { justify-content: flex-start; }
.sk-hero__grid {
  display: grid; grid-template-columns: 55% 45%; gap: 64px; align-items: center;
}
.sk-hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.sk-hero__img {
  max-width: 100%; border-radius: var(--sk-radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
@media (max-width: 1024px) {
  .sk-hero__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .sk-hero__visual { order: -1; }
  .sk-hero__actions { justify-content: center; }
}

/* Section header BEM */
.sk-section__title {
  font-family: var(--sk-font-h); font-weight: 800;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.15;
  letter-spacing: -0.02em; margin: 0 0 0.5em;
}
.sk-section__sub {
  font-size: 18px; color: var(--sk-muted); line-height: 1.6;
}

/* Card BEM */
.sk-card__icon {
  width: 48px; height: 48px; border-radius: var(--sk-radius-sm);
  background: rgba(6,214,160,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.sk-card__title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; margin-bottom: 8px; }
.sk-card__text { color: var(--sk-muted); line-height: 1.6; flex: 1; }
.sk-feature-card { /* inherits .sk-card */ }

/* Stats BEM */
.sk-stats__grid {
  display: flex; justify-content: center; gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.sk-stat__num {
  display: block; font-family: var(--sk-font-h);
  font-size: clamp(36px, 4vw, 56px); font-weight: 800;
  color: var(--sk-accent); line-height: 1;
}
.sk-stat__label {
  display: block; font-size: 14px; color: var(--sk-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 8px;
}

/* Steps BEM */
.sk-step__num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sk-accent); color: #000000;
  font-family: var(--sk-font-h); font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}
.sk-step__title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; margin-bottom: 8px; }
.sk-step__text { color: var(--sk-muted); line-height: 1.6; }

/* Pricing BEM */
.sk-pricing { /* inherits .sk-section */ }
.sk-pricing-grid { align-items: stretch; }
.sk-pricing-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); padding: 40px 32px;
  display: flex; flex-direction: column; text-align: center; transition: all 0.3s;
}
.sk-pricing-card--popular {
  border-color: var(--sk-accent);
  box-shadow: 0 0 0 1px var(--sk-accent), 0 8px 32px rgba(6,214,160, 0.15);
  transform: scale(1.02);
}
.sk-pricing-card__price {
  margin: 16px 0; display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.sk-pricing-card__amount {
  font-family: var(--sk-font-h); font-size: 48px; font-weight: 800; color: var(--sk-text);
}
.sk-pricing-card__period {
  font-size: 16px; color: var(--sk-muted); font-weight: 400;
}
.sk-pricing-card__features {
  list-style: none; padding: 0; margin: 24px 0; text-align: left;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.sk-pricing-card__features li {
  padding-left: 28px; position: relative; color: var(--sk-muted); font-size: 15px;
}
.sk-pricing-card__features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--sk-accent); font-weight: 700;
}

/* CTA BEM */
.sk-cta__inner {
  background: linear-gradient(135deg, rgba(6,214,160,0.06), rgba(6,214,160,0.12));
  border: 1px solid rgba(6,214,160,0.15);
  border-radius: var(--sk-radius-lg); padding: clamp(48px, 6vw, 80px) 32px;
  text-align: center;
}
.sk-cta__title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.sk-cta__sub { max-width: 560px; margin: 0 auto 32px; font-size: 18px; color: var(--sk-muted); }
.sk-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Testimonials BEM */
.sk-testimonials { /* inherits .sk-section */ }
.sk-testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.sk-testimonial__stars { color: #facc15; font-size: 18px; }
.sk-testimonial__quote {
  font-size: 16px; color: var(--sk-muted); line-height: 1.7;
  font-style: italic; flex: 1; position: relative; padding-left: 20px;
  border-left: 3px solid var(--sk-accent);
}
.sk-testimonial__author { display: flex; align-items: center; gap: 12px; }
.sk-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(6,214,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--sk-accent); font-weight: 700; font-size: 16px;
  overflow: hidden;
}
.sk-testimonial__img { width: 100%; height: 100%; object-fit: cover; }
.sk-testimonial__initials { font-weight: 700; font-size: 16px; }
.sk-testimonial__name { font-weight: 700; color: var(--sk-text); }
.sk-testimonial__role { font-size: 14px; color: var(--sk-muted); }

/* FAQ BEM */
.sk-faq { /* inherits .sk-section */ }
.sk-faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 768px; margin: 0 auto; }
.sk-faq__item {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius-sm); overflow: hidden;
}
.sk-faq__question {
  padding: 20px 24px; font-weight: 600; cursor: pointer;
  color: var(--sk-text); font-size: 16px; list-style: none;
}
.sk-faq__question::-webkit-details-marker { display: none; }
.sk-faq__question::after {
  content: '+'; float: right; font-size: 20px; color: var(--sk-muted);
  transition: transform 0.2s;
}
.sk-faq__item[open] .sk-faq__question::after {
  content: '−';
}
.sk-faq__answer {
  padding: 0 24px 20px; color: var(--sk-muted); line-height: 1.7;
}

/* Badge accent variant */
.sk-badge--accent {
  background: var(--sk-accent); color: #000000;
  border-color: var(--sk-accent);
}

/* Footer BEM */
.sk-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.sk-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.sk-footer__tagline { color: var(--sk-muted); font-size: 15px; line-height: 1.6; }
.sk-footer__col { display: flex; flex-direction: column; gap: 8px; }
.sk-footer__heading {
  font-size: 14px; font-weight: 700; color: var(--sk-text);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
}
.sk-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sk-footer__links a { color: var(--sk-muted); font-size: 14px; text-decoration: none; }
.sk-footer__links a:hover { color: var(--sk-text); }
.sk-footer__bottom {
  border-top: 1px solid var(--sk-border); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--sk-muted); font-size: 14px;
}
.sk-footer__legal { display: flex; gap: 24px; }
.sk-footer__legal a { color: var(--sk-muted); font-size: 14px; text-decoration: none; }
.sk-footer__legal a:hover { color: var(--sk-text); }
@media (max-width: 960px) {
  .sk-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .sk-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .sk-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Newsletter BEM */
.sk-newsletter__inner {
  background: linear-gradient(135deg, rgba(6,214,160,0.04), rgba(6,214,160,0.08));
  border: 1px solid rgba(6,214,160,0.12);
  border-radius: var(--sk-radius-lg); padding: clamp(40px, 5vw, 64px) 32px;
  text-align: center;
}
.sk-newsletter__form {
  display: flex; gap: 12px; max-width: 480px; margin: 24px auto 0;
}
.sk-newsletter__form .sk-input { flex: 1; }
@media (max-width: 768px) {
  .sk-newsletter__form { flex-direction: column; }
}

/* Logos section */
.sk-logos { padding: 40px 0; }
.sk-logos__label {
  text-align: center; font-size: 14px; color: var(--sk-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  margin-bottom: 24px;
}
.sk-logos__grid {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(24px, 4vw, 48px); flex-wrap: wrap;
}
.sk-logos__item {
  font-size: 16px; font-weight: 700; color: var(--sk-muted); opacity: 0.6;
  transition: opacity 0.2s;
}
.sk-logos__item:hover { opacity: 1; }

/* Legal page BEM */
.sk-legal__title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 32px; }
.sk-legal__content { color: var(--sk-muted); line-height: 1.8; }
.sk-legal__content p { margin-bottom: 16px; }
.sk-legal__content h2 { font-size: 24px; margin-top: 48px; margin-bottom: 16px; color: var(--sk-text); }
.sk-legal__updated { font-size: 14px; color: var(--sk-muted); margin-top: 48px; font-style: italic; }

/* Features section alias */
.sk-features { /* inherits .sk-section */ }
.sk-how-it-works { /* inherits .sk-section */ }

/* ── Image support ───────────────────────────────────────── */

/* Hero background image overlay */
.sk-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}
.sk-hero[style*="background-image"] {
  position: relative; background-size: cover; background-position: center;
}
.sk-hero[style*="background-image"] .sk-hero__content {
  position: relative; z-index: 1;
}

/* SVG icons in feature cards */
.sk-card__icon svg {
  width: 28px; height: 28px;
  stroke: var(--sk-accent);
}

/* Team card photos */
.sk-team-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); padding: 32px 24px;
  text-align: center; transition: all 0.3s;
}
.sk-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.sk-team-card__photo {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden;
  background: rgba(6,214,160,0.1);
  display: flex; align-items: center; justify-content: center;
}
.sk-team-card__img {
  width: 100%; height: 100%; object-fit: cover;
}
.sk-team-card__initials {
  font-family: var(--sk-font-h);
  font-size: 32px; font-weight: 700;
  color: var(--sk-accent);
}

/* Blog card images */
.sk-blog-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius); overflow: hidden;
  transition: all 0.3s;
}
.sk-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.sk-blog-card__image {
  width: 100%; height: 200px; overflow: hidden;
  background: var(--sk-surface);
}
.sk-blog-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.sk-blog-card:hover .sk-blog-card__img {
  transform: scale(1.05);
}
.sk-blog-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sk-surface), rgba(6,214,160,0.08));
}
.sk-blog-card__body {
  padding: 24px;
}