/* ============================================================
   landing.css - VesselHQ Corporate Landing (v3)
   Theme: Deep Navy / Ice Blue / Precision Maritime
   Font: DM Sans (body) + Sora (headings)
============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --navy-900: #050d1a;
  --navy-800: #0a1628;
  --navy-700: #0f2040;
  --navy-600: #162d58;
  --section-900: #06111e;
  --section-800: #071321;
  --section-700: #081628;
  --section-600: #091a2d;
  --ice: #5bb8ff;
  --ice-dim: #2f7ab8;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.70);
  --white-40: rgba(255, 255, 255, 0.40);
  --white-10: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.10);
  --section-divider: rgba(91, 184, 255, 0.12);
  --section-divider-soft: rgba(255, 255, 255, 0.04);
  --card-bg: rgba(255, 255, 255, 0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(91, 184, 255, 0.18);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET / BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ============================================================
   NAVBAR - STICKY DARK GLASS
============================================================ */
.public-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.public-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.public-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.public-navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.public-navbar-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.public-navbar-link:hover {
  color: var(--white);
  background: var(--white-10);
}

.public-btn {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.public-btn:hover {
  color: var(--white);
  border-color: var(--white-40);
  background: var(--white-10);
}

.public-navbar-btn {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--ice);
  color: var(--navy-900) !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: -0.2px;
}

.public-navbar-btn:hover {
  background: #7ecfff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91, 184, 255, 0.35);
}

/* Mobile toggle */
.public-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .public-navbar-toggle {
    display: block;
  }

  .public-navbar-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-800);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 20px;
    display: none;
    border-bottom: 1px solid var(--border);
  }

  .public-navbar-links.active {
    display: flex;
  }

  .public-navbar-btn,
  .public-btn {
    text-align: center;
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
.landing-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 160px;
  overflow: hidden;
  background: var(--navy-900);
}

/* Radial glow backdrop */
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(91, 184, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(47, 122, 184, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid texture overlay */
.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.landing-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin: 0 auto;
}

.hero-dashboard-preview {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 56px 24px 88px;
  background: linear-gradient(180deg, var(--section-700) 0%, var(--section-600) 100%);
  border-top: 1px solid var(--section-divider-soft);
  border-bottom: 1px solid var(--section-divider);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.hero-dashboard-preview__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-dashboard-preview__device {
  margin: 0 auto;
}

.hero-dashboard-preview__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-dashboard-preview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 184, 255, 0.14) 0%, transparent 62%),
    linear-gradient(180deg, rgba(8, 21, 40, 0) 0%, rgba(10, 22, 40, 0.92) 100%);
  pointer-events: none;
}


/* Ocean waves */
.ocean-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 306px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ocean-waves::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: #081425;
  pointer-events: none;
}

.wave-layer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-repeat: repeat-x;
}

.wave1 {
  height: 187px;
  opacity: 0.11;
  background-size: 1200px 187px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 C200 25, 400 130, 600 80 C800 25, 1000 130, 1200 80 V140 H0 Z' fill='%235bb8ff'/%3E%3C/svg%3E");
  animation: waveX1 24s linear infinite, waveFloat1 9s ease-in-out infinite;
  will-change: transform;
}

.wave2 {
  height: 140px;
  opacity: 0.075;
  background-size: 900px 140px;
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='105' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 58 C150 12, 300 100, 450 58 C600 12, 750 100, 900 58 V105 H0 Z' fill='%235bb8ff'/%3E%3C/svg%3E");
  animation: waveX2 16s linear infinite, waveFloat2 7s ease-in-out infinite;
  animation-delay: 0s, -3s;
  will-change: transform;
}

.wave3 {
  height: 93px;
  opacity: 0.06;
  background-size: 600px 93px;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 C100 8, 200 65, 300 40 C400 8, 500 65, 600 40 V70 H0 Z' fill='%235bb8ff'/%3E%3C/svg%3E");
  animation: waveX3 10s linear infinite, waveFloat3 5s ease-in-out infinite;
  animation-delay: 0s, -1.5s;
  will-change: transform;
}

@keyframes waveX1 {
  to {
    background-position-x: 1200px;
  }
}

@keyframes waveX2 {
  to {
    background-position-x: -900px;
  }
}

