:root {
  --bg: #070707;
  --bg-soft: #0d0d0e;
  --surface: rgba(18, 18, 19, 0.78);
  --surface-solid: #121214;
  --surface-light: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #b7b7bc;
  --muted-light: #d8d8db;
  --red: #ef233c;
  --red-dark: #b90f26;
  --red-soft: rgba(239, 35, 60, 0.16);
  --green: #4ade80;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 35, 60, 0.09), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: #fff;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.58));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand-dot {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239, 35, 60, 0.13);
}

.brand-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  opacity: 0.78;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #c9c9ce;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(239, 35, 60, 0.3);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

/* Shared */

.eyebrow {
  margin: 0 0 14px;
  color: #ff7a89;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  letter-spacing: -0.072em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.7vw, 4.6rem);
  letter-spacing: -0.06em;
}

h3 {
  letter-spacing: -0.035em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff314b, #d8112c);
  box-shadow: 0 16px 38px rgba(239, 35, 60, 0.28);
}

.button.primary:hover {
  box-shadow: 0 18px 44px rgba(239, 35, 60, 0.38);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.17);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  color: #141414;
  background: #fff;
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.section-heading.split p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

/* Hero */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 92px;
  background-image:
    linear-gradient(90deg, rgba(4, 4, 5, 0.98) 0%, rgba(4, 4, 5, 0.84) 38%, rgba(4, 4, 5, 0.25) 72%, rgba(4, 4, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.25) 0%, rgba(5, 5, 5, 0.1) 55%, var(--bg) 100%),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=2000&q=90");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(239, 35, 60, 0.13), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.7fr);
  gap: 72px;
  align-items: end;
}

.hero-copy-wrap {
  max-width: 780px;
}

.availability {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #e7e7e9;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.11);
}

.hero-text {
  max-width: 680px;
  margin: 0;
  color: #d0d0d4;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
}

.hero-proof div {
  min-width: 150px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(8, 8, 9, 0.44);
  backdrop-filter: blur(16px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.94rem;
}

.hero-proof span {
  color: #a9a9ae;
  font-size: 0.74rem;
}

/* Original hero image remains in HTML, but is turned into a glass information panel */

.hero-media {
  position: relative;
  min-height: 490px;
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(12, 12, 13, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-media > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.04), rgba(6, 6, 7, 0.82)),
    linear-gradient(90deg, rgba(6, 6, 7, 0.56), transparent);
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(12, 12, 13, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-top: 4px;
  font-size: 0.92rem;
}

.floating-top {
  top: 24px;
  right: 24px;
}

.floating-bottom {
  left: 24px;
  bottom: 24px;
}

.mini-label {
  color: #aaaab0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rating {
  color: #ff6678;
  letter-spacing: 0.13em;
}

/* Ticker */

.ticker {
  position: relative;
  z-index: 3;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 13, 0.88);
  backdrop-filter: blur(18px);
}

.ticker-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  color: #d7d7da;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-inner i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
}

/* Services */

#services {
  background:
    linear-gradient(180deg, var(--bg), rgba(7, 7, 7, 0.86)),
    url("https://images.unsplash.com/photo-1507136566006-cfc505b114fc?auto=format&fit=crop&w=2000&q=80");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.84), rgba(7, 7, 7, 0.96));
  pointer-events: none;
}

#services > .shell {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.04) 10%, rgba(5, 5, 6, 0.36) 47%, rgba(5, 5, 6, 0.98) 100%);
}

.service-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 8, 9, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-content {
  width: 100%;
  padding: 34px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  color: #c8c8cc;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-meta strong {
  color: #fff;
  font-size: 1.05rem;
}

.service-content h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.service-content p {
  max-width: 540px;
  margin: 0;
  color: #c6c6ca;
}

.service-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 18px;
  color: #e3e3e5;
  font-size: 0.84rem;
}

.service-content li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.13);
}

.service-content > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
      background: linear-gradient(
        135deg,
        rgba(239,35,60,.85),
        rgba(190,20,40,.85)
    );
    border-color: rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 10px 18px;
}

.service-content > a span {
  transition: transform 180ms ease;
}

