/* Workcraft Landing v2 — layout + components */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--wc-cream);
  color: var(--wc-text);
  font-family: var(--wc-font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { text-wrap: pretty; }
ul { list-style: none; }

.container {
  padding-left: var(--wc-page-pad-x-mobile);
  padding-right: var(--wc-page-pad-x-mobile);
  max-width: var(--wc-max-outer);
  margin: 0 auto;
}
.section-y { padding-top: var(--wc-section-y); padding-bottom: var(--wc-section-y); }
.hero-gradient { background: var(--wc-gradient-hero); }
.hl-orange { color: var(--wc-orange); }
.hl-underline { position: relative; display: inline-block; }
.hl-underline::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: -6px;
  height: 12px;
  background: var(--wc-orange);
  border-radius: 12px;
  transform: rotate(-1.2deg);
  z-index: -1;
  opacity: 0.85;
}
.arrow-i { width: 18px; height: 18px; flex: 0 0 18px; }
.btn__icon { width: 22px; height: 22px; flex: 0 0 22px; }

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font: 600 13px/20px var(--wc-font-sans);
  letter-spacing: 0.1px;
  border-radius: var(--wc-radius-btn);
  padding: 14px 24px;
  height: 52px;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  border: 0;
  transition: filter .15s ease, background .15s ease;
}
.btn-primary { background: var(--wc-orange); color: var(--wc-text); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-primary.lg { height: 56px; font-size: 14px; padding: 14px 28px; }
.btn-secondary {
  background: transparent;
  color: var(--wc-text);
  border: 1.5px solid var(--wc-text);
}
.btn-secondary:hover { background: rgba(0,0,0,0.05); }
.btn-secondary.lg { height: 56px; font-size: 14px; padding: 14px 28px; }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.26); }
.btn-ghost.lg { height: 56px; font-size: 14px; padding: 14px 28px; }

/* Pills */
.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: white;
  font: 700 11px/1 var(--wc-font-sans);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.pill.orange { background: rgba(253,133,49,0.12); color: #b9531a; }
.pill-orange {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--wc-orange);
  color: var(--wc-text);
  font: 700 11px/1 var(--wc-font-sans);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.pill-blue {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(57,80,160,0.1);
  color: var(--wc-blue);
  font: 700 11px/1 var(--wc-font-sans);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.card {
  background: white;
  border-radius: var(--wc-radius-card);
  box-shadow: var(--wc-shadow-card);
}
.panel { border-radius: var(--wc-radius-panel); }
.benefit-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--wc-orange);
  flex-shrink: 0;
}

.wc-input-field {
  border: 1px solid var(--wc-input-border);
  border-radius: 6px;
  padding: 14px 16px;
  font: 400 16px/1.2 var(--wc-font-input);
  color: var(--wc-input-text);
  outline: none;
  width: 100%;
  transition: border-color .15s;
}
.wc-input-field:focus { border-color: var(--wc-blue); }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wc-gradient-hero);
}
.site-nav__inner {
  max-width: var(--wc-max-outer);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--wc-page-pad-x-mobile);
  gap: 16px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-nav__logo { height: 30px; width: 32px; }
