:root {
  --bg: #050607;
  --surface: #101114;
  --surface-2: #17191d;
  --text: #f7f7f7;
  --muted: #b8bbc2;
  --line: rgba(255, 255, 255, 0.13);
  --red: #e50914;
  --red-dark: #9f0710;
  --gold: #d6a956;
  --green: #25d366;
  --max: 1200px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 8%, rgba(229, 9, 20, 0.12), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 300;
  padding: 10px 14px;
  color: #000;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 76px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0));
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 6, 7, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214, 169, 86, 0.6);
  border-radius: 11px;
  color: #080808;
  background: linear-gradient(145deg, #f6d99d, var(--gold));
  box-shadow: 0 0 30px rgba(214, 169, 86, 0.15);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: #e3e3e3;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--red);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: #ff1d28;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: end;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #050607 4%, rgba(5, 6, 7, 0.94) 31%, rgba(5, 6, 7, 0.45) 64%, rgba(5, 6, 7, 0.12)),
    linear-gradient(0deg, #050607 0%, transparent 38%),
    url("../images/hero_julian_digital_studio_v1.jpg") 72% center / cover no-repeat;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.02);
  animation: hero-push 10s ease-out both;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 35%, rgba(229, 9, 20, 0.13), transparent 33rem);
  pointer-events: none;
}

@keyframes hero-push {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding-block: 170px 98px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #f0ca80;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--red);
}

.hero h1,
.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 span,
.page-hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #9fa1a8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead,
.page-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #dedfe3;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(229, 9, 20, 0.28);
}

.btn-primary:hover {
  background: #ff1824;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(25, 25, 28, 0.76);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(52, 52, 56, 0.9);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  gap: 2px;
}

.hero-proof strong {
  font-size: 1.1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.8rem;
}

.signal-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: #08090b;
  overflow: hidden;
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 46px;
  padding: 17px 0;
  color: #d3d4d8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.signal-track span::before {
  margin-right: 46px;
  color: var(--red);
  content: "●";
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.client-proof {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 20%, rgba(229,9,20,.12), transparent 24rem),
    #08090b;
}

.client-proof .section-head {
  align-items: start;
}

.client-logo-marquee {
  overflow: hidden;
  padding-block: 2px 16px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: client-logo-marquee 34s linear infinite;
}

.client-logo-marquee:hover .client-logo-track,
.client-logo-marquee:focus-within .client-logo-track {
  animation-play-state: paused;
}

.client-logo-set {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0 12px 0 0;
  list-style: none;
}

.client-logo-set li {
  width: clamp(210px, 20vw, 264px);
  flex: 0 0 auto;
}

@keyframes client-logo-marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px), (any-pointer: coarse), (prefers-reduced-motion: reduce) {
  .client-logo-marquee {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #777 transparent;
    mask-image: none;
  }

  .client-logo-track {
    animation: none;
    transform: none;
  }

  .client-logo-set[aria-hidden="true"] {
    display: none;
  }

  .client-logo-set li {
    scroll-snap-align: start;
  }
}

.client-logo-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 12px;
  padding: 22px 18px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  color: #17181b;
  background: #f2f0ea;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease;
}

.client-logo-card:hover {
  border-color: rgba(229,9,20,.62);
  transform: translateY(-5px);
}

.client-logo-card img {
  width: 100%;
  max-width: 180px;
  height: 76px;
  object-fit: contain;
}

.client-logo-card span {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.case-study-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.case-study-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.015));
}

.case-study-card > span {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #d6d7dc;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.case-study-card h3 {
  margin: 58px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.case-study-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.proof-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: #85878e;
  font-size: .82rem;
}

.section {
  position: relative;
  padding-block: 104px;
}

.section-tight {
  padding-block: 72px;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.service-rail {
  display: grid;
  grid-auto-columns: minmax(285px, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 3px 34px;
  scrollbar-color: #444 transparent;
  scroll-snap-type: inline mandatory;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 260ms cubic-bezier(.2,.75,.2,1), border-color 260ms ease;
}

.service-card::before,
.service-card::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.service-card::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(5, 6, 7, 0.92) 78%),
    var(--art, linear-gradient(140deg, #25262d, #0a0a0c));
}

.service-card::after {
  inset: 22px 22px auto auto;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%);
}

.service-card:hover {
  z-index: 4;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-10px) scale(1.025);
}

