:root {
  --ink: #17212b;
  --muted: #66717b;
  --accent: #ff5d52;
  --line: #e8eaec;
  --soft: #f1f2f3;
  --font: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: var(--font); }
a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

header {
  width: min(1120px, calc(100% - 40px));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 6px;
  font-size: 14px;
}
header > a:last-child { padding-bottom: 3px; border-bottom: 1px solid var(--ink); text-decoration: none; }
.brand { font-size: 20px; font-weight: 800; letter-spacing: -0.07em; }
.brand span { color: var(--accent); }

.hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 72px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 93, 82, 0.13), transparent 30%),
    linear-gradient(135deg, #f7f7f7 0%, #eef3f2 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 93, 82, 0.1);
  border-radius: 50%;
}
.heroPhoto {
  position: relative;
  z-index: 1;
  width: 350px;
  height: 350px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 67% 35%;
  border: 9px solid #fff;
  outline: 3px solid var(--accent);
  box-shadow: 0 18px 48px rgba(23, 33, 43, 0.16);
}
.hero > div { position: relative; z-index: 1; width: 550px; }
.eyebrow {
  margin: 0 0 13px !important;
  color: var(--accent) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
}
h1 {
  max-width: 540px;
  margin: 0 0 18px;
  font-family: "Arial Black", var(--font);
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
h1 span { color: var(--accent); }
.hero p {
  max-width: 530px;
  margin: 0 0 24px;
  color: #56616c;
  font-size: 18px;
  line-height: 1.55;
}
.button, .smallButton {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.button b { font-size: 16px; }
.button { padding: 12px 24px; font-size: 13px; }
.smallButton { padding: 10px 18px; font-size: 12px; }
.button:hover, .smallButton:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(255, 93, 82, 0.22); }

.proof, .story, .testimonials, .work {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  text-align: center;
}
h2 { margin: 0 0 40px; font-size: 32px; font-weight: 800; letter-spacing: -0.035em; }
.sectionLead { max-width: 620px; margin: -25px auto 36px; color: var(--muted); font-size: 16px; line-height: 1.6; }

.proofGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proofGrid article {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(23, 33, 43, 0.06);
}
.proofGrid article:nth-child(1) { background: #fff8d6; }
.proofGrid article:nth-child(2) { background: #eaf8f4; }
.proofGrid article:nth-child(3) { background: #f1efff; }
.proofGrid article:nth-child(4) { background: #fff0ec; }
.proofGrid strong { color: var(--accent); font-size: 32px; }
.proofGrid span { margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.4; }

.story { padding-top: 52px; }
.storyGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.storyGrid article { min-height: 230px; padding: 28px 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 5px 18px rgba(23, 33, 43, 0.05); }
.storyGrid article > span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.storyGrid h3 { margin-top: 43px; font-size: 21px; letter-spacing: -0.02em; }
.storyGrid p { margin: 11px 0 0; color: var(--muted); font-size: 14px; line-height: 1.58; }

.testimonials { padding-top: 38px; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quoteCard {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px 25px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.11);
  transform: rotate(-1deg);
}
.quoteCard::before {
  content: "“";
  position: absolute;
  top: -22px;
  right: 14px;
  color: rgba(23, 33, 43, 0.08);
  font-family: Georgia, serif;
  font-size: 116px;
  line-height: 1;
}
.quoteCard:nth-child(2) { transform: rotate(1deg) translateY(10px); }
.quoteCard:nth-child(3) { transform: rotate(-0.5deg); }
.quoteElon { background: #fff2a8; }
.quoteNas { background: #dff7ef; }
.quoteXm { background: #e8e4ff; }
.quotes > article > p { position: relative; z-index: 1; margin: 0; color: #4f5963; font-size: 15px; line-height: 1.6; }
.quotePerson { display: flex; align-items: center; gap: 11px; margin-top: 28px; }
.quotePerson img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quotePerson strong { font-size: 14px; }
.quotePerson small { display: block; margin-top: 4px; color: #747e88; font-size: 11px; font-weight: 400; }
.quotePerson.logoPerson img { border: 1px solid var(--line); border-radius: 7px; background: #fff; object-fit: contain; padding: 5px; }

.work { padding-top: 56px; }
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offers article { min-height: 330px; padding: 36px 27px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(23, 33, 43, 0.07); transition: transform 0.18s, box-shadow 0.18s; }
.offers article:hover { transform: translateY(-5px); box-shadow: 0 15px 34px rgba(23, 33, 43, 0.11); }
.icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #edf8f6; font-size: 30px; }
.offers article:nth-child(2) .icon { background: #fff2d2; }
.offers article:nth-child(3) .icon { background: #eeeaff; }
h3 { margin: 0 0 12px; font-size: 18px; }
.offers p { min-height: 86px; margin: 0 auto 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.contact { padding: 78px 20px; background: linear-gradient(135deg, #ff655a, #ff8f77); text-align: center; }
.contact > div { width: min(720px, 100%); margin: auto; padding: 48px; border-radius: 24px; background: #fff; box-shadow: 0 18px 45px rgba(88, 25, 18, 0.18); }
.contactEyebrow { margin: 0 0 10px !important; color: var(--accent) !important; font-size: 11px !important; font-weight: 800; letter-spacing: 0.12em; }
.contact h2 { margin-bottom: 12px; }
.contact > div > p { margin: 0 auto 26px; color: var(--muted); font-size: 14px; }
.contactForm { display: grid; gap: 15px; padding: 0; text-align: left; }
.fieldRow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contactForm > label, .fieldRow label { display: block; margin: 0; color: #555; font-size: 12px; }
.contactForm label > span, .contactForm legend { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 650; }
.contactForm input, .contactForm textarea { width: 100%; padding: 12px; border: 1px solid #d8dbde; border-radius: 9px; background: #fff; font-size: 16px; resize: vertical; }
.contactForm input:focus, .contactForm textarea:focus { outline: 2px solid rgba(255, 93, 82, 0.28); border-color: var(--accent); }
.contactForm fieldset { margin: 0; padding: 0; border: 0; }
.choiceGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choiceGrid input { position: absolute; opacity: 0; pointer-events: none; }
.choiceGrid label span { display: grid; place-items: center; min-height: 42px; margin: 0; padding: 8px; border: 1px solid #d8dbde; border-radius: 9px; color: var(--muted); text-align: center; cursor: pointer; }
.choiceGrid input:checked + span { border-color: var(--accent); background: var(--accent); color: #fff; }
.contactForm button { justify-self: center; padding: 13px 27px; border: 0; border-radius: 999px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; }
.contactForm button b { display: none; }
.contactForm button:disabled { cursor: wait; opacity: 0.65; }
.formFineprint { margin: -2px 0 0; color: #88919a; font-size: 11px; line-height: 1.45; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.formError { margin: 0; padding: 10px; border: 1px solid #f2b0aa; background: #fff3f2; color: #8a2c25; font-size: 12px; text-align: center; }
.formSuccess { min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.successBurst { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; background: #dff7ef; color: #176d56; font-size: 24px; }
.formSuccess .eyebrow { margin-bottom: 8px !important; }
.formSuccess h3 { margin-bottom: 10px; font-size: 30px; }
.formSuccess > p:not(.eyebrow) { max-width: 450px; margin: 0 0 12px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.formSuccess small { margin-bottom: 18px; color: #87909a; font-size: 11px; }

footer { padding: 24px 30px; background: #111; color: #fff; font-size: 11px; }

@media (max-width: 760px) {
  .hero { flex-direction: column; gap: 30px; text-align: center; }
  .hero > div { width: min(500px, 100%); }
  .heroPhoto { width: 260px; height: 260px; }
  .proofGrid { grid-template-columns: repeat(2, 1fr); }
  .storyGrid, .offers, .quotes { grid-template-columns: 1fr; }
  .storyGrid article { min-height: auto; text-align: center; }
  .storyGrid h3 { margin-top: 25px; }
  .quoteCard { min-height: 225px; transform: none !important; }
  .offers article { min-height: auto; }
  .offers p { min-height: auto; max-width: 360px; }
}

@media (max-width: 480px) {
  header { padding-inline: 18px; }
  .hero { padding: 46px 22px; }
  h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .proof, .story, .testimonials, .work { width: calc(100% - 28px); padding-block: 58px; }
  .proofGrid { grid-template-columns: 1fr; }
  .fieldRow, .choiceGrid { grid-template-columns: 1fr; }
  .contact > div { padding: 36px 20px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .smallButton { transition: none; }
}
