:root {
  --blue: #1740a3;
  --blue-deep: #13295d;
  --blue-soft: #dfe8ff;
  --green: #00db06;
  --green-deep: #00a905;
  --green-soft: #dfffe1;
  --ink: #171717;
  --ink-soft: #4c535d;
  --off-black: #111315;
  --night: #0b1020;
  --slate: #222936;
  --paper: #f4f6f8;
  --paper-deep: #e7ebf0;
  --white: #ffffff;
  --line: rgba(23, 64, 163, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(9, 18, 40, 0.2);
  --shadow-small: 0 16px 45px rgba(9, 18, 40, 0.12);
  --radius-sm: 5px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shell: 1280px;
  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --section: clamp(5.5rem, 9vw, 8.5rem);
  --sans: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --display: "Barlow", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  font-weight: 800;
  line-height: 0.96;
}

h2 em {
  color: var(--blue);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.shell {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--night);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 3.75rem;
  padding: 0.95rem 1.5rem;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
}

.button-small {
  min-height: 3.1rem;
  padding-inline: 1.15rem;
  font-size: 0.69rem;
}

.button-green {
  color: var(--night);
  background: var(--green);
  border-color: var(--green);
}

.button-green:hover,
.button-green:focus-visible {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--night);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.35rem;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: var(--off-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 6.35rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand > img {
  width: 6.2rem;
  height: 4.25rem;
  object-fit: contain;
}

.brand-name strong,
.brand-name small {
  display: block;
}

.brand-name strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 0.25rem;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin-left: auto;
}

.desktop-nav a {
  color: #d6dbe3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.header-phone {
  display: block;
  text-align: right;
  text-decoration: none;
}

.header-phone span,
.header-phone strong {
  display: block;
}

.header-phone span {
  color: #919aa8;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-phone strong {
  margin-top: 0.12rem;
  color: var(--white);
  font-size: 0.95rem;
}

.site-header .button {
  color: var(--off-black);
  background: var(--green);
  border-color: var(--green);
}

.site-header .button:hover,
.site-header .button:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 53rem;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-image,
.hero-overlay,
.hero-grid-lines {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero.jpg");
  background-position: 52% center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 12, 28, 0.97) 0%, rgba(8, 19, 48, 0.91) 39%, rgba(8, 19, 48, 0.48) 72%, rgba(6, 12, 28, 0.69) 100%),
    linear-gradient(0deg, rgba(6, 12, 28, 0.65), transparent 60%);
}

.hero-grid-lines {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 7.5rem 7.5rem;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 70%);
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.66fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero-content {
  max-width: 49rem;
}

.hero h1 {
  max-width: 49rem;
  font-size: clamp(3.85rem, 6.8vw, 7.4rem);
  font-weight: 900;
  line-height: 0.87;
}

.hero h1 em {
  display: block;
  margin-top: 0.18em;
  color: var(--green);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 41rem;
  margin-top: 1.8rem;
  color: #d7dfec;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-checks span {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem 1.7rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1.45rem;
  border-top: 1px solid var(--line-light);
}