/* direzione opposta */
@keyframes waveX3 {
  to {
    background-position-x: 600px;
  }
}

@keyframes waveFloat1 {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes waveFloat2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes waveFloat3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Hero eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(91, 184, 255, 0.10);
  border: 1px solid rgba(91, 184, 255, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ice);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: heroFadeUp 0.7s ease both;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Hero title */
.landing-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
  animation: heroFadeUp 0.7s ease 0.1s both;
}

.highlight {
  background: linear-gradient(135deg, var(--ice) 0%, #9ee0ff 60%, var(--ice) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto 14px;
  line-height: 1.65;
  animation: heroFadeUp 0.7s ease 0.2s both;
}

.landing-trust {
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 0;
  animation: heroFadeUp 0.7s ease 0.3s both;
}

/* Hero actions */
.landing-actions {
  animation: heroFadeUp 0.7s ease 0.4s both;
}

.hero-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.hero-form-wrapper .form-control {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.hero-form-wrapper .form-control::placeholder {
  color: var(--white-40);
}

.hero-form-wrapper .form-control:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(91, 184, 255, 0.15);
  background: rgba(255, 255, 255, 0.09);
}

/* Primary CTA */
.landing-btn-primary {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--ice);
  color: var(--navy-900) !important;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
}

.landing-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.landing-btn-primary:hover {
  background: #7ecfff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 184, 255, 0.40);
}

.landing-btn-primary:hover::after {
  transform: translateX(100%);
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-40);
  font-size: 13px;
  margin: 16px 0;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Google btn */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white-70);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: var(--white-40);
}

.google-btn img {
  width: 18px;
  height: 18px;
}

.hero-fine-print {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 14px;
  text-align: center;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SOCIAL PROOF BAR
============================================================ */
.social-proof-bar {
  position: relative;
  padding: 18px 24px;
  background:
    linear-gradient(180deg, rgba(8, 22, 40, 0.94) 0%, rgba(8, 22, 40, 0.98) 100%);
  border-top: 1px solid var(--section-divider-soft);
  border-bottom: 1px solid var(--section-divider);
  overflow: hidden;
  isolation: isolate;
}

.social-proof-bar::before,
.social-proof-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 84px;
  pointer-events: none;
}

.social-proof-bar::before {
  top: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(91, 184, 255, 0.07) 0%, transparent 58%),
    linear-gradient(180deg, rgba(8, 22, 40, 0.68) 0%, rgba(8, 22, 40, 0) 100%);
}

.social-proof-bar::after {
  bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 184, 255, 0.07) 0%, transparent 58%),
    linear-gradient(180deg, rgba(8, 22, 40, 0) 0%, rgba(8, 22, 40, 0.72) 100%);
}

.social-proof-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white-40);
}

.social-proof-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.social-proof-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ============================================================
   DIGITAL CREW ID SECTION
============================================================ */
.digital-id-section {
  position: relative;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 12% 22%, rgba(91, 184, 255, 0.09) 0%, transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(47, 122, 184, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, var(--section-700) 0%, var(--section-800) 52%, var(--section-900) 100%);
  border-top: 1px solid var(--section-divider-soft);
  border-bottom: 1px solid var(--section-divider);
  overflow: hidden;
  isolation: isolate;
}

.digital-id-section::before,
.digital-id-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 110px;
  pointer-events: none;
}

.digital-id-section::before {
  top: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(91, 184, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 22, 40, 0.76) 0%, rgba(8, 22, 40, 0) 100%);
}

.digital-id-section::after {
  bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 184, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 17, 30, 0) 0%, rgba(6, 17, 30, 0.72) 100%);
}

.digital-id-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px) minmax(240px, 320px);
  gap: 40px;
  align-items: center;
}

.digital-id-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.digital-id-subtitle {
  font-size: 16px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 28px;
}

.digital-id-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.digital-id-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white-70);
}

.digital-id-list li i {
  color: var(--ice);
  font-size: 18px;
  flex-shrink: 0;
}

