:root {
  --bg: #091017;
  --bg-soft: #101923;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.11);
  --surface: #f2f3ef;
  --surface-soft: #e9ece7;
  --text: #f5f7f4;
  --text-dark: #10161b;
  --muted: rgba(245, 247, 244, 0.74);
  --muted-dark: #5f676e;
  --accent: #18a36f;
  --accent-strong: #0f7e54;
  --glow: rgba(24, 163, 111, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-xl: 0 34px 100px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 22px 56px rgba(0, 0, 0, 0.18);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(24, 163, 111, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 20% 55%, rgba(24, 163, 111, 0.06), transparent 22%),
    linear-gradient(180deg, #081018 0%, #0c151d 52%, #0c151d 100%);
}

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

a {
  color: inherit;
}

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

.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.page-glow-one {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -80px;
  background: rgba(24, 163, 111, 0.16);
}

.page-glow-two {
  width: 240px;
  height: 240px;
  top: 120px;
  right: -90px;
  background: rgba(255, 255, 255, 0.08);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.brand-wordmark-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.brand-wordmark,
.eyebrow,
.section-kicker,
.floating-label,
.proof-badge {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 40px rgba(24, 163, 111, 0.26);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.button-secondary-dark {
  background: rgba(255, 255, 255, 0.08);
}

.button-compact {
  min-height: 46px;
}

.brand-spotlight {
  padding: 18px 0 0;
}

.brand-spotlight-inner {
  display: flex;
  justify-content: center;
}

.brand-showcase {
  width: fit-content;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(24, 163, 111, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-showcase-mark {
  width: 118px;
  height: 118px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    0 0 0 10px rgba(24, 163, 111, 0.08);
}

.brand-showcase-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.22));
}

.hero {
  padding: 26px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: start;
}

.hero-copy {
  padding: 20px 0;
}

.eyebrow,
.section-kicker,
.floating-label,
.proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow {
  color: #d4dbd5;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

h1,
h2,
h3,
.brand-wordmark {
  font-family: "Sora", sans-serif;
}

h1,
h2 {
  margin: 18px 0 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 10ch;
}

.hero-lead,
.section-heading p,
.service-card p,
.proof-list li,
.proof-placeholder-card p,
.process-card p,
.final-copy p,
.qr-card p,
.quick-strip p {
  line-height: 1.7;
}

.hero-lead {
  margin-top: 20px;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  grid-column: 1 / -1;
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-proof article,
.quick-strip-grid article,
.service-card,
.process-card,
.proof-placeholder-card,
.qr-card {
  border-radius: var(--radius-md);
}

.hero-proof article {
  padding: 14px;
  min-height: 132px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-proof strong,
.quick-strip strong,
.service-card h3,
.process-card h3,
.proof-placeholder-card strong,
.qr-card strong {
  display: block;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.hero-visual {
  min-height: 640px;
  margin-top: 80px;
}

.hero-media-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.04);
}

.hero-media-card > img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 9, 12, 0.32) 100%),
    linear-gradient(135deg, rgba(24, 163, 111, 0.14), transparent 46%);
}

.hero-brand-card,
.hero-floating-card {
  position: absolute;
  left: 24px;
  z-index: 1;
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.hero-brand-card {
  top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(8, 12, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-brand-card img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-brand-card strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.hero-brand-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-floating-card {
  bottom: 80px;
  max-width: 280px;
  padding: 18px;
  background: rgba(8, 12, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-label,
.proof-badge,
.section-kicker {
  color: var(--muted-dark);
  background: rgba(16, 22, 27, 0.06);
}

.floating-label {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.hero-floating-card strong {
  display: block;
  margin-top: 10px;
  line-height: 1.4;
}

.hero-chip-row {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 1;
}

.hero-chip-row span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-chip-row span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-strip {
  padding-bottom: 76px;
}

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

.quick-strip-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-strip p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading-compact {
  max-width: 760px;
}

.section-kicker {
  color: var(--muted-dark);
  background: rgba(16, 22, 27, 0.06);
}

.section-heading h2,
.proof-copy h2,
.final-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  color: var(--muted-dark);
  margin-bottom: 0;
}

.section-services .section-heading p {
  color: var(--muted);
}

.section-services .section-kicker {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 246, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 48px rgba(3, 7, 11, 0.32);
  color: var(--text-dark);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(24, 163, 111, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 48%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 163, 111, 0.72), rgba(24, 163, 111, 0));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(3, 7, 11, 0.38);
  border-color: rgba(24, 163, 111, 0.24);
}

.service-card:hover,
.service-card:focus-within {
  color: white;
  background:
    radial-gradient(circle at top left, rgba(24, 163, 111, 0.28), transparent 34%),
    linear-gradient(160deg, #123127, #10181c);
  box-shadow: 0 28px 76px rgba(6, 12, 18, 0.46), 0 0 0 1px rgba(24, 163, 111, 0.18);
  border-color: rgba(115, 228, 180, 0.3);
}

.service-card p {
  color: var(--muted-dark);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.service-card h3,
.service-number {
  position: relative;
  z-index: 1;
}

.service-card:hover p,
.service-card:focus-within p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card-featured {
  color: var(--text-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 246, 0.96) 100%);
  box-shadow: 0 20px 48px rgba(3, 7, 11, 0.32);
}

.service-card-featured p {
  color: var(--muted-dark);
}

.service-number,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-weight: 800;
}

.service-number {
  margin-bottom: 18px;
  color: #2de09a;
  background: rgba(24, 163, 111, 0.12);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section-proof {
  background: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.proof-copy {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 246, 0.98) 100%);
  border: 1px solid rgba(16, 22, 27, 0.08);
  box-shadow: 0 22px 48px rgba(9, 13, 18, 0.08);
}

.proof-copy h2 {
  color: var(--text-dark);
  max-width: 10ch;
  line-height: 0.98;
}

.proof-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.proof-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-dark);
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38d49b, #18a36f);
  box-shadow: 0 0 0 5px rgba(56, 212, 155, 0.14);
}

.proof-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-self: start;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(9, 13, 18, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 246, 0.98) 100%);
  border: 1px solid rgba(16, 22, 27, 0.08);
}

.before-after-viewport {
  --comparison-position: 58%;
  position: relative;
  min-height: 440px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
}

.before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.before-after-image-before {
  filter: none;
}

.before-after-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.before-after-image-after {
  filter: none;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 0;
  transform: translateX(-1px);
  border-left: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 242, 0.96));
  box-shadow: 0 18px 40px rgba(9, 13, 18, 0.24);
  border: 1px solid rgba(16, 22, 27, 0.08);
}

