/* ─────────────────────────────────────────────────────────────
   Concero Cloud Desktops — Shared Styles
   All token references via var(). No hardcoded hex values.
───────────────────────────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Scroll Progress Bar ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; color: var(--text); }
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; display: block;
}

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,251,252,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; gap: 40px; height: 72px;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
}
.nav-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--text); letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo .logo-mark {
  width: 32px; height: 32px; background: var(--accent);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-mark svg { width: 18px; height: 18px; }
.nav-links {
  display: flex; gap: 32px; margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color 0.2s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 10px 22px; border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none; padding: 8px;
  color: var(--text); cursor: pointer;
}

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

/* ── Mobile Menu ── */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--dark); padding: 24px var(--pad);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.8); padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-primary { margin-top: 16px; text-align: center; border-radius: var(--radius-md); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--font-display);
  border-radius: var(--radius-md); border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-magnetic { transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, border-color 0.2s, color 0.2s; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Hero (full viewport) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,21,33,0.92) 0%, rgba(13,21,33,0.65) 50%, rgba(246,130,31,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding-top: 72px;
  color: #fff; max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(246,130,31,0.15); border: 1px solid rgba(246,130,31,0.3);
  color: #FBAD41; font-family: var(--font-display); font-size: 12px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.65;
  color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%,100%{ transform:translateX(-50%) translateY(0) }
  50%{ transform:translateX(-50%) translateY(9px) }
}

/* ── Sub-page hero ── */
.page-hero {
  height: clamp(320px, 42vh, 480px);
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2d4a 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(246,130,31,0.12) 0%, transparent 70%);
}
.page-hero-content {
  position: relative; z-index: 1; color: #fff;
  padding-bottom: 56px; padding-top: 120px;
}
.page-hero-content .section-label { color: #FBAD41; }
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-top: 8px;
}

/* ── Section header with right-aligned CTA ── */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.section-header-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); margin-top: 8px;
}
.section-header p {
  font-size: 1rem; color: var(--muted); max-width: 480px; margin-top: 12px; line-height: 1.65;
}
@media (max-width: 768px) {
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ── Section padding rhythm ── */
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--surface); }
.section-dark { padding: 100px 0; background: var(--dark); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .section-label { color: #FBAD41; }
.section-dark p { color: rgba(255,255,255,0.72); }

/* ── Stats band ── */
.stats-band {
  background: var(--dark); padding: 80px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 24px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem,5vw,4rem); line-height: 1;
  color: var(--accent); letter-spacing: -0.03em; margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.6); font-family: var(--font-body);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Logo bar ── */
.logo-bar { padding: 56px 0; border-bottom: 1px solid var(--border); }
.logo-bar-label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 32px; }
.logo-bar-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 48px; }
.logo-bar-item { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--border); letter-spacing: 0.04em; }