.digital-id-wallets {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.wallet-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-label {
  font-size: 12px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wallet-icon {
  height: 32px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.wallet-icon:hover {
  opacity: 1;
}

.crew-access-link {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
  transition: all var(--transition);
}

.crew-access-link:hover {
  border-color: var(--ice);
  color: var(--ice);
  background: rgba(91, 184, 255, 0.06);
}

/* QR Card */
.digital-id-showcase {
  display: flex;
  justify-content: center;
}

.digital-id-browser {
  width: min(100%, 460px);
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow:
    0 40px 90px rgba(1, 10, 25, 0.38),
    0 12px 28px rgba(15, 23, 42, 0.14);
}

.digital-id-browser__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f6f8fb;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.digital-id-browser__traffic-lights {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.digital-id-browser__traffic-lights span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.digital-id-browser__traffic-lights span:first-child {
  background: #ff6b7f;
}

.digital-id-browser__traffic-lights span:nth-child(2) {
  background: #f6c96d;
}

.digital-id-browser__traffic-lights span:nth-child(3) {
  background: #58d89c;
}

.digital-id-browser__address {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.digital-id-browser__viewport {
  height: 760px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #e2ebf5;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 184, 255, 0.45) rgba(148, 163, 184, 0.12);
}

.digital-id-browser__viewport::-webkit-scrollbar {
  width: 10px;
}

.digital-id-browser__viewport::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.12);
}

.digital-id-browser__viewport::-webkit-scrollbar-thumb {
  background: rgba(91, 184, 255, 0.45);
  border-radius: 999px;
}

.digital-id-browser__stack {
  display: flex;
  flex-direction: column;
}

.digital-id-browser__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.digital-id-visual {
  display: flex;
  justify-content: center;
}

.digital-id-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}

.digital-id-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(91, 184, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.digital-id-card img {
  border-radius: 10px;
  width: 180px;
  height: 180px;
  filter: invert(1);
  opacity: 0.9;
}

.qr-label {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .digital-id-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .digital-id-showcase {
    justify-content: flex-start;
  }

  .digital-id-visual {
    justify-content: center;
  }

  .digital-id-browser {
    width: min(100%, 520px);
  }
}

/* ============================================================
   WHY SECTION
============================================================ */
.why-vms {
  position: relative;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 18% 16%, rgba(91, 184, 255, 0.08) 0%, transparent 22%),
    radial-gradient(circle at 82% 84%, rgba(91, 184, 255, 0.05) 0%, transparent 26%),
    linear-gradient(180deg, var(--section-800) 0%, #07111f 50%, var(--navy-900) 100%);
  border-top: 1px solid var(--section-divider-soft);
  border-bottom: 1px solid var(--section-divider);
  overflow: hidden;
  isolation: isolate;
}

.why-vms::before,
.why-vms::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 108px;
  pointer-events: none;
}

.why-vms::before {
  top: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(91, 184, 255, 0.08) 0%, transparent 62%),
    linear-gradient(180deg, rgba(7, 19, 33, 0.74) 0%, rgba(7, 19, 33, 0) 100%);
}

.why-vms::after {
  bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 184, 255, 0.06) 0%, transparent 62%),
    linear-gradient(180deg, rgba(7, 17, 31, 0) 0%, rgba(7, 17, 31, 0.68) 100%);
}

.why-vms-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
  opacity: 0.7;
}

.why-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
  color: var(--white);
  margin-bottom: 14px;
}

.why-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 184, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 184, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(91, 184, 255, 0.10);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  font-size: 26px;
  color: var(--ice);
  margin-bottom: 14px;
  display: block;
  transition: transform var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card-title {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card-text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.65;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-alt {
  position: relative;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(91, 184, 255, 0.10) 0%, transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(91, 184, 255, 0.07) 0%, transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(91, 184, 255, 0.12) 0%, transparent 34%),
    linear-gradient(180deg, var(--section-700) 0%, var(--section-800) 50%, var(--section-900) 100%);
  border-top: 1px solid var(--section-divider-soft);
  border-bottom: 1px solid var(--section-divider);
  overflow: hidden;
  isolation: isolate;
}

.features-alt::before,
.features-alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 112px;
  pointer-events: none;
}

.features-alt::before {
  top: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(91, 184, 255, 0.08) 0%, transparent 62%),
    linear-gradient(180deg, rgba(6, 17, 30, 0.66) 0%, rgba(6, 17, 30, 0) 100%);
}