.before-after-handle::before,
.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0f1418;
  border-right: 2px solid #0f1418;
}

.before-after-handle::before {
  left: 16px;
  transform: translateY(-50%) rotate(-135deg);
}

.before-after-handle::after {
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.before-after-label {
  position: absolute;
  top: 20px;
  z-index: 2;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(8, 12, 16, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-after-label-before {
  left: 20px;
}

.before-after-label-after {
  right: 20px;
}

.before-after-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(8, 12, 16, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

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

.before-after-caption {
  margin: 24px 0 0;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: white;
}

.proof-placeholder-card {
  padding: 22px;
  background: white;
  border: 1px dashed rgba(16, 22, 27, 0.12);
  box-shadow: 0 16px 36px rgba(9, 13, 18, 0.06);
  color: var(--text-dark);
  min-height: 168px;
}

.proof-placeholder-card p {
  color: var(--muted-dark);
  margin-bottom: 0;
}

.proof-small {
  background: linear-gradient(180deg, #f6f8f4 0%, white 100%);
}

.section-process {
  background: transparent;
}

.section-process .section-heading {
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 246, 0.98) 100%);
  border: 1px solid rgba(16, 22, 27, 0.08);
  box-shadow: 0 20px 44px rgba(9, 13, 18, 0.06);
}

.section-process .section-heading h2 {
  color: var(--text-dark);
  max-width: 13ch;
}

.section-process .section-heading p {
  margin-top: 16px;
  max-width: 54ch;
}

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

.process-card {
  padding: 24px;
  background: white;
  border: 1px solid rgba(16, 22, 27, 0.08);
  box-shadow: 0 18px 40px rgba(10, 14, 18, 0.08);
  color: var(--text-dark);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.process-card span {
  margin-bottom: 18px;
  color: #1cc687;
  background: rgba(24, 163, 111, 0.12);
}

.process-card p {
  color: var(--muted-dark);
  margin-bottom: 0;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-6px);
  color: white;
  background:
    radial-gradient(circle at top left, rgba(24, 163, 111, 0.26), transparent 34%),
    linear-gradient(160deg, #123127, #10181c);
  border-color: rgba(115, 228, 180, 0.3);
  box-shadow: 0 28px 70px rgba(3, 7, 11, 0.38), 0 0 0 1px rgba(24, 163, 111, 0.16);
}

.process-card:hover p,
.process-card:focus-within p {
  color: rgba(255, 255, 255, 0.78);
}

.process-card:hover span,
.process-card:focus-within span,
.service-card:hover .service-number,
.service-card:focus-within .service-number {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.final-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #10161b, #151d22);
  box-shadow: var(--shadow-xl);
}

.final-copy,
.final-side {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.final-copy {
  background: rgba(255, 255, 255, 0.04);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.final-copy p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
}

.final-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-points span {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email-link {
  color: #8cf0c7;
  text-decoration: none;
  text-underline-offset: 3px;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
  color: white;
  text-decoration: underline;
}

.final-side {
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: stretch;
}

.qr-card {
  width: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-card img {
  width: 138px;
  border-radius: 18px;
  background: white;
  padding: 10px;
}

.qr-card strong {
  margin-top: 20px;
}

.qr-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.contact-placeholder-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-placeholder-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-placeholder-card span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.contact-placeholder-card strong {
  display: block;
  margin-top: 10px;
  line-height: 1.45;
}

.contact-placeholder-card-wide {
  grid-column: 1 / -1;
}

.footer {
  padding: 18px 0 36px;
  background: transparent;
}

.footer-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(24, 163, 111, 0.12), transparent 32%),
    linear-gradient(180deg, #f2f4ef 0%, #ffffff 100%);
  color: var(--text-dark);
  box-shadow: 0 22px 64px rgba(5, 10, 15, 0.18);
}

.footer-brand,
.footer-brand-logo {
  display: block;
}

.footer-brand-logo {
  width: 168px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-description {
  max-width: 34ch;
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #24303a;
}

.footer-social-group {
  margin-top: 28px;
}

.footer-social-group strong,
.footer-contact-title {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10263a;
}

.footer-social-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-link {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 32px rgba(24, 163, 111, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(24, 163, 111, 0.3);
}

.footer-social-link svg,
.footer-contact-icon svg {
  width: 24px;
  height: 24px;
}

.footer-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-list {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.footer-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f2940;
  background: rgba(16, 38, 58, 0.08);
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: #10263a;
}

.footer-contact-item a,
.footer-contact-item span {
  display: block;
  color: #2b3f51;
  line-height: 1.55;
  text-decoration: none;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .proof-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .before-after-viewport {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(24, 163, 111, 0.12), transparent 28%),
      linear-gradient(180deg, #081018 0%, #0c151d 100%);
  }

  .quick-strip-grid,
  .service-grid,
  .proof-stage,
  .process-grid,
  .final-cta,
  .contact-placeholder-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    order: 3;
    padding-bottom: 4px;
  }

  .button-compact {
    width: 100%;
  }

  .footer-card {
    padding: 26px;
  }

  .footer-description {
    max-width: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .brand-wordmark-logo {
    width: 56px;
    height: 56px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .hero-visual,
  .hero-media-card > img {
    min-height: auto;
  }

  .hero-visual {
    margin-top: 0;
  }

  .hero-media-card {
    min-height: 540px;
  }

  .before-after-viewport {
    min-height: 320px;
  }

  .before-after-handle {
    width: 52px;
    height: 52px;
  }

  .before-after-label {
    top: 14px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .before-after-hint {
    bottom: 14px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-brand-card,
  .hero-floating-card,
  .hero-chip-row {
    left: 18px;
    right: 18px;
  }

  .hero-chip-row {
    bottom: 18px;
  }

  .hero-chip-row span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .proof-copy h2,
  .final-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
