@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --pinnex-deep-black: #070a0f;
  --pinnex-graphite: #111827;
  --pinnex-slate: #1f2937;
  --pinnex-neutral-700: #374151;
  --pinnex-neutral-600: #4b5563;
  --pinnex-neutral-500: #6b7280;
  --pinnex-neutral-300: #d1d5db;
  --pinnex-neutral-200: #e5e7eb;
  --pinnex-mist: #f3f4f6;
  --pinnex-neutral-50: #f9fafb;
  --pinnex-white: #ffffff;
  --pinnex-amber: #f59e0b;
  --pinnex-copy: 40rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --gutter: 1.25rem;
  --section-y: 4rem;
  --header-h: 4rem;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --glass: rgba(255, 255, 255, 0.94);
  --glass-text: #374151;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--pinnex-graphite);
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(245, 158, 11, 0.08), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--pinnex-deep-black);
  background-size: auto, 56px 56px, 56px 56px, auto;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--pinnex-amber);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  background: var(--pinnex-amber);
  color: var(--pinnex-deep-black);
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  padding: var(--section-y) 0;
  scroll-margin-top: calc(var(--header-h) + var(--space-4));
}

.section-light {
  background: var(--pinnex-white);
  color: var(--pinnex-graphite);
}

.section-mist {
  background: var(--pinnex-neutral-50);
  overflow: visible;
}

.section-break {
  background: var(--pinnex-deep-black);
  color: #fff;
  padding: var(--space-6) 0;
  text-align: center;
}

.section-break p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.statement {
  max-width: 38rem;
  margin-bottom: var(--space-5);
}

.problem-grid {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
  padding: 0;
  overflow: visible;
}

.problem-grid li,
.problem-item {
  list-style: none;
  margin: 0;
  position: relative;
  z-index: 1;
}

.problem-item:hover,
.problem-item:focus-within {
  z-index: 6;
}

.problem-grid > li:not(.problem-item),
.problem-item-btn {
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: var(--space-4) 1.125rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--pinnex-neutral-200);
  font: inherit;
  font-weight: 600;
  text-align: left;
  color: inherit;
}

.problem-item-btn {
  cursor: help;
}

.problem-tip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(34rem, calc(100vw - 2 * var(--gutter)));
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--glass);
  color: var(--glass-text);
  border: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.4s ease, filter 0.4s ease, visibility 0.35s;
}

.problem-tip::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 100%;
  border: 7px solid transparent;
  border-top-color: var(--glass);
}

