@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Medium.woff") format("woff");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Bold.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #000000;
  --navy-deep: #000000;
  --blue: #356eea;
  --orange: #fcf315;
  --orange-dark: #e7df00;
  --cream: #f6f6f6;
  --paper: #ffffff;
  --ink: #000000;
  --muted: #6e6e6e;
  --line: #e5e5e5;
  --white: #fff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Neue Montreal", Arial, sans-serif;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 176px;
  height: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  font-size: 14px;
  color: var(--muted);
}

.header-contact a {
  color: var(--navy);
  font-weight: 700;
}

.mobile-call-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 30px;
  color: #000;
  background: var(--orange);
  box-shadow: none;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: none;
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(40, 87, 214, .32);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 55px 0 74px;
  background: linear-gradient(145deg, #fff 0%, #f6f6f6 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(#274a88 .6px, transparent .6px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, #000, transparent 55%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -150px;
  top: -190px;
  background: rgba(252, 243, 21, .68);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: -180px;
  bottom: -140px;
  background: rgba(53, 110, 234, .18);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 66px;
}

.hero-grid>* {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.1vw, 70px);
}

h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  height: 7px;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: -1;
  background: var(--orange);
  border-radius: 50%;
}

.hero-lead {
  max-width: 625px;
  margin: 25px 0 30px;
  color: #536079;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid rgba(16, 36, 74, .25);
}

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

.hero-proof li {
  min-width: 118px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--navy);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 2% 6% -4% 8%;
  z-index: -1;
  background: var(--orange);
  border-radius: 28px;
  transform: rotate(3deg);
  opacity: 1;
}

.hero-visual img {
  width: 75%;
  aspect-ratio: 1.48;
  object-fit: cover;
  object-position: center;
  border: 7px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.visual-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: -80px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(16, 36, 74, .09);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(16, 36, 74, .12);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #22a06b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 160, 107, .13);
}

.floating-card {
  position: absolute;
  right: -22px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--navy);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(8, 22, 47, .24);
  color: var(--white);
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--orange);
  border-radius: 50%;
  font-size: 19px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 13px;
}

.floating-card span {
  color: #bdc8dc;
  font-size: 11px;
}

.trust-strip {
  background: var(--navy);
  color: var(--white);
}

.trust-items {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  font-size: 14px;
  font-weight: 600;
}

.trust-items span:first-child {
  border-left: 0;
}

.trust-items i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #000;
  background: var(--orange);
  border-radius: 50%;
  font-style: normal;
  font-size: 12px;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.section-heading h2,
.services-intro h2,
.quote-copy h2 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
}

.section-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--orange);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 36, 74, .06);
}

.benefit-card {
  position: relative;
  min-height: 300px;
  padding: 35px 28px;
  background: var(--white);
  border-left: 1px solid var(--line);
}

.benefit-card:first-child {
  border-left: 0;
}

.benefit-card:hover {
  background: #fbfcff;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #c7ceda;
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  color: #000;
  background: var(--orange);
  border-radius: 50%;
  font-size: 23px;
}

.benefit-card h3 {
  font-size: 18px;
}

.benefit-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.services-section {
  color: var(--white);
  background: var(--navy-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 36px;
}

.services-intro h2 {
  color: var(--white);
}

.services-intro p {
  max-width: 470px;
  margin: 22px 0 18px;
  color: #b7c2d5;
  font-size: 17px;
}

.pricing-signal {
  display: grid;
  gap: 4px;
  max-width: 470px;
  margin-bottom: 28px;
  padding: 12px 0 12px 16px;
  border-left: 3px solid var(--orange);
}

.pricing-signal strong {
  color: var(--white);
  font-size: 19px;
}

.pricing-signal span {
  color: #9faec6;
  font-size: 12px;
  line-height: 1.5;
}

.button-light {
  color: #000;
  background: var(--orange);
  box-shadow: none;
}

.button-light:hover {
  color: #fff;
  background: var(--blue);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.service-row {
  display: grid;
  grid-template-columns: 45px minmax(200px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.service-row>span {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 4px;
  color: #7790bb;
  font-size: 12px;
}

.service-row h3 {
  color: var(--white);
  font-size: 19px;
}

.service-row i {
  color: #9faec6;
  font-style: normal;
  font-size: 12px;
}

.service-row p {
  grid-column: 2 / -1;
  margin: -4px 0 0;
  color: #d5ddea;
  font-size: 14px;
  line-height: 1.45;
}

.work-section {
  background: var(--cream);
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  max-width: 700px;
  margin: 18px auto 0;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 155px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 36, 74, .09);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(16, 36, 74, .08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.client-logo-card:hover {
  border-color: rgba(16, 36, 74, .2);
  box-shadow: 0 20px 42px rgba(16, 36, 74, .13);
  transform: translateY(-5px);
}

.client-logo-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .82;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.client-logo-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

.instagram-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 940px);
  margin-inline: auto;
}

.instagram-profile-card {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(16, 36, 74, .09);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(16, 36, 74, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.instagram-profile-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(16, 36, 74, .14);
}

.instagram-profile-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.34;
  background: #f4f4f4;
  border-bottom: 1px solid rgba(16, 36, 74, .08);
}

.instagram-profile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s ease;
}

.instagram-profile-card:hover .instagram-profile-media img {
  transform: scale(1.025);
}

.instagram-profile-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
}

.instagram-profile-info span {
  display: inline-block;
  margin-bottom: 7px;
  padding: 5px 8px;
  color: var(--navy);
  background: var(--orange);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.instagram-profile-info h3 {
  font-size: clamp(18px, 1.55vw, 23px);
}

.instagram-profile-info strong {
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
}

.instagram-profile-info i {
  display: inline-block;
  margin-left: 3px;
  color: var(--orange-dark);
  font-style: normal;
  transition: transform .25s ease;
}

.instagram-profile-card:hover .instagram-profile-info i {
  transform: translate(2px, -2px);
}

.instagram-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
}

.instagram-cta span {
  color: #aebbd0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instagram-cta h3 {
  margin-top: 5px;
  color: var(--white);
  font-size: 21px;
}

.outline-button {
  flex: 0 0 auto;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 30px;
  font-weight: 500;
}

.outline-button:hover {
  background: var(--white);
  color: var(--navy);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 28px 22px 28px 0;
  border-top: 1px solid var(--line);
}

.process-list li::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.process-list li>span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.process-list h3 {
  font-size: 18px;
}

.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-section {
  padding: 105px 0;
  color: var(--white);
  background: var(--navy);
}

.quote-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 85px;
  align-items: center;
}

