
:root {
  --bg: #eff3f8;
  --bg-2: #f7f9fc;
  --text: #16202f;
  --muted: #6d7a8c;
  --muted-2: #8793a7;
  --line: rgba(140, 160, 190, 0.18);
  --line-strong: rgba(90, 112, 147, 0.16);
  --surface: rgba(255, 255, 255, 0.64);
  --surface-strong: rgba(255, 255, 255, 0.86);
  --surface-dark: #1f2533;
  --primary: #3d7cff;
  --primary-2: #6ea8ff;
  --success: #1eb980;
  --warning: #ffb648;
  --danger: #ff5d6c;
  --shadow: 0 20px 60px rgba(50, 70, 110, 0.12);
  --shadow-soft: 0 10px 30px rgba(70, 90, 130, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08));
}

.app-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(117, 164, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(161, 230, 214, 0.18), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(187, 205, 255, 0.18), transparent 25%),
    linear-gradient(180deg, #eef3f8 0%, #f9fbfd 100%);
}

.glass-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  width: 240px;
  height: 240px;
  top: -70px;
  left: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(126, 175, 255, 0.55), rgba(126, 175, 255, 0.12) 60%, transparent 72%);
}

.orb-two {
  width: 300px;
  height: 300px;
  right: -90px;
  bottom: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(138, 224, 193, 0.38), rgba(138, 224, 193, 0.10) 60%, transparent 72%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

ul {
  padding-left: 18px;
}

.container {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(90, 112, 147, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 12px;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 86px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}


.brand-badge {
  width: 86px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.56) 54%, rgba(231, 241, 255, 0.72) 100%);
  border: 1px solid rgba(92, 135, 255, 0.16);
  box-shadow:
    0 14px 28px rgba(61, 124, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-badge::before {
  content: "";
  position: absolute;
  inset: -28%;
  background:
    radial-gradient(circle at 30% 22%, rgba(101, 180, 255, 0.22), transparent 36%),
    radial-gradient(circle at 78% 80%, rgba(57, 210, 192, 0.18), transparent 40%);
  pointer-events: none;
}

.brand-badge img {
  width: 76px;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(28, 72, 150, 0.2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  flex-wrap: wrap;
}

.nav a,
.footer-links a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 30px rgba(61, 124, 255, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(130, 150, 180, 0.18);
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero {
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 24px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.hero-copy h1,
.section-head h2,
.card h2,
.card h3,
.contact-copy h2 {
  margin-bottom: 0;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  line-height: 0.96;
  max-width: 12ch;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill,
.status-chip,
.action-chip,
.role-badge,
.plan-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.pill,
.status-chip,
.action-chip,
.section-tag,
.role-badge {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(130, 150, 180, 0.16);
  box-shadow: 0 6px 18px rgba(80, 100, 140, 0.08);
}

.section-tag {
  color: var(--primary);
  background: rgba(61, 124, 255, 0.08);
  border-color: rgba(61, 124, 255, 0.14);
  box-shadow: none;
}

.status-live {
  color: var(--success);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.card-head,
.card > :not(style) {
  position: relative;
  z-index: 1;
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.card-head.compact {
  padding-bottom: 16px;
}

.card-head h2,
.card-head h3 {
  font-size: 1.5rem;
}

.preview-main {
  padding-bottom: 24px;
}

.preview-main .card-head h2 {
  font-size: 1.7rem;
}

.timer-box {
  margin: 22px 24px 0;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(130, 150, 180, 0.16);
  box-shadow: 0 12px 28px rgba(80, 100, 140, 0.08);
}

.timer-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(30, 185, 128, 0.12);
}

.timer-value {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 24px 0;
}

.metric-card,
.store-badge,
.faq-card,
.addon-card,
.workflow-card,
.feature-card,
.role-card,
.price-card,
.preview-card {
  border: 1px solid rgba(130, 150, 180, 0.16);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(80, 100, 140, 0.08);
}

.metric-card {
  padding: 16px 18px;
  border-radius: 18px;
}

.metric-card span,
.mini-stats span,
.admin-metrics span,
.price-plan,
.price-value small,
.rule-row span,
.store-copy small,
.footer-shell p,
.contact-copy p,
.feature-card p,
.role-card p,
.workflow-card p,
.addon-card p,
.faq-card p,
.price-card p {
  color: var(--muted);
}

.metric-card span,
.mini-stats span,
.admin-metrics span,
.store-copy small {
  display: block;
  font-size: 0.83rem;
  margin-bottom: 6px;
}

.metric-card strong,
.mini-stats strong,
.admin-metrics strong {
  font-size: 1.04rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 24px 0;
}

.action-chip.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
}

.hero-preview {
  display: grid;
  gap: 18px;
}

.preview-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.preview-card {
  padding: 0 0 22px;
}

.foreman-card .mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 24px;
}

.mini-stats div,
.admin-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(130, 150, 180, 0.16);
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 18px 24px 0 42px;
  margin-bottom: 0;
}

.mini-list li {
  color: var(--text);
}

.admin-card {
  background: rgba(255, 255, 255, 0.56);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  margin: 18px 18px 0;
  border-radius: 20px;
  background: #1f2533;
  color: #fff;
  box-shadow: 0 14px 34px rgba(13, 18, 32, 0.16);
}

.admin-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #a96eff, #ff8b7b);
}

.admin-body {
  padding: 18px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dark-list li {
  color: var(--text);
}

.store-panel {
  padding-bottom: 24px;
}

.store-panel .card-head h2 {
  font-size: 1.55rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 24px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
}

.store-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(61, 124, 255, 0.1);
}

.store-icon svg {
  width: 24px;
  height: 24px;
}

.store-copy strong {
  font-size: 1.04rem;
}

.section-head {
  margin-bottom: 26px;
}

.section-head.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.align-left,
.align-left p,
.align-left h2 {
  text-align: left;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.role-card,
.workflow-card,
.faq-card,
.addon-card,
.price-card {
  padding: 24px;
  border-radius: 24px;
}

.feature-card h3,
.role-card h3,
.workflow-card h3,
.price-card h3,
.faq-card h3,
.addon-card h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(61, 124, 255, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.role-card ul {
  display: grid;
  gap: 10px;
  color: var(--text);
}

.role-foreman {
  color: var(--warning);
}

.role-admin {
  color: var(--success);
}

.emphasis-card {
  background:
    radial-gradient(circle at top right, rgba(110, 168, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.76);
}

.workflow-wrap {
  display: grid;
  gap: 28px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step,
.plan-badge {
  color: var(--primary);
  background: rgba(61, 124, 255, 0.09);
  border: 1px solid rgba(61, 124, 255, 0.14);
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
}

.featured-plan {
  border-color: rgba(61, 124, 255, 0.2);
  background:
    radial-gradient(circle at top right, rgba(110, 168, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.78);
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  box-shadow: none;
}

.price-head {
  margin-bottom: 18px;
}

.price-plan {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
}

.price-value {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 14px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--text);
}

.full {
  width: 100%;
}

.addons-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.addon-card strong,
.rule-row strong {
  font-size: 1rem;
}

.rules-card {
  padding-bottom: 24px;
}

.rules-intro,
.rules-note {
  padding: 0 24px;
}

.rules-list {
  display: grid;
  gap: 10px;
  padding: 0 24px;
}

.rule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(130, 150, 180, 0.16);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card.wide {
  grid-column: 1 / -1;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 0 0 38px;
}

.footer-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(130, 150, 180, 0.18);
}

.footer-shell strong {
  display: block;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .hero-grid,
  .addons-layout,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .role-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    padding-top: 10px;
  }

  .header-shell,
  .footer-shell,
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .preview-stack,
  .feature-grid,
  .role-grid,
  .pricing-grid,
  .faq-grid,
  .addon-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .header-shell,
  .card-head,
  .metric-grid,
  .action-row,
  .store-grid,
  .rules-list,
  .rules-intro,
  .rules-note,
  .admin-body,
  .mini-stats,
  .mini-list {
    padding-left: 18px;
    padding-right: 18px;
  }

  .metric-grid,
  .admin-metrics,
  .foreman-card .mini-stats {
    grid-template-columns: 1fr;
  }

  .timer-box {
    margin-left: 18px;
    margin-right: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .price-value {
    font-size: 2.35rem;
  }

  .rule-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Selling role workflow section */
.role-story-section {
  position: relative;
}

.role-story-section .section-head {
  margin-bottom: 34px;
}

.role-flow-card {
  padding: 28px;
  background:
    radial-gradient(circle at 8% 4%, rgba(61, 124, 255, 0.14), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(30, 185, 128, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.68);
}

.role-flow-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.role-flow-intro h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.02;
  max-width: 13ch;
}

.role-flow-intro p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.role-flow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.role-flow-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, rgba(61, 124, 255, 0), rgba(61, 124, 255, 0.34), rgba(30, 185, 128, 0.3), rgba(61, 124, 255, 0));
  pointer-events: none;
}

.role-story-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(130, 150, 180, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(80, 100, 140, 0.09);
  overflow: hidden;
}

.role-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 45%);
}

.role-story-card > * {
  position: relative;
  z-index: 1;
}

.role-story-card.worker-story::after,
.role-story-card.foreman-story::after,
.role-story-card.admin-story::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  right: -70px;
  top: -72px;
  filter: blur(2px);
  pointer-events: none;
}

.role-story-card.worker-story::after {
  background: rgba(61, 124, 255, 0.12);
}

.role-story-card.foreman-story::after {
  background: rgba(255, 182, 72, 0.14);
}

.role-story-card.admin-story::after {
  background: rgba(30, 185, 128, 0.13);
}

.role-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.role-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(61, 124, 255, 0.18);
}

.foreman-story .role-number {
  background: linear-gradient(135deg, #ffb648, #ffcf77);
  box-shadow: 0 14px 28px rgba(255, 182, 72, 0.18);
}

.admin-story .role-number {
  background: linear-gradient(135deg, #1eb980, #79ddbd);
  box-shadow: 0 14px 28px rgba(30, 185, 128, 0.18);
}

.role-story-card h3 {
  font-size: 1.42rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.role-story-card p {
  margin-bottom: 18px;
}

.role-value-box {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(130, 150, 180, 0.16);
}

.role-value-box strong {
  color: var(--text);
}

.role-value-box span,
.role-tags span,
.role-outcome span {
  color: var(--muted);
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.role-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(130, 150, 180, 0.14);
}

.role-outcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.role-outcome {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(31, 37, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(13, 18, 32, 0.12);
}

.role-outcome strong {
  color: #fff;
}

.role-outcome span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1120px) {
  .role-flow-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .role-flow-intro h3 {
    max-width: none;
  }

  .role-flow-grid,
  .role-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-flow-grid::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .role-flow-grid,
  .role-outcome-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .role-flow-card {
    padding: 18px;
  }
}

/* GPS add-on commercial blocks */
.geo-addon-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 10%, rgba(61, 124, 255, 0.16), transparent 30%),
    radial-gradient(circle at 94% 8%, rgba(30, 185, 128, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.74);
}

.geo-addon-strip h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.geo-addon-strip p {
  max-width: 760px;
  margin-bottom: 0;
}

.geo-addon-strip strong,
.geo-addon-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(61, 124, 255, 0.1);
  border: 1px solid rgba(61, 124, 255, 0.16);
  white-space: nowrap;
}

.geo-addon-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 124, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.76);
  border-color: rgba(61, 124, 255, 0.18);
}