.problem-item:hover .problem-tip,
.problem-item:focus-within .problem-tip {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.problem-copy {
  margin-top: var(--space-5);
}

.faq-page {
  background: #f3f4f6;
}

.faq-hero {
  padding: var(--space-5) 0 var(--space-4);
}

.faq-page .eyebrow {
  color: var(--pinnex-amber);
}

.faq-page .h1,
.preview-page .h1 {
  color: var(--pinnex-graphite);
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.faq-list {
  display: grid;
  gap: var(--space-3);
  padding-bottom: var(--section-y);
}

.faq-cta {
  margin-top: var(--space-5);
}

.legal-doc {
  max-width: var(--pinnex-copy);
  padding-bottom: var(--section-y);
  color: var(--pinnex-graphite);
}

.legal-doc h2,
.legal-doc h3 {
  font-size: 1.25rem;
  margin: var(--space-5) 0 var(--space-3);
}

.legal-doc p,
.legal-doc ul {
  margin: 0 0 var(--space-3);
  line-height: 1.65;
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.faq-stack {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.eyebrow.muted-kicker {
  color: var(--pinnex-neutral-600);
}

.offer-price-wrap {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.offer-note {
  margin-top: var(--space-5);
  color: var(--pinnex-neutral-600);
}

.page-offer .h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
}

.page-offer .section {
  padding: 3.5rem 0;
}

.page-offer .crumbs + .hero {
  padding-bottom: var(--space-7);
}

.price-chip {
  display: inline-flex;
  margin: var(--space-4) 0 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--pinnex-amber);
  font-size: 0.84rem;
  font-weight: 700;
}

.fact-strip {
  display: grid;
  gap: var(--space-4);
}

.fact {
  background: #fff;
  border: 1px solid var(--pinnex-neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
}

.fact strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.fact p {
  margin: 0;
  color: var(--pinnex-neutral-600);
}

.sales-split,
.offer-board {
  display: grid;
  gap: var(--space-6);
}

.not-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.not-chips li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--pinnex-neutral-200);
  font-size: 0.84rem;
  font-weight: 600;
}

.section-graphite .fact {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.section-graphite .fact p {
  color: rgba(255, 255, 255, 0.68);
}

.section-soft {
  background: var(--pinnex-mist);
}

.section-dark {
  background: var(--pinnex-deep-black);
  color: var(--pinnex-white);
}

.section-graphite {
  background: var(--pinnex-graphite);
  color: var(--pinnex-white);
}

.section-qr {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 360px at 88% -10%, rgba(245, 158, 11, 0.16), transparent 58%),
    radial-gradient(640px 320px at 8% 110%, rgba(17, 24, 39, 0.08), transparent 55%),
    linear-gradient(165deg, #d8dee6 0%, #f4f6f8 46%, #cfd6df 100%);
  color: var(--pinnex-graphite);
}

.qr-field {
  position: absolute;
  inset: -24px;
}

.qr-float {
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  animation: qr-appear 11s ease-in-out infinite;
  will-change: transform, opacity;
  background: url("../img/pinnex-mark.svg") center / contain no-repeat;
}

.qr-float:hover,
.qr-float:focus,
.qr-float:focus-visible {
  pointer-events: none !important;
}

.qr-float.q1 { width: 200px; height: 200px; left: 1%; top: 12%; animation-duration: 13s; }
.qr-float.q2 { width: 96px; height: 96px; left: 26%; bottom: 10%; animation-duration: 10s; animation-delay: -4s; }
.qr-float.q3 { width: 156px; height: 156px; right: 3%; top: 10%; animation-duration: 14s; animation-delay: -8s; }
.qr-float.q4 { width: 72px; height: 72px; right: 28%; bottom: 14%; animation-duration: 9s; animation-delay: -2s; }
.qr-float.q5 { width: 176px; height: 176px; left: 42%; top: -8%; animation-duration: 16s; animation-delay: -11s; }
.qr-float.q6 { width: 112px; height: 112px; right: 1%; bottom: 0; animation-duration: 12s; animation-delay: -6s; }

@keyframes qr-appear {
  0%, 18%, 82%, 100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 18px, 0) scale(0.92);
  }
  32%, 48% {
    opacity: 0.55;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(8px, -6px, 0) scale(1);
  }
  40% {
    opacity: 0.7;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(10px, -10px, 0) scale(1.02);
  }
}

.section-qr .value-grid {
  position: relative;
  z-index: 1;
}

.section-qr .value-grid .tile {
  background: #fff;
  border: 1px solid #9aa3af;
  color: var(--pinnex-graphite);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
}

.h1 {
  font-size: clamp(2.625rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-4);
}

.h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  margin: var(--space-4) 0 0;
}

.copy {
  max-width: var(--pinnex-copy);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pinnex-amber);
}

.muted {
  color: var(--pinnex-neutral-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--space-3) 1.25rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--pinnex-amber);
  color: var(--pinnex-deep-black);
  border-color: var(--pinnex-amber);
}

.btn-primary:hover {
  background: #d97706;
}

.btn-primary:focus-visible {
  outline: 2px solid #fff;
  box-shadow: 0 0 0 5px #070a0f;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--pinnex-graphite);
  border-color: var(--pinnex-graphite);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #070a0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

body.nav-open {
  overflow: hidden;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-4);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 118px;
  height: auto;
}

.logo-combo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-combo .logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo-combo .logo-word {
  width: 96px;
}

.nav-desktop {
  display: none;
  position: static;
  transform: none;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15rem 0.85rem;
}

.nav-desktop a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: #fff;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
  flex-shrink: 0;
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

.header-actions a:not(.btn),
.login-trigger {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.login-wrap {
  position: relative;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.2rem;
}

.lang a[aria-current="page"] {
  color: #fff;
}

.lang span {
  color: rgba(255, 255, 255, 0.25);
}

.menu-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-btn-bars,
.menu-btn-bars::before,
.menu-btn-bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.menu-btn-bars::before,
.menu-btn-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn-bars::before {
  top: -6px;
}

.menu-btn-bars::after {
  top: 6px;
}

.site-header.is-open .menu-btn-bars {
  background: transparent;
}

.site-header.is-open .menu-btn-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .menu-btn-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: var(--space-2) 0 var(--space-5);
}