.quote-copy h2 {
  color: var(--white);
}

.quote-copy>p {
  margin: 24px 0 26px;
  color: #bdc8dc;
  font-size: 18px;
}

.quote-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-copy li {
  display: flex;
  gap: 10px;
  margin: 11px 0;
  color: #d7ddea;
}

.quote-copy li span {
  color: var(--orange);
  font-weight: 700;
}

.direct-contact {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.direct-contact span,
.direct-contact a {
  display: block;
}

.direct-contact span {
  color: #9fadc4;
  font-size: 13px;
}

.direct-contact a {
  margin-top: 2px;
  color: var(--white);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.quote-form {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .2);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 23px;
}

.form-heading span {
  color: var(--navy);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #34405a;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #d7dde7;
  border-radius: 8px;
  outline: none;
  transition: border .2s, box-shadow .2s;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  display: block;
  padding: 11px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 87, 214, .1);
}

.field.invalid input,
.field.invalid select {
  border-color: #c83532;
}

.error {
  display: block;
  min-height: 0;
  margin-top: 3px;
  color: #b42318;
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-submit i {
  font-style: normal;
}

.form-submit.is-loading {
  opacity: .75;
  pointer-events: none;
}

.form-note {
  margin: 10px 0 0;
  color: #8b95a7;
  text-align: center;
  font-size: 10px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.final-cta {
  padding: 62px 0;
  color: #000;
  background: var(--orange);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-inner>div>span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 790px;
  margin-top: 6px;
  color: #000;
  font-size: clamp(28px, 3.3vw, 44px);
}

.final-cta .button-light {
  color: #fff;
  background: #000;
}

.final-cta .button-light:hover {
  background: var(--blue);
}

.site-footer {
  padding: 46px 0 20px;
  color: #aeb8cb;
  background: var(--navy-deep);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  padding: 7px 12px;
  background: #fff;
  border-radius: 8px;
}

.footer-brand img {
  width: 155px;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner>div {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-inner a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .services-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: 12px auto 0;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    padding: 12px 0;
  }

  .trust-items span {
    min-height: 45px;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .benefit-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .services-intro {
    position: static;
  }

  .services-grid,
  .quote-grid {
    gap: 50px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }

  .footer-inner p {
    text-align: right;
  }

  .footer-inner>div {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    text-align: center;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-contact,
  .header-inner>.button {
    display: none;
  }

  .mobile-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    margin-left: auto;
    padding: 0 16px;
    color: #000;
    background: var(--orange);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }

  .mobile-call-button:hover {
    color: #fff;
    background: var(--blue);
  }

  .hero {
    padding: 52px 0 54px;
  }

  h1 {
    font-size: clamp(37px, 10.5vw, 47px);
  }

  h1 em {
    white-space: normal;
  }

  .eyebrow {
    justify-content: center;
    font-size: 11px;
    line-height: 1.4;
  }

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

  .hero-actions {
    gap: 16px;
  }

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

  .hero-proof li {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .hero-visual {
    margin-top: 6px;
  }

  .hero-visual img {
    border-width: 5px;
    border-radius: 20px 8px 20px 8px;
  }

  .visual-label {
    top: 11px;
    left: -5px;
    font-size: 10px;
  }

  .floating-card {
    right: -3px;
    bottom: -17px;
    padding: 10px 12px;
  }

  .floating-card span {
    display: none;
  }

  .trust-items {
    grid-template-columns: 1fr;
    padding: 17px 0;
  }

  .trust-items span {
    justify-content: flex-start;
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .section-heading h2,
  .services-intro h2,
  .quote-copy h2 {
    font-size: 34px;
  }

  .benefit-grid {
    display: block;
  }

  .benefit-card {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit-card:first-child {
    border-top: 0;
  }

  .card-icon {
    margin-bottom: 35px;
  }

  .service-row {
    grid-template-columns: 34px 1fr;
    align-items: start;
    padding: 16px 0;
  }

  .service-row>span {
    grid-row: 1 / span 3;
    padding-top: 3px;
  }

  .service-row i {
    grid-column: 2;
    margin-top: -10px;
  }

  .service-row p {
    grid-column: 2;
    margin-top: -6px;
  }

  .instagram-work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-logo-grid {
    gap: 12px;
  }

  .client-logo-card {
    min-height: 112px;
    padding: 20px 16px;
    border-radius: 12px;
  }

  .client-logo-card img {
    max-width: 155px;
    max-height: 62px;
  }

  .instagram-profile-info {
    padding: 17px 18px 19px;
  }

  .instagram-cta,
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding-right: 0;
  }

  .quote-section {
    padding: 76px 0;
  }

  .quote-form {
    padding: 25px 18px;
  }

  .form-heading {
    display: block;
  }

  .form-heading p {
    margin-top: 4px;
  }

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

  .final-cta {
    padding: 52px 0;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-inner p {
    text-align: center;
  }

  .footer-inner>div {
    flex-direction: column;
    gap: 2px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 66px;
    color: #000;
    background: var(--orange);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .18);
    font-weight: 700;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 150px;
  }

  h1 {
    font-size: clamp(35px, 10.2vw, 41px);
  }

  .hero-proof {
    margin-top: 34px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .instagram-profile-media {
    aspect-ratio: 1.24;
  }

  .instagram-profile-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
/* Timed quick-enquiry popup */
.lead-popup[hidden] {
  display: none;
}

.lead-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 100000001;
  width: min(420px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 26px;
  overflow-y: auto;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .12);
  border-top: 6px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
}

.lead-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

body.lead-popup-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100000000;
  background: rgba(0, 0, 0, .38);
}

.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  z-index: 2;
}

.lead-popup-close:hover {
  background: var(--orange);
}

.lead-popup-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: #000;
  background: var(--orange);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lead-popup>h2 {
  max-width: 330px;
  padding-right: 24px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.05;
}

.lead-popup>p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.lead-popup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-popup-form .field {
  margin: 0;
}

.lead-popup-form .field:first-of-type,
.lead-popup-form .form-submit,
.lead-popup-note {
  grid-column: 1 / -1;
}

.lead-popup-form label {
  margin-bottom: 6px;
  font-size: 11px;
}

.lead-popup-form input {
  min-height: 46px;
  padding: 11px 12px;
  font-size: 14px;
}

.lead-popup-form .form-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
}

.lead-popup-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 520px) {
  .lead-popup {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 78px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 92px);
    padding: 22px 18px 18px;
    border-radius: 16px;
    transform: translateY(28px) scale(.98);
  }

  .lead-popup.is-open {
    transform: translateY(0) scale(1);
  }

  .lead-popup-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-popup-form .field,
  .lead-popup-form .form-submit,
  .lead-popup-note {
    grid-column: 1;
  }

  .lead-popup>h2 {
    font-size: 25px;
  }

  .lead-popup>p {
    margin-bottom: 14px;
  }
}
/* Persistent WhatsApp shortcut */
.whatsapp_chat {
  position: fixed;
  top: auto;
  right: 14px;
  bottom: 76px;
  z-index: 100000002 !important;
  display: block;
  width: 55px;
  height: 55px;
  overflow: visible;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  border-radius: 50%;
  isolation: isolate;
  transition: top .25s ease, bottom .25s ease, opacity .2s ease;
}

.whatsapp_chat img {
  display: block;
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .24));
  animation: whatsapp-bounce 8s infinite;
}

.whatsapp-label {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 64px;
  padding: 9px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(16, 36, 74, .1);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: none;
}

@keyframes whatsapp-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-24px);
  }

  60% {
    transform: translateY(-12px);
  }
}

@media (max-width: 520px) {
  .lead-popup-open .whatsapp_chat {
    top: auto;
    bottom: 12px !important;
  }

  .whatsapp-label {
    right: 0;
    bottom: 62px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .lead-popup-open .whatsapp-label {
    top: auto;
    bottom: 62px;
  }
}