.review-stars {
  color: var(--green);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.hero-trust p {
  color: var(--white);
  font-size: 0.77rem;
  line-height: 1.5;
}

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

.hero-trust span {
  color: #9eacc3;
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3.5vw, 2.7rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quote-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 7rem;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.quote-card .eyebrow {
  margin-bottom: 0.85rem;
}

.quote-card-heading h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  line-height: 0.98;
}

.quote-card-heading > p:last-child {
  margin-top: 1rem;
  font-size: 0.91rem;
  line-height: 1.6;
}

.ghl-form-shell {
  min-height: 30.125rem;
  margin-top: 1.55rem;
}

.ghl-form-frame {
  display: block;
  width: 100%;
  height: 30.125rem;
  min-height: 30.125rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.form-note {
  margin-top: 0.85rem;
  color: #6e7786;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.proof-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--blue-deep);
  border-top: 4px solid var(--green);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  min-height: 8.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

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

.proof-item strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.proof-item span {
  margin-top: 0.35rem;
  color: #aab8d2;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.ideas {
  overflow: hidden;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.7fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.section-heading {
  max-width: 48rem;
}

.section-intro {
  max-width: 37rem;
  padding-bottom: 0.3rem;
}

.lead-copy {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
}

.section-intro p + p {
  margin-top: 1rem;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 5.2rem);
}

.idea-card {
  position: relative;
  min-height: clamp(25rem, 42vw, 35rem);
  display: flex;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.idea-card img,
.idea-card-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.idea-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.idea-card:hover img {
  transform: scale(1.035);
}

.idea-card-overlay {
  background: linear-gradient(0deg, rgba(5, 12, 29, 0.92), rgba(5, 12, 29, 0.04) 65%);
}

.idea-icon {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin: 1.5rem;
  color: var(--night);
  background: var(--green);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.idea-copy {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  max-width: 28rem;
  margin: auto 2rem 2rem;
}

.idea-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.idea-copy p {
  max-width: 25rem;
  margin-top: 0.65rem;
  color: #cfd8e8;
  line-height: 1.55;
}

.value-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 79, 183, 0.44), transparent 25rem),
    var(--blue-deep);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(23rem, 0.88fr);
  gap: clamp(3.5rem, 8vw, 7rem);
  align-items: center;
}

.value-gallery {
  position: relative;
  min-height: 43rem;
}

.value-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-image-main {
  inset: 0 11% 9% 0;
}

.value-image-small {
  width: 47%;
  height: 40%;
  right: 0;
  bottom: 0;
  border: 0.45rem solid var(--blue-deep);
}

.experience-stamp {
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 9.2rem;
  height: 9.2rem;
  z-index: 3;
  display: grid;
  place-content: center;
  color: var(--night);
  background: var(--green);
  border: 0.45rem solid var(--blue-deep);
  border-radius: 50%;
  text-align: center;
  transform: rotate(5deg);
}

.experience-stamp strong,
.experience-stamp span {
  display: block;
}

.experience-stamp strong {
  font-size: 2.25rem;
  line-height: 0.9;
}

.experience-stamp span {
  margin-top: 0.42rem;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.value-copy h2 {
  max-width: 42rem;
}

.value-lead {
  margin-top: 1.6rem;
  color: #bdc8db;
  font-size: 1.08rem;
}

.value-points {
  margin: 2.25rem 0 2.6rem;
  border-top: 1px solid var(--line-light);
}

.value-points article {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}

.value-points article > span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.value-points h3 {
  color: var(--white);
}

.value-points p {
  margin-top: 0.4rem;
  color: #9daac0;
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.process-heading > div {
  max-width: 52rem;
}

.process-heading > p {
  padding-bottom: 0.25rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-card {
  min-height: 21rem;
  padding: 2rem;
  background: var(--paper);
}

.process-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 4rem;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.12rem;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(19, 41, 93, 0.08);
}

.process-card h3 {
  font-size: 1.35rem;
}

.process-card p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.work {
  color: var(--white);
  background: var(--blue-deep);
}

.work-heading {
  max-width: 52rem;
  text-align: center;
}

.work-heading .eyebrow {
  justify-content: center;
}

.work-heading > p:last-child {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: #b7c3d9;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.72fr);
  grid-template-rows: repeat(2, minmax(0, 16.5rem));
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.work-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: var(--night);
  border-radius: var(--radius-md);
}

.work-card-wide {
  min-height: 34rem;
  grid-column: 1;
  grid-row: 1 / 3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-card:hover img {
  transform: scale(1.025);
}

.work-card figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 1rem 1.2rem;
  background: rgba(6, 12, 28, 0.87);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

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

.work-card strong {
  font-size: 1.05rem;
}

.work-card span {
  margin-top: 0.2rem;
  color: #aebbd0;
  font-size: 0.74rem;
}

.review-section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 64, 163, 0.48), transparent 24rem),
    var(--blue-deep);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.review-intro .eyebrow {
  color: var(--green);
}

.review-intro .eyebrow::before {
  background: var(--green);
}

.review-intro h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.review-quote {
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.review-quote .review-stars {
  color: var(--green);
}

.review-quote p {
  margin-top: 1.25rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.review-quote footer {
  margin-top: 1.6rem;
  color: #b6c5e1;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 2rem;
}

.faq-heading h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
}

.faq-heading > p:not(.eyebrow) {
  margin: 1.35rem 0 1.8rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.65rem 3rem 1.65rem 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.07rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  color: var(--night);
  background: var(--green);
  border-color: var(--green);
  content: "−";
}

.faq-list details p {
  max-width: 43rem;
  padding: 0 3.5rem 1.65rem 0;
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  min-height: 39rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.final-cta-image,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-image {
  background: url("assets/hero.jpg") center 56% / cover no-repeat;
}

.final-cta-overlay {
  background: linear-gradient(90deg, rgba(6, 12, 28, 0.97), rgba(19, 41, 93, 0.78));
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 60rem;
  padding-block: 5rem;
  text-align: center;
}

.final-cta-content .eyebrow {
  justify-content: center;
}

.final-cta-content h2 {
  font-size: clamp(3rem, 6.4vw, 6.7rem);
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.5rem auto 0;
  color: #c3cde0;
  font-size: 1.1rem;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.site-footer {
  color: var(--white);
  background: #070b15;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.55fr;
  gap: 3rem;
  padding-block: 4.5rem;
}

.brand-footer .brand-name strong {
  color: var(--white);
}

.brand-footer > img {
  width: 7.25rem;
  height: 5rem;
}

.footer-brand > p {
  max-width: 24rem;
  margin-top: 1rem;
  color: #8995aa;
  font-size: 0.85rem;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact > span,
.footer-links > span {
  margin-bottom: 0.4rem;
  color: #77849b;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-links a {
  color: #d9e1ef;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  color: #68748a;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.64fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 7vw, 6.2rem);
  }

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

@media (max-width: 900px) {
  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 12, 28, 0.97), rgba(8, 19, 48, 0.75));
  }

  .hero-layout,
  .split-heading,
  .value-layout,
  .process-heading,
  .review-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 3.5rem;
  }

  .hero-content {
    max-width: 45rem;
  }

  .quote-card {
    width: min(40rem, 100%);
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .idea-card {
    min-height: 27rem;
  }

  .value-gallery {
    width: min(45rem, 100%);
  }

  .value-copy {
    max-width: 45rem;
  }

  .process-heading > p {
    max-width: 40rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .work-card,
  .work-card-wide {
    min-height: 27rem;
    grid-column: auto;
    grid-row: auto;
  }

  .review-intro {
    max-width: 44rem;
  }

  .faq-heading {
    position: static;
    max-width: 43rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --section: 4.5rem;
  }

  body {
    padding-bottom: 4rem;
  }

  p {
    font-size: 0.96rem;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 5.25rem;
    gap: 1rem;
  }

  .brand > img {
    width: 4.8rem;
    height: 3.3rem;
  }

  .brand-name strong {
    font-size: 0.9rem;
  }

  .brand-name small {
    font-size: 0.53rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero-layout {
    padding-block: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16.5vw, 4.7rem);
    line-height: 0.9;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-checks {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta-row .button {
    width: 100%;
  }

  .hero-cta-row .text-link {
    align-self: flex-start;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-card {
    padding: 1.4rem;
  }

  .quote-card-heading h2 {
    font-size: 2.35rem;
  }

  .ghl-form-shell {
    min-height: 30.125rem;
  }

  .ghl-form-frame {
    height: 30.125rem;
    min-height: 30.125rem;
  }

  .proof-item {
    min-height: 7rem;
    padding: 1.2rem;
  }

  .proof-item strong {
    font-size: 1rem;
  }

  .idea-grid,
  .work-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .idea-card {
    min-height: 27rem;
  }

  .idea-copy {
    margin: auto 1.4rem 1.4rem;
  }

  .value-gallery {
    min-height: 31rem;
  }

  .experience-stamp {
    top: 1rem;
    right: -0.5rem;
    width: 7.5rem;
    height: 7.5rem;
  }

  .experience-stamp strong {
    font-size: 1.8rem;
  }

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

  .process-icon {
    margin-bottom: 2.2rem;
  }

  .brand-footer > img {
    width: 5.8rem;
    height: 4rem;
  }

  .work-card,
  .work-card-wide {
    min-height: 25rem;
    grid-column: auto;
    grid-row: auto;
  }

  .review-layout {
    gap: 2.5rem;
  }

  .review-quote {
    padding: 1.5rem;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .final-cta {
    min-height: 35rem;
  }

  .final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 2.3rem;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1px;
    padding: 0.55rem;
    background: rgba(7, 11, 21, 0.96);
    box-shadow: 0 -8px 30px rgba(7, 11, 21, 0.25);
    backdrop-filter: blur(10px);
  }

  .mobile-action-bar a {
    min-height: 3rem;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    color: var(--night);
    background: var(--green);
    border-color: var(--green);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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