*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:          #0a0a0a;
  --bg-card:     #111111;
  --bg-elevated: #1a1a1a;
  --border:      #222222;
  --border-mid:  #2e2e2e;
  --text:        #e8e8e8;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --red:         #e53935;
  --red-glow:    rgba(229, 57, 53, 0.25);
  --red-dim:     rgba(229, 57, 53, 0.08);
  --max:         1120px;
}

html, body {
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a {
  color: inherit;
  text-decoration: none;
}

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  padding: 8px 16px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.15s, transform 0.15s;
}

.site-nav .nav-cta:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--red);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: #fff;
}

/* ── Shared section helpers ──────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow,
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.section-sub {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 32px 80px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #fff 0%, #ff8a87 60%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Features ────────────────────────────────────── */
.features {
  padding: 64px 0 0;
}

.features .section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.features-teaser {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 0 32px 64px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.features-teaser a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.features-teaser a:hover {
  text-decoration: underline;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-dim);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(229, 57, 53, 0.2);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-card--link {
  display: flex;
  flex-direction: column;
}

.feature-card--link:hover {
  border-color: var(--red);
}

.feature-link {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.2px;
  transition: opacity 0.15s;
}

.feature-card--link:hover .feature-link {
  opacity: 0.85;
}

/* ── Clients ─────────────────────────────────────── */
.clients {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.client-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.client-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--red-dim);
  border: 1px solid rgba(229, 57, 53, 0.2);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 14px;
}

.client-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

.client-meta {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.client-meta a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-mid);
  transition: color 0.15s, border-color 0.15s;
}

.client-meta a:hover {
  color: var(--red);
  border-color: var(--red);
}

.client-bio {
  margin-top: 16px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.client-bio strong {
  color: var(--text);
  font-weight: 600;
}

.client-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: opacity 0.15s;
}

.client-link:hover {
  opacity: 0.85;
}

/* ── Workflow steps ──────────────────────────────── */
.workflow {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px;
}

.step-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.step-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, var(--red) 0%, var(--border) 100%);
  opacity: 0.35;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: var(--border-mid);
  transform: translateY(-1px);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--red-dim);
  border: 1px solid rgba(229, 57, 53, 0.25);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Team ────────────────────────────────────────── */
.team {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
  border: 2px solid var(--border-mid);
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

.linkedin-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #0a66c2;
  text-decoration: none;
}

.linkedin-link:hover {
  text-decoration: underline;
}

.team-role {
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.team-bio {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA strip ───────────────────────────────────── */
.cta-strip {
  max-width: 780px;
  margin: 32px auto 96px;
  padding: 56px 40px;
  text-align: center;
  background: linear-gradient(180deg, #140a0a 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.cta-strip h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.cta-strip p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta a {
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-meta a:hover {
  color: var(--red);
}

.footer-meta .dot {
  color: var(--text-dim);
}

/* ── Hero eyebrow link ───────────────────────────── */
.hero-eyebrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 22px;
  background: var(--red-dim);
  border: 1px solid rgba(229, 57, 53, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.hero-eyebrow-link:hover {
  border-color: var(--red);
  background: rgba(229, 57, 53, 0.14);
}

.hero-eyebrow-link strong {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ── Logo strip ──────────────────────────────────── */
.logo-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.logo-strip-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-strip-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-strip-chip {
  padding: 8px 18px;
  border: 1px solid var(--border-mid);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

/* ── Feature deep-dive sections ──────────────────── */
.feature-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-section + .feature-section {
  padding-top: 0;
}

.feature-section__media {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section__media-placeholder {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.feature-section--reverse .feature-section__media {
  order: 2;
}

.feature-section__body h2,
.feature-section__body h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.feature-section__body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.feature-section__body .btn {
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* ── Pricing ─────────────────────────────────────── */
.pricing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  border-color: var(--red);
  box-shadow: 0 12px 40px var(--red-glow);
  position: relative;
}

.pricing-card--featured:hover {
  border-color: var(--red);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-card__tier {
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 4px;
}

.pricing-card__price-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card__audience {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
  justify-content: center;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color 0.2s;
}

.faq details[open] {
  border-color: var(--border-mid);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-card);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  align-self: flex-start;
  border: none;
}

.contact-form__status {
  font-size: 0.9rem;
  color: var(--red);
  min-height: 1.2em;
}

.contact-form__status.is-success {
  color: #4ade80;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-aside h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.contact-aside p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-1px);
}

.contact-card .avatar {
  width: 56px;
  height: 56px;
  margin: 0;
  flex-shrink: 0;
}

.contact-card__name {
  font-weight: 600;
  color: #fff;
  font-size: 0.98rem;
}

.contact-card__role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-card__link {
  margin-top: 4px;
  font-size: 0.83rem;
  color: var(--red);
  font-weight: 600;
}

/* ── Multi-column footer ─────────────────────────── */
.site-footer--rich {
  padding: 48px 32px 28px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-grid h4 {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-grid li a:hover {
  color: var(--red);
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 280px;
}

.site-footer--rich .footer-inner {
  padding-top: 24px;
}

/* ── Page hero (shared by sub-pages) ─────────────── */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 32px 32px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 860px) {
  .feature-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 20px;
  }

  .feature-section--reverse .feature-section__media {
    order: 0;
  }

  .feature-section__body h2,
  .feature-section__body h3 {
    font-size: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-hero {
    padding: 56px 20px 24px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 20px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.85rem;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 64px 20px 48px;
  }

  .hero-title {
    font-size: 2.1rem;
    letter-spacing: -0.6px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .features {
    padding: 48px 0 0;
  }

  .features .section-head {
    padding: 0 20px;
  }

  .team {
    padding: 48px 20px;
  }

  .feature-grid,
  .feature-grid--3,
  .team-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .clients,
  .workflow {
    padding: 48px 20px;
  }

  .step {
    padding: 18px 18px;
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .step-list::before {
    left: 19px;
  }

  .step-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .cta-strip {
    margin: 16px 20px 64px;
    padding: 40px 24px;
  }

  .cta-strip h2 {
    font-size: 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer--rich {
    padding: 36px 20px 20px;
  }

  .logo-strip {
    padding: 0 20px 24px;
  }

  .pricing {
    padding: 48px 20px;
  }

  .contact-form {
    padding: 24px;
  }
}
