/* LegalTech Counsellor — landing (matches premium dark LTC mock) */
:root {
  --ltc-bg: #050510;
  --ltc-bg-elevated: #0b0b1f;
  --ltc-blue: #22d3ee;
  --ltc-blue-deep: #0284c7;
  --ltc-blue-glow: rgba(34, 211, 238, 0.55);
  --ltc-silver-top: #f1f5f9;
  --ltc-silver-mid: #94a3b8;
  --ltc-silver-bot: #cbd5e1;
  --ltc-muted: #64748b;
  --ltc-line: rgba(148, 163, 184, 0.12);
  --ltc-max: 1200px;
  --ltc-radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body.ltc-page {
  margin: 0;
  min-height: 100vh;
  color: #e2e8f0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--ltc-bg);
  overflow-x: hidden;
}

.ltc-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(99, 102, 241, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 50%, rgba(14, 165, 233, 0.06), transparent 45%),
    linear-gradient(180deg, #050510 0%, #08081a 50%, #050510 100%);
}

.ltc-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

/* Subtle “circuit” ambience (cyan traces, low contrast) */
.ltc-bg__circuits {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, transparent 0 48%, rgba(34, 211, 238, 0.35) 49%, transparent 52%),
    linear-gradient(
      105deg,
      transparent 0 40%,
      rgba(34, 211, 238, 0.12) 42%,
      transparent 44%,
      transparent 58%,
      rgba(99, 102, 241, 0.1) 60%,
      transparent 64%
    ),
    radial-gradient(circle at 20% 70%, rgba(34, 211, 238, 0.15) 0, transparent 45%),
    radial-gradient(circle at 85% 40%, rgba(99, 102, 241, 0.12) 0, transparent 40%);
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 0%, transparent 75%);
}

/* Parallax orbs (used by pages/app.js) */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.15s ease-out;
}
.bg-orb--violet {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -100px;
  background: rgba(99, 102, 241, 0.45);
}
.bg-orb--cyan {
  width: 320px;
  height: 320px;
  top: 20%;
  right: -80px;
  background: rgba(34, 211, 238, 0.35);
}

.ltc-wrap {
  position: relative;
  z-index: 2;
}

/* —— Header —— */
.ltc-header {
  max-width: var(--ltc-max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .ltc-header {
    flex-direction: column;
    align-items: stretch;
  }
  .ltc-nav {
    justify-content: center;
    order: 3;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--ltc-line);
  }
  .ltc-header__actions {
    justify-content: flex-end;
  }
}

.ltc-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Raster logo on dark UI — matte frame softens light backgrounds on PNG */
.ltc-brand__img-frame {
  display: inline-block;
  padding: 6px 14px 8px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(11, 11, 31, 0.95), rgba(5, 5, 16, 0.98));
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(34, 211, 238, 0.12);
}

.ltc-brand__img {
  height: 54px;
  width: auto;
  max-width: min(220px, 42vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

.ltc-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 22px);
  flex-wrap: wrap;
  justify-content: center;
}

.ltc-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ltc-muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ltc-nav a:hover {
  color: #f1f5f9;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

/* Solutions dropdown */
.ltc-dropdown {
  position: relative;
}
.ltc-dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ltc-muted);
  font-family: inherit;
  padding: 4px 0;
}
.ltc-dropdown__btn:hover,
.ltc-dropdown.is-open .ltc-dropdown__btn {
  color: #f1f5f9;
}
.ltc-dropdown__caret {
  font-size: 9px;
  opacity: 0.8;
}
.ltc-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 14px;
  background: rgba(11, 11, 31, 0.98);
  border: 1px solid var(--ltc-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.ltc-dropdown__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(10px);
}
.ltc-dropdown__panel a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #e2e8f0;
  text-decoration: none;
}
.ltc-dropdown__panel a:hover {
  background: rgba(34, 211, 238, 0.08);
  text-shadow: none;
}

.ltc-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ltc-link-login {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ltc-silver-mid);
}

.ltc-link-login:hover {
  color: #fff;
}

