/* ===== Reset & Tokens ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }

:root {
  --orange: #F58220;
  --orange-soft: #FFF1E2;
  --orange-deep: #D96A0E;
  --navy: #1B1842;
  --navy-deep: #100E2A;
  --ink: #14131A;
  --ink-2: #2A2934;
  --grey-9: #6B6A75;
  --grey-7: #9A99A4;
  --grey-3: #E6E5EC;
  --grey-1: #F5F5F8;
  --cream: #FBF8F3;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 16px rgba(20, 19, 26, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 19, 26, 0.10);
  --shadow-lg: 0 30px 80px rgba(20, 19, 26, 0.18);

  --t: cubic-bezier(.22,.61,.36,1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'Times New Roman', serif;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ===== Typography ===== */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.h2 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
}
.h2--light { color: var(--white); }
.h2--light em { color: var(--orange); }

.sub-h {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 28px 0 12px;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
  max-width: 56ch;
}
.lede--light { color: rgba(255,255,255,0.85); }

.muted { color: var(--grey-9); margin: 0 0 14px; max-width: 60ch; }
.small { font-size: 0.85rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--orange);
}
.eyebrow--light { color: rgba(255,255,255,0.9); }
.eyebrow--light::before { background: rgba(255,255,255,0.6); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform .25s var(--t), background .25s var(--t), color .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
  white-space: nowrap;
}
.btn--lg { padding: 15px 26px; font-size: 0.98rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.28);
}
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245, 130, 32, 0.34); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--grey-3);
}
.btn--ghost:hover { background: var(--grey-1); border-color: var(--grey-7); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover { background: var(--cream); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--t), background .3s var(--t), box-shadow .3s var(--t);
}
.nav.is-scrolled {
  border-color: var(--grey-3);
  box-shadow: 0 6px 20px rgba(20,19,26,0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__lockup {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 540px) {
  .brand__lockup { height: 36px; }
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s var(--t);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; gap: 10px; align-items: center; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grey-1);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--t), opacity .3s var(--t);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile {
  display: flex;
  flex-direction: column;
  padding: 12px 24px 24px;
  gap: 4px;
  background: var(--white);
  border-top: 1px solid var(--grey-3);
}
.mobile[hidden] { display: none; }
@media (min-width: 1025px) {
  .mobile { display: none !important; }
}
.mobile a {
  padding: 14px 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--grey-3);
}
.mobile a:last-child { border-bottom: 0; }
.mobile__cta { margin-top: 12px; padding: 14px 20px; }

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 30% 60%, rgba(20,19,26,0.62) 0%, rgba(20,19,26,0.40) 40%, rgba(20,19,26,0.55) 100%),
    linear-gradient(180deg, rgba(20,19,26,0.25) 0%, rgba(20,19,26,0.15) 30%, rgba(20,19,26,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  max-width: 1240px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 12px 0 22px;
  max-width: 14ch;
}
.hero__title em { font-style: italic; color: var(--orange); font-weight: 500; }

.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 50ch;
  color: rgba(255,255,255,0.92);
  margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__meta {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
}
.hero__meta li { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--white);
}
.hero__meta span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: 8px;
  z-index: 2;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--white); border-radius: 2px;
  animation: scrollDot 1.6s var(--t) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta li:last-child { grid-column: 1 / -1; }
  .hero__content { padding: 100px 24px 80px; }
}

/* ===== Section ===== */
.section { padding: clamp(72px, 10vw, 120px) 0; position: relative; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark .h2 { color: var(--white); }
.section--dark .muted { color: rgba(255,255,255,0.72); }

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual { position: relative; }
.about__visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 500;
}
.about__badge span { font-size: 0.85rem; color: var(--grey-9); }

.about__steps {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 18px;
}
.about__steps li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform .3s var(--t), box-shadow .3s var(--t);
}
.about__steps li:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.step__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 600;
  flex-shrink: 0;
  width: 44px;
}
.about__steps strong { display: block; margin-bottom: 4px; font-weight: 600; }
.about__steps p { margin: 0; color: var(--grey-9); font-size: 0.94rem; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__badge { left: 0; bottom: -24px; }
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  margin-top: 24px;
}
.card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s var(--t), border-color .35s var(--t), background .35s var(--t);
}
.card:hover { transform: translateY(-6px); border-color: rgba(245,130,32,0.4); background: rgba(255,255,255,0.06); }
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--t);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body { padding: 28px; }
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 8px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.card__body p { margin: 0 0 18px; color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.card__link {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
}
.card__link span { transition: transform .3s var(--t); }
.card:hover .card__link span { transform: translateX(4px); }

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
}

