/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #000000;
  --white:      #ffffff;
  --grey-bg:    #f5f4f2;
  --stroke:     #e9e9e9;
  --grey-text:  #808080;

  /* Brand palette */
  --sage:       #5B7769;
  --orange:     #D06223;
  --brown:      #83562F;
  --terra:      #c76e4e;
  --forest:     #173e2c;
  --peach:      #d5b59d;
  --teal:       #92ada4;
  --tan:        #b5885e;

  --font: 'Space Grotesk', sans-serif;
  --radius: 4px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  padding: 0 40px;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-text);
}

/* ── Gradient text animation ──────────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background: linear-gradient(270deg, var(--sage), var(--orange), var(--brown), var(--terra), var(--sage));
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 10s ease infinite;
}

/* ── NAV ──────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--stroke);
}

.nav-left {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-text);
  border-left: 1px solid var(--stroke);
  padding-left: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition), background var(--transition);
  border: 1px solid transparent;
}

.btn:hover { opacity: 0.82; }

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--stroke);
}

.btn-secondary:hover {
  border-color: var(--black);
  opacity: 1;
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
}

.hero-inner {
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 28px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--grey-text);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTION SHARED ───────────────────────────────────────────────── */
.section {
  padding: 80px 40px;
  border-top: 1px solid var(--stroke);
}

.section-grey { background: var(--grey-bg); }
.section-black { background: var(--black); color: var(--white); }

.section-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-head { padding-top: 4px; }

.section-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-top: 16px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ── MULTIPLIER BAR ──────────────────────────────────────────────── */
.multiplier-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 40px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: var(--white);
  flex-wrap: wrap;
}

.multiplier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}

.multiplier-num {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}

.multiplier-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-text);
  letter-spacing: 0.5px;
}

.multiplier-divider {
  width: 1px;
  height: 48px;
  background: var(--stroke);
}

/* ── COMPARISON LIST ──────────────────────────────────────────────── */
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comparison-item {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--stroke);
}

.comparison-item:first-child { border-top: 1px solid var(--stroke); }

.comparison-before,
.comparison-after {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-text);
}

.after-label { color: var(--sage); }

.comp-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.comparison-after .comp-text {
  font-weight: 500;
  color: var(--forest);
}

.comparison-arrow {
  font-size: 18px;
  color: var(--orange);
  font-weight: 300;
  text-align: center;
}

/* ── 01 WHAT WE AUTOMATE — Cards ─────────────────────────────────── */
.team-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-text);
  margin-bottom: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.team-card {
  padding: 28px 20px;
  border-radius: 6px;
  color: var(--white);
}

.team-card-num {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 12px;
}

.team-card-icon {
  font-size: 22px;
  margin-bottom: 14px;
  opacity: 0.75;
}

.team-card-role {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.team-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  opacity: 0.82;
}

.card-1 { background: var(--tan); }
.card-2 { background: var(--sage); }
.card-3 { background: var(--terra); }
.card-4 { background: var(--forest); }
.card-5 { background: var(--peach); color: var(--black); }
.card-6 { background: var(--teal); }

/* ── 02 WHAT WE DO — Services ────────────────────────────────────── */
.services-list { margin-bottom: 36px; }

.service-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  cursor: default;
  transition: border-color var(--transition);
}

.service-item:first-child { border-top: 1px solid var(--stroke); }
.service-item:hover { border-bottom-color: var(--orange); }

.service-item span { color: var(--orange); }

.service-num {
  font-size: 12px;
  font-weight: 300;
  color: var(--grey-text);
  min-width: 24px;
}

/* ── 03 WHAT TO EXPECT — Steps ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--stroke);
}

.step:first-child { border-top: 1px solid var(--stroke); }

.step-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  padding-top: 3px;
}

.step-body {}

.step-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.65;
}

/* Email form */
.email-form {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  max-width: 500px;
}

.email-form input {
  flex: 1;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.email-form input:focus { border-color: var(--black); }

.email-form input::placeholder { color: var(--grey-text); }

/* ── DIY ──────────────────────────────────────────────────────────── */
.diy-section {
  padding: 80px 40px;
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.diy-label {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.diy-headline {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 12px;
}

.diy-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 32px;
}

.diy-ctas { display: flex; gap: 12px; justify-content: center; }

/* ── 04 READY ─────────────────────────────────────────────────────── */
.ready-section {
  padding: 100px 40px;
  border-top: 1px solid var(--stroke);
  background: var(--grey-bg);
  text-align: center;
}

.ready-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 28px;
}

.ready-h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin: 0 auto 16px;
}

.ready-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--grey-text);
  margin-bottom: 40px;
}

.ready-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 300;
}

.footer-left { display: flex; gap: 24px; align-items: center; }
.footer-right { display: flex; gap: 24px; align-items: center; }

.footer-divider {
  color: #444;
  user-select: none;
}

footer a:hover { opacity: 0.65; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 36px; }
  .ready-h1 { font-size: 30px; }
}

@media (max-width: 600px) {
  nav, .section, .hero, .diy-section, .ready-section { padding-left: 20px; padding-right: 20px; }
  footer { padding: 0 20px; flex-direction: column; height: auto; padding: 24px 20px; gap: 12px; text-align: center; }
  .footer-left, .footer-right { flex-wrap: wrap; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .email-form { flex-direction: column; }
  .diy-label { font-size: 36px; }
  .hero-ctas, .ready-ctas, .diy-ctas { flex-direction: column; align-items: center; }
  .nav-tagline { display: none; }
}