.service-card:nth-child(1) { --art: radial-gradient(circle at 80% 18%, rgba(229,9,20,.72), transparent 34%), linear-gradient(140deg, #301016, #0b0b0d 72%); }
.service-card:nth-child(2) { --art: radial-gradient(circle at 82% 15%, rgba(116,66,235,.7), transparent 34%), linear-gradient(140deg, #24183b, #0b0b0d 72%); }
.service-card:nth-child(3) { --art: radial-gradient(circle at 83% 17%, rgba(0,174,239,.58), transparent 34%), linear-gradient(140deg, #09283a, #0b0b0d 72%); }
.service-card:nth-child(4) { --art: linear-gradient(180deg, rgba(5,6,7,.02), rgba(5,6,7,.96) 82%), url("../images/barber_interior.jpg") center / cover; }

.service-number {
  position: absolute;
  inset: 16px auto auto 22px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 6rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
}

.service-tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dedfe2;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.service-card p {
  margin: 12px 0 22px;
  color: #d0d2d7;
}

.service-price {
  margin-top: auto;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
}

.service-price strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 1.45rem;
}

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
}

.feature-card .icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.portrait-card {
  position: relative;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(0deg, rgba(5,6,7,.84), transparent 56%),
    url("../images/julian_escobar.jpg") 50% center / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-note {
  position: absolute;
  inset: auto 22px 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 8, 10, 0.76);
  backdrop-filter: blur(16px);
}

.portrait-note strong {
  display: block;
  font-size: 1.35rem;
}

.portrait-note span {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #e8e9ec;
}

.check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

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

.price-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, #16181c, #0d0e10);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.price-card.featured {
  border-color: rgba(229, 9, 20, 0.65);
  background:
    radial-gradient(circle at 88% 0%, rgba(229,9,20,.26), transparent 12rem),
    linear-gradient(150deg, #19191d, #0d0e10);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 8px;
  padding-right: 72px;
  font-size: 1.35rem;
}

.price-card > p {
  min-height: 52px;
  margin: 0 0 22px;
  color: var(--muted);
}

.price {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: normal;
}

.price-card .check-list {
  margin: 0 0 28px;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.software-choice-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.software-choice {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.software-choice span,
.contract-price-stack span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.software-choice strong {
  font-size: 1.08rem;
}

.software-choice small,
.contract-price-stack small {
  color: var(--muted);
}

.software-choice-or {
  justify-self: center;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 950;
}

.choice-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 15px 18px;
  border: 1px solid rgba(214,169,86,.35);
  border-radius: 14px;
  background: rgba(214,169,86,.08);
}

.choice-banner strong {
  flex: 0 0 auto;
  color: var(--gold);
  text-transform: uppercase;
}

.choice-banner-compact {
  margin: 0;
  align-items: start;
  flex-direction: column;
  gap: 4px;
}

.contract-price-stack {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.contract-price-stack > div {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.contract-price-stack strong {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.price-card > .option-clarity {
  min-height: 0;
  margin: 0 0 20px;
  color: #fff;
  font-size: .9rem;
}

.disclaimer {
  margin: 22px 0 0;
  color: #8f929a;
  font-size: 0.82rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.process-step {
  min-height: 235px;
  padding: 28px;
  background: #0d0e11;
}

.process-step span {
  color: var(--red);
  font-weight: 950;
}

.process-step h3 {
  margin: 45px 0 9px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: end;
  padding-block: 170px 85px;
  background:
    radial-gradient(circle at 84% 22%, var(--hero-glow, rgba(229,9,20,.28)), transparent 24rem),
    linear-gradient(135deg, #15171b 0%, #050607 68%);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -32%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5vw rgba(255,255,255,.018), 0 0 0 10vw rgba(255,255,255,.012);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.bread {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .82rem;
}

.bread a:hover {
  color: #fff;
}

.big-callout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(229,9,20,.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229,9,20,.28), transparent 24rem),
    #111216;
  box-shadow: var(--shadow);
}

.big-callout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.big-callout p {
  color: var(--muted);
}

.big-callout .button-row {
  align-items: end;
  justify-content: end;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0e0f12;
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--red);
  content: "+";
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .68fr);
  gap: 24px;
  align-items: start;
}

.quote-form,
.quote-result {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #101115;
  box-shadow: var(--shadow);
}

.quote-form {
  padding: clamp(24px, 4vw, 42px);
}

.quote-result {
  position: sticky;
  top: 98px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(229,9,20,.23), transparent 16rem),
    #101115;
}

.quote-form h2,
.quote-result h2 {
  margin-top: 0;
}

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

.field-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field legend {
  color: #efeff1;
  font-size: .86rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 10px;
  color: #fff;
  background: #08090b;
}

.field input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.check-field {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 10px;
  background: #08090b;
}

.quote-panel {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.quote-panel.is-active {
  display: block;
  animation: panel-in 220ms ease both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-label {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-main {
  margin: 7px 0 4px;
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: 1;
}

.result-sub {
  color: var(--muted);
}

.result-breakdown {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.result-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.result-breakdown strong {
  color: #fff;
  text-align: right;
}

.result-breakdown .result-option {
  display: grid;
  justify-content: stretch;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.result-breakdown .result-option-featured {
  border-color: rgba(229,9,20,.55);
  background: rgba(229,9,20,.08);
}

.result-option-kicker {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-breakdown .result-option strong {
  text-align: left;
  font-size: 1.35rem;
}

.result-breakdown .result-option b {
  color: #fff;
  font-size: 1.05rem;
}

.result-breakdown .result-option small {
  color: var(--muted);
  line-height: 1.45;
}

.result-breakdown .result-or {
  display: flex;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: .75rem;
  font-weight: 950;
}

.result-or span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0a0b0d;
}

.quote-result .btn {
  width: 100%;
}

.mini-note {
  color: #898c94;
  font-size: .78rem;
}

.site-footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
  background: #060708;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 40px;
}

.footer-intro {
  max-width: 370px;
  margin-top: 18px;
  color: var(--muted);
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7f828a;
  font-size: .76rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #051109;
  background: var(--green);
  box-shadow: 0 16px 38px rgba(37,211,102,.3);
  font-size: 1.4rem;
  font-weight: 950;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08) rotate(-3deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1000px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 76px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 26px 20px 80px;
    background: rgba(5,6,7,.98);
    backdrop-filter: blur(20px);
    overflow-y: auto;
  }

  .main-nav.is-open a {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .main-nav.is-open .mobile-only-cta {
    margin-top: 8px;
    border-color: var(--red);
    background: var(--red);
    text-align: center;
  }

  .split,
  .quote-layout,
  .big-callout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .big-callout .button-row {
    justify-content: start;
  }

  .quote-result {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1001px) {
  .mobile-only-cta {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-text {
    max-width: 190px;
    font-size: .92rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, #050607 0%, rgba(5,6,7,.96) 45%, rgba(5,6,7,.12) 88%),
      url("../images/hero_julian_digital_studio_v1.jpg") 68% top / auto 330px no-repeat,
      #050607;
  }

  .hero-content {
    padding-block: 330px 66px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 16px;
  }

  .hero-proof li {
    width: calc(50% - 8px);
  }

  .section {
    padding-block: 76px;
  }

  .section-tight {
    padding-block: 54px;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 18px;
  }

  .feature-grid,
  .price-grid,
  .price-grid.two,
  .process,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .choice-banner {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .service-rail {
    grid-auto-columns: 86%;
  }

  .client-logo-set li {
    width: 210px;
  }

  .case-study-rail {
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 18px;
    scrollbar-color: #444 transparent;
    scroll-snap-type: inline mandatory;
  }

  .case-study-card {
    min-height: 230px;
    scroll-snap-align: start;
  }

  .service-card {
    min-height: 390px;
  }

  .portrait-card {
    min-height: 500px;
  }

  .process-step {
    min-height: auto;
  }

  .process-step h3 {
    margin-top: 28px;
  }

  .page-hero {
    min-height: 600px;
    padding-block: 150px 70px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