/* ===== Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  min-height: 720px;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.split__copy {
  display: flex; align-items: center;
  padding: clamp(60px, 8vw, 96px) clamp(24px, 5vw, 80px);
  background: var(--cream);
}
.split__inner { width: 100%; max-width: 540px; }

.grid { display: grid; gap: 14px; margin: 18px 0 8px; }
.grid--2 { grid-template-columns: 1fr 1fr; }

.tile {
  background: var(--white);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  transition: transform .3s var(--t), border-color .3s var(--t), box-shadow .3s var(--t);
}
.tile:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.tile h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.tile p { margin: 0; color: var(--grey-9); font-size: 0.88rem; }
.tile--accent { border-color: rgba(245,130,32,0.3); background: var(--orange-soft); }
.tile--accent h4 { color: var(--navy); }
.tile--accent p { color: var(--ink-2); }

.chips {
  list-style: none; padding: 0; margin: 0 0 8px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chips li {
  background: var(--white);
  border: 1px solid var(--grey-3);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: 0 !important; }
  .split__media img { min-height: 360px; aspect-ratio: 4/3; }
  .grid--2 { grid-template-columns: 1fr; }
}

/* ===== Automation ===== */
.automation {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.automation::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 80% 20%, rgba(245,130,32,0.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(245,130,32,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.automation__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.automation__visual { position: relative; }
.automation__visual img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.features {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.features li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .3s var(--t), background .3s var(--t), border-color .3s var(--t);
}
.features li:hover { transform: translateX(4px); background: rgba(255,255,255,0.06); border-color: rgba(245,130,32,0.4); }
.features svg {
  width: 24px; height: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.features strong { display: block; margin-bottom: 2px; color: var(--white); font-weight: 600; }
.features p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.92rem; }

@media (max-width: 900px) {
  .automation__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== Process ===== */
.process { background: var(--cream); }
.process__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.process__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.process__steps {
  list-style: none; padding: 0; margin: 0;
  counter-reset: process;
  display: flex; flex-direction: column; gap: 22px;
}
.process__steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--t);
}
.process__steps li:hover { transform: translateX(4px); }
.process__steps .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
}
.process__steps h4 { margin: 0 0 4px; font-weight: 600; font-size: 1.08rem; }
.process__steps p { margin: 0; color: var(--grey-9); font-size: 0.95rem; }

@media (max-width: 900px) {
  .process__row { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Pricing ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .35s var(--t), box-shadow .35s var(--t);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card--accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  border-color: transparent;
}
.price-card--accent .price-card__head h3,
.price-card--accent .price-list strong em,
.price-card--accent .price-list strong { color: var(--white); }
.price-card--accent .price-card__unit { color: rgba(255,255,255,0.85); }
.price-card--accent .price-list span { color: rgba(255,255,255,0.92); }
.price-card--accent .price-list li { border-color: rgba(255,255,255,0.2); }

.price-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--grey-3);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.price-card--accent .price-card__head { border-color: rgba(255,255,255,0.25); }
.price-card__head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.price-card__unit {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-9);
}
.price-list {
  list-style: none; padding: 0; margin: 0 0 22px;
}
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-3);
  font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: var(--ink-2); }
.price-list strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.92rem;
}
.price-list strong em {
  font-style: normal;
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0 4px;
}
.price-card__note {
  font-size: 0.78rem;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ===== Why ===== */
.why {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: clamp(96px, 12vw, 140px) 0;
}
.why__media { position: absolute; inset: 0; z-index: 0; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(27,24,66,0.92) 0%, rgba(27,24,66,0.78) 50%, rgba(20,19,26,0.7) 100%);
}
.why__inner { position: relative; z-index: 1; }
.why__list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 20px;
}
.why__list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: transform .3s var(--t), background .3s var(--t), border-color .3s var(--t);
}
.why__list li:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); border-color: rgba(245,130,32,0.5); }
.why__list svg {
  width: 28px; height: 28px;
  color: var(--orange);
  margin-bottom: 14px;
}
.why__list h4 { margin: 0 0 6px; font-weight: 600; }
.why__list p { margin: 0; color: rgba(255,255,255,0.76); font-size: 0.92rem; }

@media (max-width: 1100px) { .why__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .why__list { grid-template-columns: 1fr; } }

/* ===== Clients ===== */
.clients__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.clients__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.clients__col {
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-3);
}
.clients__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.logos {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.logos li {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding: 10px 0;
  border-bottom: 1px dashed var(--grey-3);
}
.logos li:last-child { border-bottom: 0; }
.clients__text { margin: 14px 0 0; color: var(--ink-2); }

@media (max-width: 900px) {
  .clients__grid { grid-template-columns: 1fr; gap: 40px; }
  .clients__cols { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta { position: relative; padding: clamp(80px, 10vw, 120px) 0; }
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(245,130,32,0.2) 100%);
}
.cta__inner { position: relative; z-index: 1; }
.cta__card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form { margin-top: 22px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form label {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.form label span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--grey-3);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .25s var(--t), box-shadow .25s var(--t);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245,130,32,0.15);
}
.form textarea { resize: vertical; min-height: 96px; }
.form button { margin-top: 10px; width: 100%; }
.form__note { text-align: center; font-size: 0.86rem; color: var(--grey-9); margin: 14px 0 0; }
.form__note a { color: var(--orange); font-weight: 600; }
.form__success {
  margin: 14px 0 0;
  background: var(--orange-soft);
  color: var(--orange-deep);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
}