.site-header.is-open .mobile-nav {
  display: grid;
  gap: 0.125rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a.btn {
  margin-top: var(--space-3);
  border-bottom: 0;
  justify-content: center;
  color: var(--pinnex-deep-black);
}

.hero {
  position: relative;
  padding: var(--space-8) 0 var(--section-y);
  overflow: visible;
}

.crumbs + .hero,
.crumbs + .faq-hero,
.crumbs + .section {
  padding-top: var(--space-4);
}

.hero-grid {
  display: grid;
  gap: var(--space-7);
}

.wordmark-bg {
  position: absolute;
  inset: 1.5rem 0 auto;
  width: min(720px, 92%);
  aspect-ratio: 313 / 67;
  margin: 0 auto;
  opacity: 0.04;
  pointer-events: none;
  background: url("../img/wordmark-modular.svg") center / contain no-repeat;
}

.badge {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero h1,
.hero .lead,
.hero .trust {
  color: #fff;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0;
  margin: var(--space-5) 0 var(--space-6);
  list-style: none;
  overflow: visible;
}

.chip-wrap {
  position: relative;
  z-index: 1;
}

.chip-wrap:hover,
.chip-wrap:focus-within {
  z-index: 6;
}

.chips .chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: help;
}

.chip-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 20;
  width: 240px;
  max-width: min(240px, 80vw);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--glass);
  color: var(--glass-text);
  border: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.4s ease, filter 0.4s ease, visibility 0.35s;
}

.chip-tip::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 100%;
  border: 7px solid transparent;
  border-bottom-color: var(--glass);
}

.chip-wrap:hover .chip-tip,
.chip-wrap:focus-within .chip-tip {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.login-cloud {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 70;
  width: min(400px, calc(100vw - 2rem));
  padding: 1.4rem 1.45rem 1.3rem;
  border-radius: 22px;
  background: #111827;
  color: #fff;
  box-shadow: 0 22px 50px rgba(7, 10, 15, 0.45);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.5s ease,
    filter 0.5s ease,
    visibility 0.45s;
}

.login-cloud::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 100%;
  border: 8px solid transparent;
  border-bottom-color: #111827;
}

.login-cloud.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.login-cloud .eyebrow {
  margin-bottom: 0.35rem;
}

.login-cloud h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.login-cloud > p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.login-cloud label {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.65rem;
}

.login-cloud input {
  background: #1f2937;
  border-color: #374151;
  color: #fff;
}

.login-cloud .btn {
  width: 100%;
  margin-top: 1rem;
}

.login-cloud .login-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
}