.ltc-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 45%, #4f46e5 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 32px rgba(34, 211, 238, 0.35),
    0 12px 40px rgba(79, 70, 229, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ltc-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 48px rgba(34, 211, 238, 0.45),
    0 16px 48px rgba(79, 70, 229, 0.55);
}

.ltc-btn-cta--large {
  padding: 18px 36px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.ltc-btn-cta--large::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(25deg);
  animation: ltc-shine 4s ease-in-out infinite;
}

@keyframes ltc-shine {
  0%,
  100% {
    transform: translateX(-120%) rotate(25deg);
  }
  50% {
    transform: translateX(280%) rotate(25deg);
  }
}

/* —— Hero —— */
.ltc-hero {
  max-width: var(--ltc-max);
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.ltc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 960px) {
  .ltc-hero__grid {
    grid-template-columns: 1fr;
  }
  .ltc-hero__visual {
    order: -1;
    min-height: 320px;
  }
}

.ltc-hero__title {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.ltc-hero__line {
  display: block;
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 800;
}

.ltc-hero__line--silver {
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 38%, #64748b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 24px rgba(255, 255, 255, 0.08));
}

.ltc-hero__line--blue {
  color: var(--ltc-blue);
  text-shadow:
    0 0 40px var(--ltc-blue-glow),
    0 0 80px rgba(34, 211, 238, 0.25);
}

/* Serif hero headline (mock: metallic legal headline) */
.ltc-hero__title--serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.02em;
}
.ltc-hero__serif-line {
  display: block;
  font-size: clamp(38px, 6.5vw, 76px);
  background: linear-gradient(185deg, #ffffff 0%, #e2e8f0 35%, #94a3b8 70%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 20px rgba(255, 255, 255, 0.12));
}
.ltc-hero__serif-line--accent {
  background: linear-gradient(185deg, #67e8f9 0%, #22d3ee 40%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(34, 211, 238, 0.35));
}

.ltc-hero__serif-line--cinzel {
  font-family: Cinzel, 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(32px, 5.2vw, 58px);
}

/* Glowing rule between headline lines (logo-style divider) */
.ltc-hero__rule {
  display: block;
  height: 2px;
  width: min(100%, 420px);
  margin: 14px 0 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.15) 15%,
    rgba(34, 211, 238, 0.85) 50%,
    rgba(99, 102, 241, 0.5) 50%,
    rgba(34, 211, 238, 0.15) 85%,
    transparent
  );
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
}

.ltc-hero__sub {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: var(--ltc-muted);
}

.ltc-feature-grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .ltc-feature-grid {
    grid-template-columns: 1fr;
  }
}

.ltc-feature-card {
  display: flex;
  gap: 14px;
  padding: 16px 16px 18px;
  border-radius: 16px;
  background: rgba(11, 11, 31, 0.88);
  border: 1px solid rgba(34, 211, 238, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.ltc-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(
      105deg,
      transparent 0 35%,
      rgba(34, 211, 238, 0.4) 36%,
      transparent 37%
    ),
    linear-gradient(0deg, rgba(34, 211, 238, 0.15) 1px, transparent 1px);
  background-size: 100% 100%, 100% 22px;
  pointer-events: none;
}

.ltc-feature-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
  color: var(--ltc-blue);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.ltc-feature-card > div {
  position: relative;
  z-index: 1;
}

.ltc-feature-card__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.ltc-feature-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ltc-muted);
}

.ltc-hero__cta-row {
  margin-top: 32px;
}

.ltc-hero__cta-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ltc-muted);
}

/* —— Hero visual (shield + podium + grooves) —— */
.ltc-hero__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ltc-grooves {
  position: absolute;
  inset: 0;
  border-radius: var(--ltc-radius);
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 14px,
    rgba(30, 41, 59, 0.5) 14px,
    rgba(30, 41, 59, 0.5) 15px
  );
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.ltc-podium {
  position: absolute;
  bottom: 12%;
  width: min(280px, 70%);
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.45) 0%, transparent 70%);
  box-shadow:
    0 0 60px rgba(34, 211, 238, 0.35),
    0 0 120px rgba(99, 102, 241, 0.2);
  filter: blur(0.5px);
}