.features-alt::after {
  bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 184, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(7, 19, 33, 0) 0%, rgba(6, 17, 30, 0.74) 100%);
}

.features-alt-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.features-alt-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
  color: var(--white);
  margin-bottom: 14px;
}

.features-alt-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.features-alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.features-alt-card {
  --feature-accent: rgba(91, 184, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 22, 40, 0.84);
  border: 1px solid rgba(91, 184, 255, 0.14);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.features-alt-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--feature-accent), transparent);
  opacity: 0.8;
}

.features-alt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--feature-accent) 24%, transparent) 0%, transparent 58%);
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.features-alt-card:hover {
  border-color: rgba(91, 184, 255, 0.28);
  transform: translateY(-7px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(91, 184, 255, 0.12);
}

.features-alt-card:hover::after {
  opacity: 1;
}

.features-alt-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  padding: 14px;
  display: block;
  background: rgba(91, 184, 255, 0.12);
  border: 1px solid rgba(91, 184, 255, 0.18);
  border-radius: 18px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition), filter var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 24px rgba(91, 184, 255, 0.12);
}

.features-alt-card:hover .features-alt-icon {
  transform: scale(1.08) translateY(-4px);
  filter: brightness(0) invert(1);
}

.features-alt-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.features-alt-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CREDIBILITY SECTION
============================================================ */
.credibility {
  position: relative;
  padding: 80px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 184, 255, 0.10) 0%, transparent 34%),
    linear-gradient(180deg, var(--section-800) 0%, var(--navy-900) 100%);
  border-top: 1px solid var(--section-divider-soft);
  border-bottom: 1px solid var(--section-divider);
  overflow: hidden;
  isolation: isolate;
}

.credibility::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 110px;
  background:
    radial-gradient(circle at 50% 100%, rgba(91, 184, 255, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(7, 19, 33, 0.58) 0%, rgba(7, 19, 33, 0) 100%);
  pointer-events: none;
}

.credibility-wrapper {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.credibility-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.credibility-subtitle {
  font-size: 16px;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}

.credibility-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--ice);
  color: var(--navy-900) !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.credibility-cta:hover {
  background: #7ecfff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 184, 255, 0.35);
}

.ios-device {
  position: relative;
  width: 100%;
  padding: 0;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow:
    0 32px 90px rgba(3, 10, 24, 0.30),
    0 10px 30px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.ios-device--tablet {
  max-width: 1180px;
}

.ios-device--dark {
  background: #ffffff;
}

.ios-device__chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 14px 18px;
  background: #f5f7fb;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.ios-device__traffic-lights {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ios-device__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.ios-device__chrome span:first-child {
  background: #ff6b7f;
}

.ios-device__chrome span:nth-child(2) {
  background: #f6c96d;
}

.ios-device__chrome span:nth-child(3) {
  background: #58d89c;
}