@media (max-width: 900px) {
  .geo-addon-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact form */
.contact-form-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: start;
  gap: 28px;
  padding: 32px;
}

.contact-form-card .contact-copy {
  max-width: 520px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(130, 150, 180, 0.16);
  box-shadow: 0 6px 18px rgba(80, 100, 140, 0.08);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(130, 150, 180, 0.16);
  box-shadow: 0 12px 28px rgba(80, 100, 140, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label,
.full-field,
.consent-field {
  display: grid;
  gap: 8px;
}

.contact-form label span:first-child,
.full-field span:first-child {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(130, 150, 180, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 124, 255, 0.46);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(61, 124, 255, 0.10);
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.consent-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #116848;
  background: rgba(30, 185, 128, 0.12);
  border: 1px solid rgba(30, 185, 128, 0.2);
}

.form-status.error {
  color: #a32a35;
  background: rgba(255, 93, 108, 0.1);
  border: 1px solid rgba(255, 93, 108, 0.18);
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (max-width: 1120px) {
  .contact-form-card {
    grid-template-columns: 1fr;
  }

  .contact-form-card .contact-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .contact-form-card,
  .contact-form {
    padding: 20px;
  }

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

/* Legal quick links on the main landing page */
.legal-quick-section {
  padding: 0 0 32px;
}

.legal-quick-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.legal-quick-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(61, 124, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.legal-quick-copy {
  position: relative;
  z-index: 1;
}

.legal-quick-copy h2 {
  margin: 0 0 12px;
  max-width: 680px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-quick-copy p:last-child {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-quick-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.legal-action-btn {
  min-width: 170px;
  white-space: nowrap;
}

.footer-shell-enhanced {
  align-items: center;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}


.footer-brand-block {
  display: grid;
  gap: 10px;
}

.footer-brand {
  width: fit-content;
}

.footer-brand-block p {
  margin: 0;
}

.footer-legal-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-legal-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #345fbc;
  font-weight: 800;
  font-size: 0.88rem;
  background: rgba(61, 124, 255, 0.08);
  border: 1px solid rgba(61, 124, 255, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-legal-buttons a:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
}

@media (max-width: 900px) {
  .legal-quick-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .legal-quick-actions,
  .footer-right,
  .footer-links,
  .footer-legal-buttons {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .legal-action-btn {
    flex: 1 1 190px;
  }
}


@media (max-width: 560px) {
  .brand-badge {
    width: 72px;
    height: 48px;
    border-radius: 17px;
    padding: 8px 9px;
  }

  .brand-badge img {
    width: 64px;
  }
}

/* Final fixes for index.html: foreman card, mobile app badges and pricing card layout */
.card-head > div {
  min-width: 0;
}

.preview-card,
.price-card,
.store-panel,
.store-badge {
  min-width: 0;
}

.foreman-card .card-head.compact.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding-bottom: 16px;
}

.foreman-card .section-tag {
  max-width: 100%;
  justify-content: flex-start;
  white-space: normal;
  text-align: left;
  line-height: 1.18;
}

.foreman-card .status-chip {
  white-space: nowrap;
  align-self: start;
}

.foreman-card .card-head h3 {
  margin-top: 12px;
  max-width: 12ch;
  line-height: 1.08;
  overflow-wrap: normal;
}

.foreman-card .mini-stats {
  align-items: stretch;
}

.foreman-card .mini-stats div {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 88px;
  text-align: center;
}

.foreman-card .mini-stats span {
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.foreman-card .mini-stats strong {
  line-height: 1;
}

.foreman-card .mini-list {
  padding-top: 20px;
  padding-right: 26px;
  gap: 12px;
}

.foreman-card .mini-list li {
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.store-panel {
  padding-bottom: 26px;
}

.store-panel .card-head.compact {
  padding-bottom: 18px;
}

.store-grid {
  gap: 16px;
}

.store-badge {
  min-height: 118px;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.store-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(236, 243, 255, 0.98), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(61, 124, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 12px 24px rgba(61, 124, 255, 0.08);
}

.store-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  stroke: none;
}

.store-icon-apple,
.store-icon-play {
  color: var(--primary);
}

.store-icon-play .play-shape {
  fill: currentColor;
}

.store-icon-play .play-cut {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-copy {
  min-width: 0;
}

.store-copy small {
  font-size: 1rem;
  line-height: 1.2;
}

.store-copy strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.featured-plan .plan-badge,
.plan-badge {
  position: static;
  top: auto;
  right: auto;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  box-shadow: none;
  white-space: normal;
  text-align: center;
  line-height: 1.18;
  z-index: 2;
}

.price-head {
  min-width: 0;
  margin-bottom: 22px;
}

.price-plan {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.25;
  overflow-wrap: normal;
}

.price-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.3vw, 4.65rem);
  line-height: 0.94;
}

.price-value small {
  display: inline-block;
  color: var(--muted);
  font-size: clamp(1rem, 2.25vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.price-list {
  flex: 1 1 auto;
}

.price-card .btn.full {
  margin-top: auto;
}

@media (max-width: 720px) {
  .store-badge {
    min-height: auto;
    padding: 18px;
    gap: 16px;
  }

  .store-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 20px;
  }

  .store-icon svg {
    width: 34px;
    height: 34px;
  }

  .price-card {
    padding: 24px;
  }

  .price-value {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }
}

@media (max-width: 640px) {
  .foreman-card .card-head.compact.split {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .foreman-card .section-tag {
    max-width: min(250px, 100%);
  }

  .foreman-card .mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .foreman-card .mini-stats div {
    min-height: 86px;
    padding: 14px 8px;
  }

  .foreman-card .mini-stats span {
    font-size: 0.82rem;
  }

  .foreman-card .mini-stats strong {
    font-size: 1.18rem;
  }

  .foreman-card .mini-list {
    padding-left: 38px;
    padding-right: 20px;
  }
}

@media (max-width: 420px) {
  .foreman-card .card-head.compact.split {
    grid-template-columns: 1fr;
  }

  .foreman-card .status-chip {
    width: fit-content;
  }

  .foreman-card .mini-stats {
    grid-template-columns: 1fr;
  }
}


/* Polished foreman preview card */
.hero-preview .preview-stack {
  grid-template-columns: 1fr;
}

.foreman-polished-card {
  padding: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(61, 124, 255, 0.18), transparent 34%),
    radial-gradient(circle at 100% 10%, rgba(30, 185, 128, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.72);
}

.foreman-polished-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 124, 255, 0.16), rgba(30, 185, 128, 0.06));
  filter: blur(2px);
  pointer-events: none;
}

.foreman-card-inner {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.foreman-polished-card .card-head.compact.split,
.foreman-polished-card .foreman-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 18px;
}

.foreman-polished-card .section-tag {
  white-space: nowrap;
  max-width: none;
}

.foreman-polished-card .card-head h3 {
  max-width: none;
  margin-top: 12px;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.foreman-subtitle {
  max-width: 28rem;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.foreman-live-chip {
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(80, 100, 140, 0.1);
}

.live-dot.mini {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 5px rgba(30, 185, 128, 0.14);
  flex: 0 0 8px;
}

.foreman-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.foreman-progress-card,
.foreman-kpi,
.foreman-flow-item {
  border: 1px solid rgba(130, 150, 180, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(80, 100, 140, 0.08);
}

.foreman-progress-card {
  padding: 18px;
  border-radius: 24px;
}

.foreman-progress-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.foreman-progress-top span,
.foreman-kpi span,
.foreman-progress-card small,
.foreman-kpi small {
  color: var(--muted);
}

.foreman-progress-top span,
.foreman-kpi span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.foreman-progress-top strong {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.foreman-progress-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(61, 124, 255, 0.11);
  box-shadow: inset 0 1px 2px rgba(80, 100, 140, 0.08);
}

.foreman-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 20px rgba(61, 124, 255, 0.22);
}

.foreman-progress-card small {
  display: block;
  margin-top: 12px;
  line-height: 1.45;
  font-size: 0.82rem;
}

.foreman-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.foreman-kpi {
  min-width: 0;
  padding: 16px;
  border-radius: 22px;
}

.foreman-kpi strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.foreman-kpi small {
  display: block;
  font-size: 0.82rem;
  line-height: 1.25;
}

.foreman-flow-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.foreman-flow-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 20px;
}

.foreman-flow-item > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(61, 124, 255, 0.1);
  font-weight: 900;
  font-size: 0.78rem;
}

.foreman-flow-item p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: normal;
}

@media (min-width: 1180px) {
  .foreman-overview {
    grid-template-columns: minmax(0, 1.1fr) minmax(190px, 0.75fr);
    align-items: stretch;
  }

  .foreman-kpis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .foreman-card-inner {
    padding: 18px;
  }

  .foreman-polished-card .card-head.compact.split,
  .foreman-polished-card .foreman-card-head {
    flex-direction: column;
    gap: 14px;
  }

  .foreman-polished-card .card-head h3 {
    font-size: 2rem;
  }

  .foreman-kpis {
    grid-template-columns: 1fr;
  }

  .foreman-flow-item {
    align-items: start;
  }
}


/* Layout adjustment: company admin preview moved into the left hero column */
.hero-admin-card {
  margin-top: 18px;
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(61, 124, 255, 0.10), transparent 32%),
    rgba(255, 255, 255, 0.66);
}

.hero-admin-card .admin-topbar {
  margin: 18px 18px 0;
}

.hero-admin-card .admin-body {
  padding: 18px;
}

.hero-admin-card .mini-list {
  padding-top: 18px;
  padding-right: 18px;
}

.hero-admin-card .mini-list li {
  line-height: 1.45;
}

.hero-preview .preview-stack {
  grid-template-columns: 1fr;
}

.hero-preview .foreman-polished-card {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .hero-admin-card {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .hero-admin-card .admin-body,
  .hero-admin-card .mini-list {
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* Multilingual language switcher */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(126, 157, 210, .18);
  box-shadow: 0 8px 22px rgba(56, 88, 140, .08);
  flex: 0 0 auto;
}
.lang-btn {
  border: 0;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted, #6d7a8c);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.lang-btn:hover {
  color: var(--text, #16202f);
  transform: translateY(-1px);
}
.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #3d7cff), var(--primary-2, #6ea8ff));
  box-shadow: 0 10px 20px rgba(61, 124, 255, .22);
}
@media (max-width: 980px) {
  .header-shell {
    flex-wrap: wrap;
  }
  .language-switcher {
    order: 3;
    margin-left: auto;
  }
}
@media (max-width: 720px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
    order: 5;
  }
  .lang-btn {
    flex: 1;
    max-width: 54px;
  }
}

/* Support page */
.support-hero-section {
  padding-top: 72px;
  padding-bottom: 28px;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.support-hero-copy {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0;
}

.support-hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.support-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.support-info-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.support-info-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  background: radial-gradient(circle at 78% 10%, rgba(79, 134, 255, 0.18), transparent 36%),
              linear-gradient(135deg, rgba(255,255,255,.64), rgba(237,244,255,.5));
  pointer-events: none;
}

.support-info-card > * {
  position: relative;
  z-index: 1;
}

.support-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #77a8ff);
  box-shadow: 0 18px 38px rgba(79, 134, 255, .25);
  font-size: 1.8rem;
  font-weight: 900;
}

.support-info-card h2,
.support-form-head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.support-info-card p,
.support-form-head p:not(.eyebrow),
.support-help-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.support-form-section {
  padding-top: 22px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: start;
}

.support-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 128px;
}

.support-help-card {
  padding: 28px;
}

.support-checklist {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.support-checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.support-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(79,134,255,.12);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 900;
}

.support-note-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.support-mini-note {
  margin-top: 16px !important;
  padding: 16px;
  border-radius: 18px;
  background: rgba(79,134,255,.08);
  color: #50627d !important;
  border: 1px solid rgba(79,134,255,.12);
}

.support-form-card {
  padding: clamp(24px, 4vw, 42px);
}

.support-form-head {
  margin-bottom: 26px;
}

.support-form textarea {
  min-height: 160px;
}

@media (max-width: 1100px) {
  .support-hero-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .support-hero-section {
    padding-top: 44px;
  }

  .support-hero-copy {
    min-height: unset;
    padding: 18px 0;
  }

  .support-hero-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .support-side {
    grid-template-columns: 1fr;
  }

  .support-info-card,
  .support-help-card,
  .support-form-card {
    padding: 22px;
  }
}