.cta__channels {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--grey-3);
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.channel {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .25s var(--t);
}
.channel:hover { color: var(--orange); }
.channel svg { width: 20px; height: 20px; color: var(--orange); }

@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__brand {
  display: flex; align-items: flex-start;
}
.footer__lockup {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer__col h5 {
  margin: 0 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,0.72); transition: color .25s var(--t); }
.footer__col a:hover { color: var(--orange); }
.footer__col p { margin: 0 0 8px; font-size: 0.94rem; }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer__bar-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-inner { justify-content: center; text-align: center; }
}

/* ===== Floating WhatsApp ===== */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.36);
  transition: transform .3s var(--t), box-shadow .3s var(--t);
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45); }
.float-wa svg { width: 28px; height: 28px; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--t), transform .7s var(--t);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== Active nav link ===== */
.nav__links a.is-active,
.mobile a.is-active {
  color: var(--orange);
}
.nav__links a.is-active::after { width: 100%; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 120px 0 64px;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,26,0.45) 0%, rgba(20,19,26,0.30) 35%, rgba(20,19,26,0.65) 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
  max-width: 16ch;
}
.page-hero__title em { font-style: italic; color: var(--orange); font-weight: 500; }
.page-hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 56ch;
  margin: 0;
  color: rgba(255,255,255,0.88);
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ===== Service detail blocks ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block--reverse .service-block__media { order: 2; }
.service-block__media img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-block__copy h2 { margin-bottom: 14px; }
.service-block__copy .grid { margin-top: 18px; }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 36px; margin-bottom: 64px; }
  .service-block--reverse .service-block__media { order: 0; }
}

/* ===== Works gallery ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 40px;
}
.filter-bar button {
  background: var(--white);
  border: 1px solid var(--grey-3);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-2);
  transition: all .25s var(--t);
}
.filter-bar button:hover { border-color: var(--orange); color: var(--orange); }
.filter-bar button.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey-1);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--t), box-shadow .35s var(--t), opacity .35s var(--t);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--t);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,19,26,0.85) 100%);
  color: var(--white);
}
.gallery__item-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.gallery__item-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 4px;
  line-height: 1.2;
}
.gallery__item-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.gallery__item.is-hidden { display: none; }

@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } }

/* ===== Contact page channels ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-channels {
  background: var(--cream);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-channels h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.contact-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-list li {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--grey-3);
  border-radius: 12px;
  transition: border-color .25s var(--t);
}
.contact-list li:hover { border-color: var(--orange); }
.contact-list svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.contact-list a { color: var(--ink); font-weight: 500; }
.contact-list span.label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-9);
  margin-right: auto;
}

.contact-area {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.contact-area h4 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; }
.contact-area p { margin: 0; color: rgba(255,255,255,0.92); font-size: 0.95rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Strip CTA (small, on home/sub-pages) ===== */
.strip {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0;
}
.strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.strip__copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.strip__copy h3 em { font-style: italic; color: var(--orange); font-weight: 500; }
.strip__copy p { margin: 0; color: rgba(255,255,255,0.7); }

/* ===== Pricing standalone (no card flair on services page) ===== */
.pricing-bare .pricing__grid { margin-top: 0; }

/* ===== Steps timeline (home page) ===== */
.steps {
  background:
    radial-gradient(60% 100% at 50% 0%, var(--orange-soft) 0%, transparent 70%),
    var(--white);
}
.steps__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.steps__row::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 12%, var(--orange) 88%, transparent 100%);
  opacity: 0.35;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--grey-3);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform .35s var(--t), box-shadow .35s var(--t), border-color .35s var(--t);
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 130, 32, 0.4);
}

.step-card__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.32);
  transition: transform .4s var(--t);
}
.step-card:hover .step-card__icon { transform: rotate(-6deg) scale(1.05); }
.step-card__icon svg { width: 36px; height: 36px; }

.step-card__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.2;
}

.step-card__desc {
  text-align: center;
  color: var(--grey-9);
  font-size: 0.95rem;
  margin: 0;
}

.steps__cta {
  text-align: center;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.steps__cta-line {
  font-size: 0.92rem;
  color: var(--grey-9);
}
.steps__cta-line strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .steps__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps__row::before {
    top: 0; bottom: 0; left: 50%;
    width: 2px; right: auto; height: auto;
    background: linear-gradient(180deg, transparent 0%, var(--orange) 12%, var(--orange) 88%, transparent 100%);
  }
}
