:root {
  --bg: #f6f7f9;
  --white: #ffffff;
  --ink: #17191d;
  --muted: #66707c;
  --line: #dfe4ea;
  --soft: #eef2f6;
  --orange: #ff6012;
  --orange-dark: #da4b06;
  --yellow: #f9b800;
  --green: #1d8f62;
  --shadow: 0 14px 34px rgba(23, 25, 29, 0.08);
  --container: 1160px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand img {
  width: 58px;
  height: 68px;
  object-fit: contain;
}

.brand b,
.brand small {
  display: block;
}

.brand span {
  min-width: 0;
}

.brand b {
  font-size: 17px;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.header-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-contact a:hover {
  color: var(--orange-dark);
}

.header-phone-mobile,
.header-menu-toggle,
.mobile-menu {
  display: none;
}

.header-phone-mobile {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.header-menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.header-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-cta,
.btn,
.task-card button,
.inline-cta a,
.submit-link,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 96, 18, 0.18);
}

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  min-height: calc(100vh - 82px);
  max-height: 800px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 42px;
  align-items: center;
  padding: 56px 0;
}

.eyebrow,
.section-head p,
.section-kicker,
.task-card span,
.budget-grid strong {
  margin: 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.proof-grid h2,
.outcome-layout h2,
.form-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.06;
}

.hero h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: 58px;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #4e5966;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 96, 18, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-wide {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: #46505c;
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-slider {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 43 / 52;
  padding: 10px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(249, 184, 0, 0.22), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f2f5f8 100%);
  box-shadow: 0 26px 56px rgba(23, 25, 29, 0.12);
  overflow: hidden;
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 10px;
  margin: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(23, 25, 29, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 46px rgba(23, 25, 29, 0.14);
  object-fit: cover;
  object-position: center;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  border: 1px solid rgba(23, 25, 29, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(23, 25, 29, 0.14);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-slider-arrow:hover {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
}

.hero-slider-arrow-prev {
  left: 20px;
}

.hero-slider-arrow-next {
  right: 20px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(23, 25, 29, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 25, 29, 0.16);
}

.hero-slider-dots button.is-active {
  background: var(--orange);
}

.section {
  padding: 70px 0;
}

.compact-section {
  padding: 26px 0;
  background: var(--ink);
  color: #fff;
}

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

.compact-grid article {
  padding: 8px 0;
  min-height: 88px;
  display: grid;
  align-content: start;
}

.compact-grid b {
  display: block;
  font-size: 18px;
}

.compact-grid span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.proof-grid h2,
.outcome-layout h2,
.form-copy h2 {
  margin-top: 8px;
  font-size: 42px;
}

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

.task-card,
.budget-grid article,
.steps article,
.outcome-card,
.brief-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.task-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 270px;
  padding: 24px;
}

.task-card h3,
.budget-grid h3 {
  margin: 10px 0 8px;
  font-size: 25px;
  line-height: 1.15;
}

.task-card p,
.budget-grid p,
.steps p,
.proof-grid li,
.outcome-card li,
.form-copy p {
  margin: 0;
  color: var(--muted);
}

.task-card p {
  min-height: 72px;
}

.task-card button {
  align-self: end;
  margin-top: auto;
  border: 0;
  padding: 0 16px;
  color: var(--ink);
  background: #fff1e9;
}

.task-card button:hover {
  background: #ffe1d1;
}

.section-muted {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.budget-grid article {
  padding: 24px;
}

.budget-grid strong {
  display: inline-block;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.inline-cta span {
  font-weight: 800;
}

.inline-cta a {
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--orange);
}

.work-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px;
}

.steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--orange);
  font-weight: 800;
}

.steps b {
  font-size: 20px;
}

.trust-section {
  background: var(--white);
}

.trust-layout {
  display: grid;
  gap: 24px;
}

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

.trust-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 34px;
  line-height: 1;
}

.trust-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.trust-logos {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-logos img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.proof-section {
  padding: 62px 0;
  color: #fff;
  background: #202327;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.proof-grid h2 {
  color: #fff;
}

.proof-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-grid li {
  position: relative;
  padding: 18px 0 18px 28px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 18px;
}

.proof-grid li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

.outcome-section {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.outcome-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.outcome-card {
  padding: 26px;
}

.outcome-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-card li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}

.outcome-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-weight: 800;
}

.form-section {
  background: var(--white);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.brief-card {
  padding: 24px;
}

.brief-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
}

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

.brief-card input,
.brief-card select,
.brief-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
}

.brief-card input,
.brief-card select {
  min-height: 52px;
  padding: 0 14px;
}

.brief-card textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.brief-card input:focus,
.brief-card select:focus,
.brief-card textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 96, 18, 0.14);
}

.form-feedback {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.submit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.submit-actions.is-hidden {
  display: none;
}

.submit-link {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  padding: 0 18px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 96, 18, 0.28);
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .header-menu-toggle {
    display: inline-flex;
  }

  .header-controls {
    gap: 10px;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a:not(.mobile-menu-cta) {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero-layout,
  .work-layout,
  .proof-grid,
  .outcome-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: 0;
    max-height: none;
    gap: 24px;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-visual {
    min-height: 0;
    justify-content: flex-start;
  }

  .hero-slider {
    width: min(100%, 460px);
  }

  .compact-grid,
  .task-grid,
  .budget-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-logos {
    padding: 14px;
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    position: static;
  }

  .header-row {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
    gap: 8px;
  }

  .brand img {
    flex: 0 0 auto;
    width: 42px;
    height: 50px;
  }

  .brand b {
    display: -webkit-box;
    max-width: calc(100vw - 132px);
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .brand small {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .header-controls {
    margin-left: 0;
    gap: 8px;
  }

  .header-phone-mobile {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .inline-cta,
  .submit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .inline-cta a,
  .submit-link {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .section-head h2,
  .proof-grid h2,
  .outcome-layout h2,
  .form-copy h2 {
    font-size: 30px;
  }

  .hero-slider {
    width: 100%;
    max-width: 420px;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .hero-slider-arrow-prev {
    left: 16px;
  }

  .hero-slider-arrow-next {
    right: 16px;
  }

  .trust-logos img {
    border-radius: 12px;
  }

  .brief-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sticky-cta {
    display: none;
  }
}