.login-cloud .login-note a,
.login-cloud .login-note button {
  color: var(--pinnex-amber);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav .login-trigger {
  display: flex;
  width: 100%;
  min-height: 48px;
  justify-content: flex-start;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 1023px) {
  .login-cloud {
    position: fixed;
    top: calc(var(--header-h) + 0.75rem);
    right: 1.25rem;
  }

  .login-cloud::after {
    display: none;
  }
}

.hero-visual {
  position: relative;
}

.phone {
  width: min(272px, 100%);
  margin: 0 auto;
  border-radius: 32px;
  background: linear-gradient(180deg, #141a22, #070a0f);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 0.75rem;
}

.phone-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.phone-qr {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
}

.amber-line {
  color: var(--pinnex-amber);
  font-weight: 700;
}

.phone-screen {
  overflow: hidden;
  border-radius: 24px;
  background: #f9fafb;
  color: #111827;
}

.phone-top {
  background: #111827;
  color: #fff;
  padding: 1rem 1rem 1.25rem;
}

.phone-top small {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-size: 0.65rem;
}

.phone-actions {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem;
}

.phone-actions span {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 16px;
  padding: 0 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.carriers-mobile {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.carriers-desktop {
  display: none;
}

.card,
.sticker {
  border-radius: 22px;
  padding: 1rem;
}

.card {
  width: 168px;
  background: linear-gradient(180deg, #1a2230, #111827);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.sticker {
  width: 156px;
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #d1d5db;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.card-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.card-kicker.dark {
  color: #6b7280;
}

.card.lg,
.sticker.lg {
  width: 220px;
}

.sticker.lg {
  width: 200px;
}

.qr-frame {
  position: relative;
  margin: 0.7rem 0;
  padding: 0.55rem;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.qr-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-frame.invert {
  background: #111111;
}

.demo-tag {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: #111827;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 5px;
  border-radius: 4px;
}

.qr-frame.invert .demo-tag {
  background: #fff;
  color: #111827;
}

.step strong {
  display: block;
  margin-bottom: 0.4rem;
}

.scan-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 2px;
  background: var(--pinnex-amber);
  animation: scan 3.2s ease-in-out infinite;
}

.steps {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 var(--space-5);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.step-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.value-grid,
.four,
.two,
.three,
.steps,
.pricing,
.actions {
  display: grid;
  gap: var(--space-4);
}

.value-grid {
  grid-template-columns: 1fr;
}

.tile,
.step,
.price,
.faq-item,
.form-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--pinnex-neutral-200);
  background: #fff;
  padding: var(--space-5);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tile:hover,
.step:hover,
.price:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.value-grid .tile {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.list {
  padding-left: 1.1rem;
}

.section-light {
  overflow: visible;
}

.action-grid {
  display: grid;
  gap: var(--space-3);
  overflow: visible;
  margin: var(--space-6) 0 var(--space-5);
}

.action-wrap {
  position: relative;
  z-index: 1;
}

.action-wrap:hover,
.action-wrap:focus-within {
  z-index: 5;
}

.action {
  display: block;
  min-height: 56px;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--pinnex-neutral-200);
  border-radius: 20px;
  background: #fff;
  color: var(--pinnex-graphite);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.action-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 20;
  width: 260px;
  max-width: 80vw;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--glass);
  color: var(--glass-text);
  border: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, 14px);
  transition:
    opacity 0.45s ease,
    transform 0.5s ease,
    filter 0.5s ease,
    visibility 0.45s;
}

.action-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top-color: var(--glass);
}

.action-wrap:hover .action-tip,
.action-wrap:focus-within .action-tip {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -6px);
}

.tabs {
  display: inline-flex;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  margin: 1.25rem 0;
}

.tabs button {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  border-radius: 12px;
  padding: 0 1.1rem;
  cursor: pointer;
  font-family: inherit;
}

.tabs button[aria-selected="true"] {
  background: var(--pinnex-amber);
  color: #070a0f;
}

.showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.price.featured {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.price .h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 var(--space-3);
}

.price.featured .eyebrow {
  color: var(--pinnex-amber);
}

.price.featured .offer-note {
  color: rgba(255, 255, 255, 0.55);
}

.faq-item h2,
.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: inherit;
}

.faq-item [hidden] {
  display: none;
}

.form-card {
  color: #111827;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin: var(--space-4) 0 var(--space-2);
}