/* ── Service/Feature grid ── */
.services-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.service-cell {
  padding: 40px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-cell:nth-child(2n) { border-right: none; }
.service-cell:nth-last-child(-n+2) { border-bottom: none; }
.service-cell:hover { background: var(--surface); }
.service-icon {
  width: 48px; height: 48px; background: rgba(246,130,31,0.1); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-cell h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
.service-cell p { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-cell:nth-child(2n) { border-right: none; }
  .service-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-cell:last-child { border-bottom: none; }
}

/* ── Cards ── */
.card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { overflow: hidden; aspect-ratio: 16/9; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 28px; }

/* ── Steps (how it works) ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 24px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 1px; background: var(--border); z-index: 0;
}
.step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.step h3 { font-size: 1.125rem; margin-bottom: 12px; }
.step p { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .step { padding: 0; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-num { flex-shrink: 0; margin: 0; }
}

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 24px;
}
.testimonial .quote {
  font-size: 1rem; line-height: 1.7; color: var(--text); font-style: italic; flex: 1;
}
.testimonial .quote::before { content: '\201C'; font-size: 1.5rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 2px; font-style: normal; }
.testimonial .author { display: flex; align-items: center; gap: 14px; }
.testimonial .author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--dark); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff;
}
.testimonial .author-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.testimonial .author-title { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA band ── */
.cta-band {
  padding: 120px 0; background: var(--dark);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(246,130,31,0.12) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 var(--pad); }
.cta-band h2 { font-size: clamp(2rem,4vw,3.25rem); color: #fff; margin-bottom: 20px; }
.cta-band p { font-size: 1.0625rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; line-height: 1.65; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo .logo-mark {
  width: 30px; height: 30px; background: var(--accent);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.footer-logo .logo-mark svg { width: 16px; height: 16px; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--accent); border-width: 2px;
  background: var(--dark); color: #fff;
}
.pricing-card.featured h3 { color: #fff; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.6); }
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.08); }
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.pricing-card h3 { font-size: 1.125rem; margin-bottom: 12px; }
.plan-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; line-height: 1; }
.plan-price .currency { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; color: var(--accent); }
.plan-price .amount { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 800; letter-spacing: -0.04em; color: var(--accent); }
.plan-price .period { font-size: 0.875rem; color: var(--muted); padding-bottom: 8px; }
.plan-price.custom-price .amount { font-size: 2rem; }
.plan-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; }
.plan-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .plan-specs { border-color: rgba(255,255,255,0.1); }
.spec-chip { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); background: var(--surface); padding: 5px 10px; border-radius: var(--radius-pill); }
.pricing-card.featured .spec-chip { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.spec-chip svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.plan-features { flex: 1; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── Contact form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; font-family: var(--font-display); letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246,130,31,0.1);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; background: rgba(246,130,31,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--accent); }
.info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 500; color: var(--text); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text);
  text-align: left; gap: 16px;
}
.faq-btn svg { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { padding-bottom: 24px; font-size: 0.9375rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Split text animation ── */
.split-text .word { display: inline-block; opacity: 0; transform: translateY(40px); transition: opacity 0.5s ease, transform 0.5s ease; }
.split-text.animated .word { opacity: 1; transform: none; }

/* ── Image + text layouts ── */
.image-text { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.image-text.reverse .image-text-img { order: 2; }
.image-text.reverse .image-text-content { order: 1; }
.image-text-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.image-text-img img { width: 100%; height: 100%; object-fit: cover; }
.image-text-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 20px; }
.image-text-content p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-list-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-list-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.feature-list-item span { font-size: 0.9375rem; line-height: 1.65; }
@media (max-width: 900px) {
  .image-text { grid-template-columns: 1fr; gap: 40px; }
  .image-text.reverse .image-text-img { order: 0; }
  .image-text.reverse .image-text-content { order: 0; }
}

/* ── Industry tag grid ── */
.industry-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 10px 18px;
  font-size: 14px; font-weight: 500; color: var(--text); transition: border-color 0.2s, color 0.2s;
}
.industry-tag:hover { border-color: var(--accent); color: var(--accent); }
.industry-tag svg { width: 16px; height: 16px; color: var(--accent); }

/* ── Misc ── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0 }

/* ── Nav spacer ── */
.nav-spacer { height: 72px; }

/* ── Comparison table (pricing) ── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.comparison-table { width: 100%; min-width: 600px; border-collapse: collapse; background: var(--bg); }
.comparison-table th { font-family: var(--font-display); font-size: 13px; font-weight: 600; padding: 20px 24px; text-align: center; background: var(--dark); color: #fff; }
.comparison-table th:first-child { text-align: left; }
.comparison-table td { padding: 16px 24px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); text-align: center; }
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--surface); }
.check { color: var(--accent); }
.cross { color: var(--muted); opacity: 0.4; }

/* ── Trust bar (pricing page) ──────────────────────────────────────── */
.trust-bar { padding: 24px 0; text-align: center; }
.trust-list { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 24px; list-style: none; padding: 0; margin: 0; }
.trust-list li { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.trust-list li + li::before { content: '·'; margin-right: 24px; color: var(--border); }
