/* "Studio" template — editorial agency look. Scoped under .st */
.st {
  --st-accent: #111827;
  --st-accent-2: #6366f1;
  --st-ink: #0b0f1a;
  --st-muted: #5b6472;
  --st-line: #e6e8ee;
  --st-soft: #f4f5f8;
  --st-bg: #ffffff;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--st-ink);
  background: var(--st-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.st *,
.st *::before,
.st *::after {
  box-sizing: border-box;
}
.st img {
  max-width: 100%;
  display: block;
}
.st a {
  color: inherit;
  text-decoration: none;
}
.st-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.st [id] {
  scroll-margin-top: calc(var(--flash-h, 0px) + 88px);
}
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--st-accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.st-btn:hover {
  transform: translateY(-2px);
}
.st-btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}
.st-btn-block {
  width: 100%;
}
.st-btn-invert {
  background: #fff;
  color: var(--st-accent);
}
.st-link {
  font-weight: 600;
  border-bottom: 2px solid var(--st-accent-2);
  padding-bottom: 2px;
}
.st-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--st-accent-2);
  margin-bottom: 18px;
}
.st-h1 {
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
}
.st-h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 12px;
}
.st-lead {
  font-size: 19px;
  color: var(--st-muted);
  margin: 0 0 28px;
  max-width: 44ch;
}
.st-sub {
  font-size: 17px;
  color: var(--st-muted);
  margin: 0;
}

/* Nav */
.st-nav {
  border-bottom: 1px solid var(--st-line);
  position: sticky;
  top: var(--flash-h, 0px);
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.st-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.st-brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.st-logo {
  height: 30px;
  width: auto;
}
.st-nav-links {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--st-muted);
}
.st-nav-links a:hover {
  color: var(--st-ink);
}

/* Hero */
.st-hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--st-line);
}
.st-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.st-hero-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.st-hero-media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--st-line);
}

/* Logos */
.st-logos {
  padding: 36px 0;
  background: var(--st-soft);
}
.st-logos-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--st-muted);
  margin: 0 0 18px;
}
.st-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
.st-logos-row img {
  height: 28px;
  filter: grayscale(1);
  opacity: 0.6;
}

/* Sections */
.st-section {
  padding: 92px 0;
}
.st-head {
  max-width: 680px;
  margin: 0 0 52px;
}

/* Services */
.st-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--st-line);
  border-left: 1px solid var(--st-line);
}
.st-service {
  border-right: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
  padding: 32px;
  position: relative;
  transition: background 0.2s ease;
}
.st-service:hover {
  background: var(--st-soft);
}
.st-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--st-accent-2);
}
.st-ico {
  font-size: 30px;
  margin-bottom: 16px;
}
.st-service h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
}
.st-service p {
  margin: 0;
  color: var(--st-muted);
  font-size: 15px;
}

/* About */
.st-about {
  background: var(--st-soft);
}
.st-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.st-about-media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--st-line);
}
.st-bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.st-bullets li {
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}
.st-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--st-accent-2);
  font-weight: 800;
}

/* Stats */
.st-stats {
  background: var(--st-accent);
  color: #fff;
  padding: 56px 0;
}
.st-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.st-stat-value {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.st-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-top: 4px;
}

/* Testimonials */
.st-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.st-quote {
  margin: 0;
  border: 1px solid var(--st-line);
  border-radius: 14px;
  padding: 26px;
}
.st-quote blockquote {
  margin: 0 0 18px;
  font-size: 16px;
}
.st-quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.st-quote figcaption img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.st-quote figcaption strong {
  display: block;
  font-size: 15px;
}
.st-quote figcaption span {
  color: var(--st-muted);
  font-size: 13px;
}

/* Pricing */
.st-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.st-plan {
  border: 1px solid var(--st-line);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.st-plan-featured {
  border-color: var(--st-accent);
  border-width: 2px;
}
.st-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--st-accent-2);
  padding: 4px 10px;
  border-radius: 999px;
}
.st-plan h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.st-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.st-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--st-muted);
}
.st-plan ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.st-plan ul li {
  padding-left: 24px;
  position: relative;
  color: var(--st-muted);
  font-size: 15px;
}
.st-plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--st-accent-2);
  font-weight: 800;
}

/* CTA */
.st-cta {
  padding: 96px 0;
}
.st-cta-inner {
  background: var(--st-accent);
  color: #fff;
  border-radius: 20px;
  padding: 64px 32px;
  text-align: center;
}
.st-cta-inner h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.st-cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 26px;
}

/* Footer */
.st-footer {
  border-top: 1px solid var(--st-line);
  padding: 56px 0 30px;
}
.st-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.st-foot-tag {
  color: var(--st-muted);
  font-size: 15px;
  margin: 12px 0 0;
  max-width: 30ch;
}
.st-footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
}
.st-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.st-footer ul a {
  color: var(--st-muted);
  font-size: 15px;
}
.st-footer ul a:hover {
  color: var(--st-ink);
}
.st-foot-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--st-line);
  color: var(--st-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .st-hero-grid,
  .st-about-grid {
    grid-template-columns: 1fr;
  }
  .st-hero-media {
    order: -1;
  }
  .st-services,
  .st-quotes,
  .st-pricing {
    grid-template-columns: 1fr 1fr;
  }
  .st-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .st-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .st-nav-links {
    display: none;
  }
}
@media (max-width: 560px) {
  .st-services,
  .st-quotes,
  .st-pricing,
  .st-stats-row,
  .st-footer-grid {
    grid-template-columns: 1fr;
  }
}