.form-card label:first-of-type,
form > label:first-of-type {
  margin-top: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  font: inherit;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.field-error {
  color: #b91c1c;
  font-size: 0.85rem;
  margin: 0.3rem 0 0;
}

.alert {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
}

.crumbs {
  padding: var(--space-5) 0 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.crumbs a {
  color: #6b7280;
  text-decoration: none;
}

.crumbs a:hover {
  color: #111827;
}

body:not(.faq-page):not(.preview-page) .crumbs,
body:not(.faq-page):not(.preview-page) .crumbs a {
  color: rgba(255, 255, 255, 0.48);
}

body:not(.faq-page):not(.preview-page) .crumbs a:hover {
  color: #fff;
}

.geo-line {
  margin-top: var(--space-2);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.site-footer {
  background: #070a0f;
  color: #fff;
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

.footer-brand p {
  margin: var(--space-4) 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-tag {
  color: var(--pinnex-amber) !important;
  font-weight: 600;
}

.footer-heading {
  margin: 0 0 var(--space-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer a:not(.btn),
.site-footer .login-trigger {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
}

.site-footer a:not(.btn):hover {
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-meta {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.875rem;
}

.layers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.layers span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.layers i {
  color: var(--pinnex-amber);
  font-style: normal;
}

.story p + p,
.tile p + ul {
  margin-top: 0.75rem;
}

.price ul {
  margin: 0.85rem 0 1.1rem;
  padding-left: 1.1rem;
}

.demo-pin {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  :root {
    --gutter: 2rem;
    --section-y: 5rem;
  }

  .value-grid,
  .two,
  .steps,
  .actions,
  .action-grid,
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .problem-grid .problem-item:nth-child(even) .problem-tip {
    left: auto;
    right: 0;
  }

  .problem-grid .problem-item:nth-child(even) .problem-tip::after {
    left: auto;
    right: 22px;
  }

  .four {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .lead-grid,
  .footer-grid,
  .offer-price-wrap,
  .sales-split,
  .offer-board {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .fact-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-offer .section {
    padding: 4.25rem 0;
  }

  .hero-grid {
    align-items: center;
  }

  .card,
  .sticker {
    width: 200px;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 2.5rem;
    --section-y: 5.5rem;
    --header-h: 4.25rem;
  }

  .nav-desktop,
  .header-actions {
    display: flex;
  }

  .menu-btn,
  .site-header.is-open .mobile-nav,
  .mobile-nav {
    display: none;
  }

  .carriers-mobile {
    display: none;
  }

  .carriers-desktop {
    display: block;
  }

  .card.float-a {
    position: absolute;
    left: -2.5rem;
    top: 2.5rem;
    width: 200px;
  }

  .sticker.float-b {
    position: absolute;
    right: -1.5rem;
    bottom: 1rem;
    width: 180px;
  }

  .four,
  .three,
  .pricing {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-cta .btn,
  .mobile-nav .btn {
    width: auto;
  }

  .header-actions .btn {
    min-height: 48px;
    padding: 0.65rem 1.15rem;
    font-size: 0.875rem;
    border-radius: 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .portal-link {
    display: none;
  }

  .nav-desktop {
    gap: 0.1rem 0.7rem;
  }

  .nav-desktop a {
    font-size: 0.78rem;
  }
}

@media (max-width: 639px) {
  .hero-cta .btn,
  .mobile-nav .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scan-line,
  .tile,
  .step,
  .price,
  .action-tip,
  .qr-float {
    animation: none !important;
    transition: none;
    transform: none;
    filter: none;
  }

  .qr-float {
    opacity: 0.55;
    visibility: visible;
    transform: none;
  }

  .chip-wrap:hover .chip-tip,
  .chip-wrap:focus-within .chip-tip,
  .action-wrap:hover .action-tip,
  .action-wrap:focus-within .action-tip,
  .secure-item:hover .secure-tip,
  .secure-item:focus-within .secure-tip,
  .problem-item:hover .problem-tip,
  .problem-item:focus-within .problem-tip {
    opacity: 1;
    visibility: visible;
    filter: none;
  }
}

@keyframes scan {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(70px);
  }
}

h1, h2, h3, .h1, .h2, .h3, p, li {
  overflow-wrap: break-word;
  hyphens: auto;
}

.portal-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.portal-link:hover {
  color: #fff;
}

.mobile-nav .btn,
.header-actions .btn {
  min-height: 48px;
}

.surface-grid,
.include-grid {
  display: grid;
  gap: 1rem;
}

.surface-card,
.portal-card,
.preview-shell,
.page-hero {
  background: #fff;
  border: 1px solid var(--pinnex-neutral-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.surface-card h3,
.portal-card h3 {
  margin-top: 0;
}

.section-dark .tile,
.section-graphite .tile {
  color: #111827;
}

.demo-flag,
.section-dark .demo-flag,
.section-graphite .demo-flag,
.tile .demo-flag,
.preview-shell .demo-flag,
p.demo-flag {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #fbbf24 !important;
  color: #111827 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.portal-table-wrap {
  overflow-x: auto;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.portal-table th,
.portal-table td {
  text-align: left;
  padding: 0.7rem 0.65rem;
  border-bottom: 1px solid var(--pinnex-neutral-200);
  vertical-align: top;
}

.portal-table th {
  color: var(--pinnex-neutral-600);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 700;
  font-size: 0.78rem;
}

.teaser-panel {
  display: grid;
  gap: 1.25rem;
}

.not-list,
.check-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1rem 0;
}

.choice input {
  width: 1.2rem;
  min-height: 1.2rem;
  margin-top: 0.2rem;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
}

.form-fallback {
  margin-top: 0.85rem;
}

.preview-page {
  background: var(--pinnex-neutral-50);
  color: var(--pinnex-graphite);
}

.preview-disclose {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #111827;
}

.preview-shell {
  background: #111827;
  color: #fff;
  padding: 1.25rem;
}

.preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.preview-step {
  background: #1f2937;
  border-radius: 16px;
  padding: 1.15rem;
}

.preview-step h2,
.preview-step h3 {
  margin-top: 0;
}

.preview-step[hidden] {
  display: none !important;
}

.preview-actions,
#action-hub {
  display: grid;
  gap: 0.65rem;
}

.preview-action,
.preview-step button.btn {
  min-height: 48px;
}

.preview-action {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.preview-action:hover,
.preview-action:focus-visible {
  border-color: var(--pinnex-amber);
}

.preview-result {
  display: grid;
  gap: 1rem;
}

.preview-result article {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1rem;
}

.page-404 {
  min-height: 100vh;
  background: var(--pinnex-deep-black);
  color: #fff;
}

.page-404 main {
  padding: var(--space-8) 0 var(--section-y);
}

.page-404 .two {
  margin-top: var(--space-6);
}

.page-404 .two a.btn {
  margin-top: var(--space-3);
}

.section-secure {
  position: relative;
  isolation: isolate;
  overflow: visible;
  color: #fff;
  min-height: 32rem;
  padding: var(--section-y) 0 calc(var(--section-y) + var(--space-6));
  background: #070a0f;
}

.section-secure::before {
  content: "";
  position: absolute;
  inset: 28% -6% -10% -6%;
  z-index: -2;
  background: url("../img/pinnex_bg_slider_1.jpg") 72% 42% / cover no-repeat;
  filter: blur(7px) saturate(0.92);
  transform: scale(1.08);
}

.section-secure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #070a0f 0%, rgba(7, 10, 15, 0.9) 36%, rgba(7, 10, 15, 0.38) 70%, rgba(7, 10, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 10, 15, 0.72) 0%, rgba(7, 10, 15, 0.2) 55%, rgba(7, 10, 15, 0.35) 100%);
}

.secure-panel {
  position: relative;
  max-width: 40rem;
}

.secure-panel .eyebrow {
  color: #f59e0b;
}

.secure-panel .copy {
  color: rgba(255, 255, 255, 0.86);
}

.secure-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
  padding: 0;
  overflow: visible;
}

.secure-item {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
}

.secure-item:hover,
.secure-item:focus-within {
  z-index: 8;
}

.secure-item-btn {
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: help;
}

.secure-tip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(34rem, 92vw);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--glass);
  color: var(--glass-text);
  border: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.4s ease, filter 0.4s ease, visibility 0.35s;
}

.secure-tip::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 100%;
  border: 7px solid transparent;
  border-top-color: var(--glass);
}

.secure-item:hover .secure-tip,
.secure-item:focus-within .secure-tip {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 639px) {
  .section-secure {
    min-height: 26rem;
    padding: var(--section-y) 0 calc(var(--section-y) + var(--space-5));
  }

  .section-secure::before {
    inset: 38% -12% -8% -12%;
    background-position: 78% 38%;
    filter: blur(5px) saturate(0.95);
  }
}

@media (min-width: 768px) {
  .section-secure {
    min-height: 38rem;
    padding: var(--section-y) 0 calc(var(--section-y) + var(--space-8));
  }

  .section-secure::before {
    inset: 22% -4% -12% -4%;
    background-position: 70% 40%;
  }

  .secure-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .section-secure {
    min-height: 44rem;
    padding: var(--section-y) 0 calc(var(--section-y) + 5.5rem);
  }

  .section-secure::before {
    inset: 16% -3% -14% 18%;
    background-position: 64% 38%;
    filter: blur(8px) saturate(0.9);
  }
}

@media (min-width: 1440px) {
  .section-secure {
    min-height: 48rem;
  }

  .section-secure::before {
    inset: 14% -2% -16% 22%;
    filter: blur(9px);
  }
}

@media (min-width: 768px) {
  .surface-grid,
  .teaser-panel,
  .preview-result,
  .include-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qr-float {
    opacity: 0.28 !important;
    visibility: visible;
    pointer-events: none !important;
    animation: none !important;
  }

  .section-secure::before {
    filter: blur(3px) saturate(0.95);
    transform: none;
  }

  .secure-tip,
  .problem-tip {
    filter: none;
    transition: none;
  }
}

.section-cta {
  margin-top: var(--space-6);
}

.form-next {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.form-fallback {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1.25rem 0 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
}

.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta-mail {
  width: 100%;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-cta-mail a {
  color: #fff;
}

.sticky-cta {
  display: none;
}

@media (max-width: 1023px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
    background: #070a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sticky-cta.is-hidden,
  body.nav-open .sticky-cta {
    display: none;
  }

  .sticky-cta .btn {
    flex: 1 1 auto;
    max-width: 22rem;
  }

  .sticky-cta-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }

  body:has(.sticky-cta) {
    padding-bottom: 5.75rem;
  }
}