.ltc-shield-wrap {
  position: relative;
  width: min(340px, 85%);
  aspect-ratio: 1;
  max-width: 380px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  animation: ltc-float 6s ease-in-out infinite;
}

.ltc-shield-wrap--logo {
  width: min(400px, 92%);
  max-width: 440px;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ltc-hero-logo-glow {
  position: absolute;
  width: 70%;
  height: 55%;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.35) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.ltc-hero-logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(380px, 88vw);
  height: auto;
  max-height: min(52vh, 440px);
  object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(34, 211, 238, 0.15));
}

@keyframes ltc-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.ltc-shield-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* —— Stats bar —— */
.ltc-stats {
  max-width: var(--ltc-max);
  margin: 0 auto 48px;
  padding: 0 24px;
}

.ltc-stats__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 28px;
  border-radius: var(--ltc-radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 11, 31, 0.95) 100%);
  border: 1px solid rgba(34, 211, 238, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 40px rgba(34, 211, 238, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 720px) {
  .ltc-stats__bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ltc-stat {
  text-align: center;
  padding: 8px;
}

.ltc-stat__value {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ltc-stat__label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ltc-muted);
}

/* —— How it works —— */
.ltc-steps {
  max-width: var(--ltc-max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.ltc-steps__head {
  text-align: center;
  margin-bottom: 48px;
}

.ltc-steps__title {
  margin: 0;
  font-family: Cinzel, serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltc-blue);
  text-shadow: 0 0 24px var(--ltc-blue-glow);
}

.ltc-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}

@media (max-width: 900px) {
  .ltc-steps__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ltc-steps__grid::before {
    display: none;
  }
}

.ltc-steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.25), transparent);
  pointer-events: none;
}

.ltc-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.ltc-step__ring {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.15), transparent 55%),
    linear-gradient(145deg, rgba(34, 211, 238, 0.25), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow:
    0 0 28px rgba(34, 211, 238, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 26px;
  line-height: 1;
}

.ltc-step__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ltc-muted);
  text-transform: uppercase;
}

.ltc-step__name {
  margin: 8px 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
}

.ltc-step__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ltc-muted);
}

/* —— Ancillary sections (nav anchors) —— */
.ltc-section {
  max-width: var(--ltc-max);
  margin: 0 auto;
  padding: 48px 24px;
  border-top: 1px solid var(--ltc-line);
}

.ltc-section h2 {
  margin: 0 0 12px;
  font-family: Cinzel, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.ltc-section p {
  margin: 0;
  color: var(--ltc-muted);
  line-height: 1.65;
  max-width: 640px;
}

.ltc-foot {
  padding: 32px 24px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--ltc-muted);
}

.ltc-foot a {
  color: var(--ltc-blue);
  text-decoration: none;
}

/* —— Pricing —— */
.ltc-pricing {
  max-width: var(--ltc-max);
  margin: 0 auto;
  padding: 56px 24px 72px;
  border-top: 1px solid var(--ltc-line);
}

.ltc-pricing__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.ltc-pricing__title {
  margin: 0;
  font-family: Cinzel, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f8fafc, #67e8f9, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.25));
}

.ltc-billing-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--ltc-line);
}

.ltc-billing-toggle__opt {
  position: relative;
  cursor: pointer;
}
.ltc-billing-toggle__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ltc-billing-toggle__opt span {
  display: block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ltc-muted);
}
.ltc-billing-toggle__opt input:checked + span {
  color: #0f172a;
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}
.ltc-billing-toggle__badge {
  font-style: normal;
  font-size: 10px;
  margin-left: 4px;
  color: #86efac;
}

.ltc-pricing__hint {
  margin: 0 0 28px;
  font-size: 12px;
  color: var(--ltc-muted);
  max-width: 720px;
  line-height: 1.5;
}

.ltc-pricing__microcopy {
  margin: -14px 0 18px;
  font-size: 12px;
  color: #86efac;
  letter-spacing: 0.04em;
}

.ltc-pricing__status {
  margin: -14px 0 20px;
  min-height: 1.2em;
  font-size: 13px;
  color: var(--ltc-muted);
}
.ltc-pricing__status.is-error {
  color: #f87171;
}