.ios-device__address {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ios-device__chrome-spacer {
  width: 52px;
  flex-shrink: 0;
}

.ios-device__viewport {
  overflow: hidden;
  background: #f8fafc;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================================
   REGISTER PAGE
============================================================ */
.register-wrapper {
  max-width: 480px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.register-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.register-title {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 24px;
}

.register-card .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 6px;
}

.register-card .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 11px 14px;
  font-family: "DM Sans", sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.register-card .form-control:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(91, 184, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.register-btn {
  width: 100%;
  padding: 13px;
  background: var(--ice);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all var(--transition);
}

.register-btn:hover {
  background: #7ecfff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 184, 255, 0.35);
}

/* ============================================================
   UTILITY
============================================================ */
.mb-3 {
  margin-bottom: 1rem;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.w-100 {
  width: 100%;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 1rem;
}

.alert-warning {
  background: rgba(255, 190, 0, 0.12);
  border: 1px solid rgba(255, 190, 0, 0.3);
  color: #ffd060;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .ios-device--tablet {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .landing-hero {
    padding: 100px 20px 120px;
  }

  .hero-dashboard-preview {
    margin-top: 0;
    padding: 40px 20px 72px;
  }

  .digital-id-browser {
    border-radius: 24px;
  }

  .digital-id-browser__chrome {
    padding: 10px 12px;
    gap: 10px;
  }

  .digital-id-browser__traffic-lights {
    gap: 6px;
  }

  .digital-id-browser__traffic-lights span {
    width: 8px;
    height: 8px;
  }

  .digital-id-browser__address {
    padding: 8px 10px;
    font-size: 11px;
  }

  .digital-id-browser__viewport {
    height: 620px;
  }

  .ios-device {
    border-radius: 22px;
  }

  .ios-device__chrome {
    gap: 10px;
    min-height: 52px;
    padding: 10px 12px;
  }

  .ios-device__traffic-lights {
    gap: 6px;
  }

  .ios-device__chrome span {
    width: 8px;
    height: 8px;
  }

  .ios-device__address {
    max-width: none;
    padding: 8px 12px;
    font-size: 11px;
  }

  .ios-device__chrome-spacer {
    width: 18px;
  }

  .social-proof-sep {
    display: none;
  }

  .social-proof-inner {
    gap: 20px;
  }
}


/* ============================================================
   PRICING PAGE - Corporate Dark Theme
============================================================ */

.pricing-page {
  padding: 100px 24px;
  background: var(--navy-900);
}

.pricing-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
  color: var(--white);
  margin-bottom: 14px;
}

.pricing-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--white-70);
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

/* CARD */
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 184, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 184, 255, 0.20);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* FEATURED */
.pricing-card-featured {
  border-color: rgba(91, 184, 255, 0.40);
  background: rgba(91, 184, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(91, 184, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pricing-card-featured:hover {
  border-color: rgba(91, 184, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(91, 184, 255, 0.25), 0 20px 48px rgba(0, 0, 0, 0.30);
}

/* BADGES */
.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ice);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 10px;
}

.pricing-trial-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(91, 184, 255, 0.12);
  border: 1px solid rgba(91, 184, 255, 0.25);
  color: var(--ice);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 10px;
}

.pricing-trial-note {
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 10px;
}

/* NAME + PRICE */
.pricing-name {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.pricing-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

/* INNER */
.pricing-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-description {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  font-size: 13px;
  color: var(--white-70);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: "->";
  position: absolute;
  left: 0;
  color: var(--ice);
  font-size: 12px;
  opacity: 0.7;
}

/* BUTTON */
.pricing-btn-primary {
  display: block;
  padding: 12px;
  background: var(--ice);
  color: var(--navy-900) !important;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: -0.1px;
}

.pricing-btn-primary:hover {
  background: #7ecfff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 184, 255, 0.35);
}


/* ============================================================
   SINGLE / ACCESS PAGE - Magic Link
============================================================ */

.single-access-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.single-access-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.single-access-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91, 184, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Icon */
.single-access-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(91, 184, 255, 0.10);
  border: 1px solid rgba(91, 184, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--ice);
}

.single-access-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.single-access-card .subtitle {
  font-size: 14px;
  color: var(--white-40);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Form inputs inside access card */
.single-access-card .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.single-access-card .form-control::placeholder {
  color: var(--white-40);
}

.single-access-card .form-control:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(91, 184, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

/* Submit button inside access card */
.single-access-card .btn-primary {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--ice);
  color: var(--navy-900) !important;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all var(--transition);
}

.single-access-card .btn-primary:hover {
  background: #7ecfff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 184, 255, 0.35);
}

.single-access-card .footer-note {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 20px;
  line-height: 1.6;
}


.faq-section {
  padding: 100px 24px 80px;
  background: linear-gradient(180deg, rgba(0, 20, 50, 0) 0%, rgba(0, 30, 70, 0.35) 100%);
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 56px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 32px;
  text-align: left;
}

@media (max-width: 600px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(120, 200, 255, 0.75);
  margin-bottom: 14px;
  padding-left: 4px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-item+.faq-item {
  margin-top: 6px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 52px 18px 20px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  position: relative;
  line-height: 1.45;
  transition: color 0.15s;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(120, 200, 255, 0.8);
  line-height: 1;
}

.faq-question[aria-expanded="true"] {
  color: #fff;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer>p {
  overflow: hidden;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  padding: 0 20px;
  margin: 0;
  transition: padding 0.28s ease;
}

.faq-item.faq-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.faq-open .faq-answer>p {
  padding: 4px 20px 20px;
}

.faq-cta {
  margin-top: 64px;
  text-align: center;
}

.faq-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}


.qr-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