.service-content > a:hover span {
  transform: translate(2px, -2px);
}

.price-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 21px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.74);
  backdrop-filter: blur(14px);
}

.price-notice span {
  color: #ff7a89;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-notice p {
  margin: 0;
  color: #bdbdc2;
  font-size: 0.88rem;
}

/* Why section */

.muted-section {
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 8, 0.99) 0%, rgba(7, 7, 8, 0.9) 50%, rgba(7, 7, 8, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.45), rgba(7, 7, 8, 0.95)),
    url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=2000&q=85");
  background-position: center;
  background-size: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 90px;
  align-items: start;
}

.why-intro {
  position: sticky;
  top: 130px;
}

.why-intro > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 28px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(16, 16, 18, 0.68);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-list article:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(22, 22, 24, 0.8);
}

.benefit-list article > span {
  color: #ff6678;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.benefit-list h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.benefit-list p {
  margin: 0;
  color: #aaaab0;
  font-size: 0.89rem;
}

/* Process */

.process-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 35, 60, 0.11), transparent 34rem),
    var(--bg-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 70%),
    rgba(15, 15, 17, 0.82);
}

.process-grid article::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(239, 35, 60, 0.12);
  filter: blur(12px);
}

.process-grid article > span {
  display: inline-flex;
  margin-bottom: 62px;
  color: #ff6678;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
}

.process-grid p {
  margin: 0;
  color: #a7a7ac;
  font-size: 0.88rem;
}

/* Story */

.story-section {
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 6, 0.14) 0%, rgba(5, 5, 6, 0.46) 43%, rgba(5, 5, 6, 0.95) 70%, rgba(5, 5, 6, 1) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.78)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2000&q=90");
  background-position: center;
  background-size: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.74fr);
  gap: 70px;
  align-items: center;
}

.story-image {
  min-height: 440px;
  opacity: 0;
  pointer-events: none;
}

.story-image img {
  display: none;
}

.story-copy {
  grid-column: 2;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(11, 11, 12, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.story-copy p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #c0c0c5;
}

/* Review */

.review-section {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.92), rgba(7, 7, 8, 0.98)),
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=2000&q=80");
  background-position: center;
  background-size: cover;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(440px, 1fr);
  gap: 90px;
  align-items: center;
}

.review-grid blockquote {
  margin: 0;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(17, 17, 19, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.review-grid blockquote > p {
  margin: 18px 0 30px;
  color: #f1f1f2;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.review-grid blockquote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-grid blockquote footer strong,
.review-grid blockquote footer span {
  display: block;
}

.review-grid blockquote footer span {
  color: #9d9da3;
  font-size: 0.8rem;
}

/* CTA */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 112px;
  background: var(--bg);
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding: 58px;
  border-radius: 30px;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.78) 48%, rgba(7, 7, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.06), rgba(7, 7, 8, 0.62)),
    url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1900&q=90");
  background-position: center;
  background-size: cover;
}

.cta-card h2 {
  max-width: 680px;
  margin-bottom: 14px;
}

.cta-card p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: #d0d0d3;
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.12);
    pointer-events: none;
    z-index: 5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

/* Footer */

.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.85fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #919197;
  font-size: 0.87rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links > strong {
  margin-bottom: 13px;
  color: #fff;
  font-size: 0.82rem;
}

.footer-links a,
.footer-links span {
  margin: 5px 0;
  color: #929298;
  text-decoration: none;
  font-size: 0.83rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #717177;
  font-size: 0.74rem;
}