.ltc-pricing__fallback {
  margin: -12px 0 24px;
}

.ltc-pricing__fallback-link {
  font-size: 13px;
  color: var(--ltc-blue);
  text-decoration: none;
  border-bottom: 1px dashed rgba(34, 211, 238, 0.5);
  padding-bottom: 1px;
}

.ltc-pricing__fallback-link:hover {
  color: #67e8f9;
  border-bottom-color: #67e8f9;
}

.ltc-price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .ltc-price-cards {
    grid-template-columns: 1fr;
  }
}

.ltc-price-card {
  position: relative;
  padding: 28px 22px 26px;
  border-radius: var(--ltc-radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(11, 11, 31, 0.95));
  border: 1px solid var(--ltc-line);
  display: flex;
  flex-direction: column;
}

.ltc-price-card--popular {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.12),
    0 0 48px rgba(34, 211, 238, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

.ltc-price-card__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.15);
  color: var(--ltc-blue);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.ltc-price-card__name {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94a3b8;
}

.ltc-price-card__price {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
}
.ltc-price-card__suffix {
  font-size: 14px;
  font-weight: 600;
  color: var(--ltc-muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.ltc-price-card__eur {
  font-size: 22px;
  font-weight: 700;
  color: var(--ltc-muted);
  margin-right: 2px;
}

.ltc-price-card__billing {
  margin: 4px 0 20px;
  font-size: 12px;
  color: var(--ltc-muted);
}

.ltc-price-card__list {
  margin: 0 0 22px;
  padding: 0 0 0 18px;
  flex: 1;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.65;
}

.ltc-price-card__btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  color: #e2e8f0;
  border: 1px solid var(--ltc-line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ltc-price-card__btn:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.06);
}

.ltc-price-card__btn--primary {
  border: none;
  color: #0f172a;
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.ltc-price-card__btn.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

/* —— Trust + flow —— */
.ltc-trust {
  max-width: var(--ltc-max);
  margin: 0 auto;
  padding: 48px 24px 64px;
  border-top: 1px solid var(--ltc-line);
}

.ltc-trust__title {
  margin: 0 0 10px;
  font-family: Cinzel, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.ltc-trust__sub {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--ltc-muted);
  max-width: 720px;
  line-height: 1.55;
}

.ltc-trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.ltc-trust__logo {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(11, 11, 31, 0.8);
  border: 1px solid var(--ltc-line);
}

.ltc-flow__title {
  text-align: center;
  margin: 0 0 22px;
  font-family: Cinzel, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ltc-blue);
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.ltc-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px 6px;
}

.ltc-flow__step {
  max-width: 120px;
  text-align: center;
}

.ltc-flow__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #f1f5f9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ltc-flow__link:hover {
  color: var(--ltc-blue);
}

.ltc-flow__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.28);
  font-size: 16px;
}

.ltc-flow__hint {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ltc-muted);
  max-width: 110px;
  margin: 6px auto 0;
  line-height: 1.35;
}

.ltc-flow__arrow {
  color: var(--ltc-muted);
  font-size: 14px;
  padding: 14px 2px 0;
  user-select: none;
}

@media (max-width: 900px) {
  .ltc-flow__arrow {
    display: none;
  }
  .ltc-flow {
    flex-direction: column;
    align-items: center;
  }
}

/* —— Footer —— */
.ltc-foot {
  padding: 40px 24px 48px;
  border-top: 1px solid var(--ltc-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.ltc-foot__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ltc-foot__img-frame {
  display: inline-block;
  padding: 10px 20px 12px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(11, 11, 31, 0.9), rgba(5, 5, 16, 0.95));
  border: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.08);
}

.ltc-foot__img {
  height: 56px;
  width: auto;
  max-width: min(200px, 70vw);
  display: block;
  object-fit: contain;
}

.ltc-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ltc-foot__links a {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
}
.ltc-foot__links a:hover {
  color: var(--ltc-blue);
}

.ltc-foot__copy {
  margin: 0;
  font-size: 11px;
  color: var(--ltc-muted);
}