.site-nav__wordmark {
  font-family: var(--wc-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: var(--wc-track-wordmark);
  color: white;
  line-height: 1.2;
  min-width: 0;
}
.site-nav__cta {
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}
.site-nav__cta-label--short { display: none; }

/* Hero */
.hero {
  position: relative;
  overflow: visible;
}
.hero__wrench {
  position: absolute;
  left: 50%;
  top: -120px;
  width: 900px;
  height: 900px;
  transform: translateX(-30%);
  opacity: 0.07;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 48px 0 72px;
}
.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero__copy {
  width: 100%;
  max-width: 100%;
}
.hero__pill { margin-bottom: 24px; display: inline-block; max-width: 100%; }
.hero__title {
  font-family: var(--wc-font-display);
  font-weight: 700;
  font-size: var(--wc-fs-hero-m);
  line-height: 1.05;
  letter-spacing: 2.3px;
  color: white;
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.95);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.hero__visual {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
  padding: 24px 0 32px;
  gap: 16px;
}
.hero__bubble {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  z-index: 10;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  background: #FEF6ED;
  border-radius: 18px 18px 18px 4px;
  padding: 14px 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  animation: heroCardFloat 4s 0.4s ease-in-out infinite;
}
.hero__bubble-inner { display: flex; gap: 11px; align-items: flex-start; }
.hero__bubble-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(253,133,49,0.18);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bubble-icon img { width: 17px; height: 17px; }
.hero__bubble p { font: 400 12px/1.55 var(--wc-font-sans); color: #1a1a1a; }
.hero__bubble-tail {
  position: absolute;
  left: 14px; bottom: -8px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #FEF6ED;
}
.hero__docs {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  border: 1px solid rgba(57,80,160,0.09);
  animation: heroCardFloat 4.5s 1.2s ease-in-out infinite;
}
.hero__docs-title {
  font: 600 12px/1 var(--wc-font-sans);
  color: #1a1a1a;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.hero__doc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hero__doc-row:last-child { border-bottom: 0; }
.hero__doc-badge {
  font: 700 9px/1 var(--wc-font-sans);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  flex-shrink: 0;
  color: white;
}
.hero__doc-badge--open { background: #E85D04; }
.hero__doc-badge--paid { background: #2D6A4F; }
.hero__doc-text { flex: 1; min-width: 0; }
.hero__doc-text p:first-child {
  font: 500 11px/1.2 var(--wc-font-sans);
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__doc-text p:last-child {
  font: 400 10px/1 var(--wc-font-sans);
  color: #aaa;
  margin-top: 2px;
}
.hero__doc-chevron { flex-shrink: 0; }
.hero__phone-wrap {
  flex-shrink: 0;
  margin: 0 auto;
  padding: 12px 0;
}
.hero__phone {
  transform: none;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
}
.hero__phone img {
  height: auto;
  max-height: min(420px, 88vw);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

@keyframes heroPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Section headings */
.section-intro { max-width: 720px; margin-bottom: 48px; }
.section-intro--center { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-title {
  font: 600 var(--wc-fs-1-m)/1.2 var(--wc-font-sans);
  letter-spacing: var(--wc-track-1);
  margin-bottom: 16px;
}
.section-lead { font-size: 18px; line-height: 1.45; color: #2a2a2a; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card--blue {
  background: var(--wc-blue);
  border-radius: var(--wc-radius-card);
}
.feature-card--blue h3,
.feature-card--blue p { color: white; }
.feature-card--blue p { opacity: 0.9; }
.feature-card__icon {
  width: 64px; height: 64px;
  background: var(--wc-blue-pale);
  border-radius: var(--wc-radius-halo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-card--blue .feature-card__icon { background: rgba(255,255,255,0.15); }
.feature-card__icon img { width: 28px; height: 28px; }
.feature-card--blue .feature-card__icon img { filter: brightness(0) invert(1); }
.feature-card h3 {
  font: 600 18px/1.25 var(--wc-font-sans);
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.feature-card p { font-size: 15px; line-height: 1.55; color: #2a2a2a; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step-card { padding: 36px 28px; }
.step-card--blue {
  background: var(--wc-blue);
  border-radius: var(--wc-radius-card);
}
.step-card__num {
  font-family: var(--wc-font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--wc-orange);
  margin-bottom: 16px;
}
.step-card h3 {
  font: 600 20px/1.25 var(--wc-font-sans);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-card p { font-size: 16px; line-height: 1.55; color: #2a2a2a; }
.step-card--blue h3 { color: white; }
.step-card--blue p { color: rgba(255,255,255,0.92); }

/* Jobsite split */
.jobsite-split { display: flex; flex-direction: column; }
.jobsite-split__photo { position: relative; overflow: hidden; min-height: 280px; }
.jobsite-split__photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
}
.jobsite-split__content {
  background: var(--wc-cream);
  padding: 48px var(--wc-page-pad-x-mobile);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jobsite-split__title {
  font: 600 32px/1.2 var(--wc-font-sans);
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}
.jobsite-split__lead {
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  margin-bottom: 28px;
  max-width: 460px;
}
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list img { width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0; }
.check-list span { font-size: 16px; line-height: 1.4; }

/* Phone hero */
.phone-hero {
  background: var(--wc-blue);
  position: relative;
  overflow: visible;
}
.phone-hero__inner {
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.phone-hero__title {
  font-family: var(--wc-font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 1.4px;
  max-width: 800px;
  margin: 0 auto 16px;
  color: white;
}
.phone-hero__lead {
  font-size: 18px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.9);
}
.phone-hero__stage {
  position: relative;
  min-height: 360px;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-hero__phones {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  height: auto;
  max-height: min(520px, 78vw);
  width: min(100%, 420px);
  margin: 0 auto;
  z-index: 3;
  object-fit: contain;
  object-position: center;
  display: block;
}
.phone-hero__float {
  position: absolute;
  border-radius: 16px;
  z-index: 4;
  text-align: left;
}
.phone-hero__float--voice {
  left: 4%;
  top: 40px;
  background: white;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  width: min(260px, 42vw);
}
.phone-hero__float--invoice {
  right: 4%;
  top: 120px;
  background: white;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  padding: 14px 16px;
  width: min(240px, 40vw);
}
.phone-hero__float--stats {
  left: 8%;
  bottom: 40px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 14px 16px;
  width: min(240px, 40vw);
}

/* Feature tabs */
.feature-tabs__header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.feature-tabs__title {
  font-family: var(--wc-font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 1.4px;
}
.tab-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab-btn {
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: white;
  color: var(--wc-text);
  font: 600 14px/1 var(--wc-font-sans);
  letter-spacing: 0.4px;
  box-shadow: var(--wc-shadow-card);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.tab-btn.is-active {
  background: var(--wc-blue);
  color: white;
  box-shadow: none;
}
.tab-panel {
  background: white;
  border-radius: var(--wc-radius-panel);
  box-shadow: var(--wc-shadow-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 360px;
}
.tab-panel__title {
  font-family: var(--wc-font-sans);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.tab-panel__body {
  font-size: 17px;
  line-height: 1.5;
  color: #2a2a2a;
  margin-bottom: 24px;
}
.tab-panel__bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tab-panel__bullets li { display: flex; gap: 12px; align-items: flex-start; }
.tab-panel__bullets img { width: 20px; height: 20px; margin-top: 2px; }
.tab-panel__bullets span { font-size: 15px; line-height: 1.4; }
.tab-panel__visual {
  background: var(--wc-blue-pale);
  border-radius: var(--wc-radius-panel);
  height: 280px;
  position: relative;
  overflow: hidden;
}
.tab-panel__visual img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* CTA banner */
#warteliste { scroll-margin-top: 88px; }

.cta-banner {
  background: var(--wc-gradient-hero);
  border-radius: var(--wc-radius-panel);
  padding: 48px 24px;
  position: relative;
  overflow: visible;
  text-align: center;
  color: white;
}
.cta-banner__wrench {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.06;
  pointer-events: none;
}
.cta-banner__wrench--tl { left: -120px; top: -120px; }
.cta-banner__wrench--br { right: -120px; bottom: -120px; transform: rotate(45deg); }
.cta-banner__title {
  font-family: var(--wc-font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: 2px;
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative;
}
.cta-banner__subtitle {
  font-size: 20px;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 12px;
  font-weight: 600;
  position: relative;
}
.cta-banner__note {
  font-size: 17px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.88;
  position: relative;
}
.cta-banner__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 10px;
  background: white;
  border: 1px solid var(--wc-input-border);
  border-radius: var(--wc-radius-panel);
  box-shadow: var(--wc-shadow-card);
  position: relative;
}
.cta-banner__form input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  font: 400 16px/1 var(--wc-font-input);
  color: var(--wc-input-text);
  background: transparent;
  border-radius: var(--wc-radius-tile);
}
.cta-banner__form .btn-primary {
  width: 100%;
  justify-content: center;
  flex-shrink: 0;
}
.cta-banner__perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.cta-banner__perk img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.cta-banner__perk--plain { padding-left: 0; }

.waitlist-section__pill {
  max-width: 100%;
  text-align: left;
  line-height: 1.35;
}

/* Timeline */
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.timeline-section__title {
  font-family: var(--wc-font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: rgba(57,80,160,0.18);
}
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__num {
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--wc-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 13px/1 var(--wc-font-sans);
}
.timeline__num--orange { background: var(--wc-orange); }
.timeline__label {
  font: 600 12px/1 var(--wc-font-sans);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--wc-orange);
  margin-bottom: 8px;
}
.timeline__item h3 {
  font: 600 22px/1.2 var(--wc-font-sans);
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.timeline__item p { font-size: 16px; line-height: 1.5; color: #2a2a2a; }

/* Team */
.team-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
.team-section__title {
  font: 600 32px/1.2 var(--wc-font-sans);
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}
.team-section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 16px;
  max-width: 480px;
}
.team-section__link {
  font: 600 15px/1 var(--wc-font-sans);
  color: var(--wc-blue);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.team-section__link img {
  width: 18px;
  height: 18px;
  filter: invert(23%) sepia(77%) saturate(1500%) hue-rotate(204deg) brightness(90%);
}
.team-section__photo {
  width: 100%;
  border-radius: var(--wc-radius-photo);
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Waitlist */
.waitlist-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
.waitlist-section > div {
  width: 100%;
  min-width: 0;
}
.waitlist-form.card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.waitlist-form .btn-primary.lg {
  width: 100%;
  justify-content: center;
}
.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.waitlist-form label > span {
  font: 600 13px/1 var(--wc-font-sans);
  letter-spacing: 0.4px;
}
.waitlist-form__legal {
  font-size: 12px;
  line-height: 1.5;
  color: var(--wc-text-helper-light);
}
.waitlist-form__legal a { color: var(--wc-blue-link); text-decoration: underline; }
.form-success {
  display: none;
  background: var(--wc-blue);
  color: white;
  border-radius: var(--wc-radius-panel);
  padding: 40px 32px;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  font-family: var(--wc-font-display);
  font-size: 56px;
  color: var(--wc-orange);
  margin-bottom: 16px;
  line-height: 1;
}
.form-success h3 {
  font: 600 26px/1.2 var(--wc-font-sans);
  margin-bottom: 12px;
}
.form-success__lead {
  font-size: 17px;
  opacity: 0.92;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 36ch;
  margin-inline: auto;
}
.form-success__next {
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 20px;
}
.form-success__next-title {
  font: 600 12px/1 var(--wc-font-sans);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
}
.form-success__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 1.25rem;
}
.form-success__steps li {
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.92;
  padding-left: 4px;
}
.form-success__steps li::marker {
  color: var(--wc-orange);
  font-weight: 700;
}
.form-success__footer {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.88;
}
.form-success__footer a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-success p { font-size: 17px; opacity: 0.9; line-height: 1.5; }

/* FAQ */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq-section__sidebar { position: static; }
.faq-section__title {
  font: 600 32px/1.15 var(--wc-font-sans);
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.faq-section__lead {
  font-size: 17px;
  line-height: 1.5;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.faq-section__link {
  font: 600 14px/1 var(--wc-font-sans);
  color: var(--wc-blue-link);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.faq-section__link img {
  width: 16px;
  height: 16px;
  filter: invert(20%) sepia(89%) saturate(2167%) hue-rotate(202deg) brightness(96%);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { padding: 20px 24px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font: 600 17px/1.3 var(--wc-font-sans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; width: 24px; height: 24px; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0,0,0,0.7);
}
.faq-item a { color: var(--wc-blue-link); text-decoration: underline; }

/* Footer */
.site-footer {
  color: white;
  position: relative;
  overflow: hidden;
}
.site-footer__wrench {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  opacity: 0.06;
  pointer-events: none;
}
.site-footer__inner {
  padding: 64px 0 32px;
  position: relative;
}
.site-footer .container {
  padding-left: 48px;
  padding-right: 48px;
}
.site-footer__wordmark-bg {
  overflow: hidden;
  line-height: 0.85;
  padding: 0 48px 24px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.site-footer__logo { height: 30px; width: 32px; }
.site-footer__wordmark {
  font-family: var(--wc-font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.05em;
}
.site-footer__tagline {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 380px;
  margin-bottom: 24px;
}
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease;
}
.site-footer__social a:hover { transform: scale(1.08); }
.site-footer__social a--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 16px rgba(214,36,159,0.45);
}
.site-footer__social a--linkedin {
  background: #0A66C2;
  box-shadow: 0 4px 16px rgba(10,102,194,0.5);
}
.site-footer__social img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.site-footer__col-title {
  font: 600 12px/1 var(--wc-font-sans);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col a { font-size: 15px; opacity: 0.92; }
.site-footer__col a:hover { opacity: 1; text-decoration: underline; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  opacity: 0.7;
}
.site-footer__wordmark-bg p {
  font-family: var(--wc-font-display);
  font-weight: 700;
  font-size: clamp(48px, 18vw, 200px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.07);
  margin: 0;
  text-align: center;
}

/* Narrow + mobile: stack hero cards so bubbles are not clipped */
@media (max-width: 1279px) {
  .hero .container {
    padding-left: 48px;
    padding-right: 48px;
  }
  .hero__copy {
    padding-inline: 4px;
  }
  .hero__bubble,
  .hero__docs {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-inline: auto;
  }
  .hero__bubble { order: 1; }
  .hero__phone-wrap {
    order: 2;
    animation: none;
    padding: 8px 0 16px;
  }
  .hero__docs { order: 3; }
  .hero__visual {
    min-height: auto;
    padding: 8px 12px;
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .hero__phone { transform: none; }
  .hero__phone img {
    height: auto;
    max-height: min(420px, 88vw);
  }
  .site-footer__wordmark-bg p {
    font-size: clamp(56px, 20vw, 120px);
  }
  .phone-hero__float { display: none; }
  .phone-hero__stage {
    min-height: 320px;
    padding: 8px 0 16px;
  }
  .phone-hero__phones {
    max-height: min(460px, 82vw);
  }
  .cta-banner {
    padding: 48px 20px;
  }
}

/* Mobile refinements */
@media (max-width: 639px) {
  .site-nav__inner {
    padding: 0 16px;
    gap: 10px;
  }
  .site-nav__wordmark { font-size: 17px; }
  .site-nav__cta.btn-primary.lg {
    height: auto;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
  }
  .site-nav__cta .btn__icon { width: 16px; height: 16px; flex-basis: 16px; }
  .site-nav__cta-label--full { display: none; }
  .site-nav__cta-label--short { display: inline; }
  .hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero__copy {
    padding-inline: 0;
  }
  .hero__visual {
    padding-inline: 12px;
  }
  .hero__pill { font-size: 10px; padding: 6px 12px; letter-spacing: 1px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero__actions .hero__cta {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    height: auto;
    min-height: 52px;
    padding: 12px 18px;
    line-height: 1.3;
  }
  .hero__actions .hero__cta .btn__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .hero__phone img { height: auto; max-height: min(380px, 84vw); }
  .section-y { padding-top: 72px; padding-bottom: 72px; }
  .cta-banner { padding: 40px 16px; }
  .cta-banner__title { font-size: 34px; }
  .cta-banner__perks { flex-direction: column; align-items: center; gap: 12px; }
  .waitlist-form.card { padding: 24px 20px; }
  .form-success { padding: 32px 20px; text-align: left; }
  .form-success__icon,
  .form-success h3 { text-align: center; }
  .form-success__lead { max-width: none; text-align: center; }
  .form-success__footer { text-align: center; }
  .waitlist-form .btn-primary.lg {
    white-space: normal;
    height: auto;
    min-height: 56px;
    padding: 14px 20px;
  }
}

@media (max-width: 399px) {
  .site-nav__wordmark { display: none; }
  .site-nav__cta.btn-primary.lg {
    padding: 10px 12px;
    font-size: 11px;
  }
}

/* Tablet */
@media (min-width: 640px) {
  .site-nav__inner { padding: 0 24px; }
  .hero__title { font-size: var(--wc-fs-hero-t); letter-spacing: 2.7px; }
  .hero__lead { font-size: 22px; }
  .section-title { font-size: var(--wc-fs-1-d); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .tab-panel { padding: 40px 32px; }
  .cta-banner { padding: 64px 40px; }
  .cta-banner__title { font-size: 56px; }
  .phone-hero__title { font-size: 42px; }
  .phone-hero__stage { height: 560px; }
  .jobsite-split__title { font-size: 36px; }
  .feature-tabs__title { font-size: 40px; }
}

@media (min-width: 960px) {
  .cta-banner__form {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 6px 6px 6px 12px;
    border-radius: 999px;
    max-width: 720px;
  }
  .cta-banner__form input {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 16px;
    border-radius: 999px;
  }
  .cta-banner__form .btn-primary {
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--wc-page-pad-x-desktop);
    padding-right: var(--wc-page-pad-x-desktop);
  }
  .site-nav__inner { padding: 0 48px; }
  .site-nav__wordmark { font-size: 26px; }
  .hero__wrench {
    left: 113px;
    top: -175px;
    width: 1615px;
    height: 1615px;
    transform: none;
  }
  .hero__inner { padding-top: 80px; padding-bottom: 96px; }
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero__title { font-size: var(--wc-fs-hero-d); letter-spacing: var(--wc-track-hero); }
  .hero__lead { font-size: 26px; letter-spacing: 1.2px; }
  .hero__visual {
    min-height: 580px;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
    overflow: visible;
    padding: 32px 0 40px;
    gap: 0;
  }
  .hero__bubble {
    position: absolute;
    left: auto;
    right: 260px;
    top: 16px;
    max-width: 220px;
    width: auto;
    animation: heroCardFloat 4s 0.4s ease-in-out infinite;
  }
  .hero__docs {
    position: absolute;
    left: auto;
    right: 206px;
    bottom: 32px;
    width: 252px;
    animation: heroCardFloat 4.5s 1.2s ease-in-out infinite;
  }
  .hero__phone-wrap {
    margin-left: auto;
    margin-right: 0;
    order: unset;
    animation: heroPhoneFloat 6s ease-in-out infinite;
    padding: 0;
  }
  .hero__phone {
    transform: perspective(1400px) rotateY(-13deg) rotateX(2deg);
    filter: drop-shadow(0 36px 60px rgba(0,0,0,0.48));
  }
  .hero__phone img { height: 548px; max-height: none; object-fit: cover; }
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .section-intro { margin-bottom: 64px; }
  .section-intro--center { margin-bottom: 64px; }
  .section-lead { font-size: 20px; }
  .feature-card { padding: 32px 28px; }
  .feature-card h3 { font-size: 20px; }
  .step-card { padding: 44px 36px; }
  .step-card__num { font-size: 72px; margin-bottom: 20px; }
  .step-card h3 { font-size: 22px; }
  .jobsite-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
  .jobsite-split__photo { min-height: 540px; }
  .jobsite-split__photo img { min-height: 540px; }
  .jobsite-split__content { padding: 80px 80px 80px 64px; }
  .jobsite-split__title { font-size: 42px; letter-spacing: 1.8px; margin-bottom: 20px; }
  .jobsite-split__lead { font-size: 18px; margin-bottom: 32px; }
  .phone-hero__inner { padding: 100px 0; }
  .phone-hero__title { font-size: 56px; letter-spacing: 2px; margin-bottom: 20px; }
  .phone-hero__lead { font-size: 20px; margin-bottom: 64px; }
  .phone-hero__stage {
    height: 640px;
    min-height: 640px;
    padding: 0;
    display: block;
  }
  .phone-hero__phones {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-height: none;
    max-width: none;
    margin: 0;
  }
  .phone-hero__float { display: block; }
  .phone-hero__float--voice { left: 8%; top: 80px; width: 280px; }
  .phone-hero__float--invoice { right: 8%; top: 180px; width: 260px; }
  .phone-hero__float--stats { left: 12%; bottom: 80px; width: 260px; }
  .feature-tabs__header { margin-bottom: 56px; }
  .feature-tabs__title { font-size: 48px; letter-spacing: 1.8px; }
  .tab-panel {
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 420px;
  }
  .tab-panel__title { font-size: 32px; letter-spacing: 1.3px; margin-bottom: 20px; }
  .tab-panel__body { font-size: 18px; margin-bottom: 28px; }
  .tab-panel__visual { height: 360px; }
  .cta-banner { padding: 80px 56px; }
  .cta-banner__title { font-size: 72px; letter-spacing: 3px; margin-bottom: 24px; }
  .cta-banner__subtitle { font-size: 22px; }
  .cta-banner__note { font-size: 18px; margin-bottom: 40px; }
  .timeline-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
  }
  .timeline-section__sidebar { position: sticky; top: 100px; align-self: start; }
  .timeline-section__title { font-size: 42px; letter-spacing: 1.6px; margin-bottom: 20px; }
  .timeline-section__lead { font-size: 18px; }
  .timeline__item { padding-bottom: 56px; }
  .timeline__item h3 { font-size: 24px; letter-spacing: 1px; }
  .team-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .team-section__title { font-size: 42px; letter-spacing: 1.8px; margin-bottom: 20px; }
  .team-section__lead { font-size: 18px; margin-bottom: 20px; }
  .waitlist-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .waitlist-form.card { padding: 40px; }
  .faq-section {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
  }
  .faq-section__sidebar { position: sticky; top: 100px; }
  .faq-section__title { font-size: 42px; letter-spacing: 1.6px; margin-bottom: 20px; }
  .faq-item { padding: 24px 28px; }
  .faq-item summary { font-size: 18px; letter-spacing: 0.4px; gap: 24px; }
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 64px;
  }
  .site-footer .container {
    padding-left: var(--wc-page-pad-x-desktop);
    padding-right: var(--wc-page-pad-x-desktop);
  }
  .site-footer__wordmark-bg {
    padding-left: var(--wc-page-pad-x-desktop);
    padding-right: var(--wc-page-pad-x-desktop);
  }
  .site-footer__inner { padding: 80px 0 40px; }
  .site-footer__bottom { padding-top: 32px; }
}