/* Responsive */

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .nav {
    gap: 1px;
  }

  .nav a {
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap {
    max-width: 820px;
  }

  .hero-media {
    max-width: 720px;
    min-height: 420px;
  }

  .why-grid,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-intro {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: minmax(0, 0.35fr) minmax(400px, 0.75fr);
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    padding: 78px 0 54px;
    background-image:
      linear-gradient(180deg, rgba(4, 4, 5, 0.45), rgba(4, 4, 5, 0.88) 58%, var(--bg) 100%),
      url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1400&q=88");
    background-position: 62% center;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  .hero-media {
    min-height: 360px;
  }

  .ticker-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 570px;
  }

  .story-section {
    min-height: auto;
    padding: 100px 0;
    background-image:
      linear-gradient(180deg, rgba(5, 5, 6, 0.25), rgba(5, 5, 6, 0.94) 67%, rgba(5, 5, 6, 1) 100%),
      url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1400&q=88");
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    display: none;
  }

  .story-copy {
    grid-column: 1;
    max-width: 640px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .header-cta {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 0.76rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .nav {
    margin-inline: -2px;
  }

  .hero {
    padding-top: 62px;
  }

  .availability {
    margin-bottom: 20px;
  }

  h1 {
    margin-bottom: 20px;
    letter-spacing: -0.062em;
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 34px;
  }

  .hero-proof div {
    min-width: 0;
  }

  .hero-media {
    min-height: 320px;
    border-radius: 24px;
  }

  .floating-card {
    min-width: 0;
    max-width: calc(100% - 32px);
    padding: 14px 16px;
  }

  .floating-top {
    top: 16px;
    right: 16px;
  }

  .floating-bottom {
    left: 16px;
    bottom: 16px;
  }

  .ticker-inner {
    min-height: 58px;
    gap: 19px;
  }

  .section {
    padding: 70px 0;
  }

  .service-card {
    min-height: 610px;
    border-radius: 23px;
  }

  .service-content {
    padding: 25px;
  }

  .service-content ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .benefit-list article {
    grid-template-columns: 40px 1fr;
    padding: 21px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 210px;
  }

  .process-grid article > span {
    margin-bottom: 42px;
  }

  .story-copy,
  .review-grid blockquote {
    padding: 27px;
    border-radius: 22px;
  }

  .cta-section {
    padding-bottom: 70px;
  }

  .cta-card {
    min-height: 500px;
    align-content: end;
    padding: 30px 24px;
    border-radius: 24px;
    background-image:
      linear-gradient(180deg, rgba(7, 7, 8, 0.18), rgba(7, 7, 8, 0.96) 67%),
      url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1200&q=88");
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  #services {
    background-attachment: scroll;
  }
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-meta span,
.service-meta strong {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(15,15,15,.55);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    box-shadow:
        0 8px 25px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.service-meta strong{
    background: linear-gradient(
        135deg,
        rgba(239,35,60,.85),
        rgba(190,20,40,.85)
    );
    border-color: rgba(255,255,255,.08);
}

.benefit-list article > span {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 2rem;

    border-radius: 50%;

    background:
        radial-gradient(circle at top,
        #ff4b63,
        #d61530 70%);

    color: white;
    font-size: 1rem;
    font-weight: 800;

    border: 4px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 8px rgba(239,35,60,.08),
        0 20px 40px rgba(239,35,60,.35);
}

.process-grid article > span {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    margin-bottom: 2rem;

    border-radius: 50%;

    background:
        radial-gradient(circle at top,
        #ff4b63,
        #d61530 70%);

    color: white;
    font-size: 1rem;
    font-weight: 800;

    border: 4px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 8px rgba(239,35,60,.08),
        0 20px 40px rgba(239,35,60,.35);
}

/* ------------------------------
   Accessible mobile menu
------------------------------ */

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
  user-select: none;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:hover,
.mobile-menu[open] summary {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.09);
}

.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(239,35,60,.75);
  outline-offset: 4px;
}

.hamburger {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu[open] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 30px));
  padding: 12px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(10,10,11,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 15px;
  color: #c9c9ce;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color .2s ease,
    background .2s ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.mobile-menu-panel a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(239,35,60,.28);
}

.mobile-menu-panel .mobile-phone {
  margin-top: 6px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background: rgba(255,255,255,.05);
}

/* Exact shared navbar responsive behaviour */
@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .nav a {
    padding-inline: 11px;
    font-size: .79rem;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--shell), calc(100% - 30px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: .94rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: .76rem;
  }
}


/* Final mobile navigation behaviour */
@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mobile-menu {
    grid-column: 2;
  }

  .menu-label {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .mobile-menu-panel {
    right: 0;
  }
}