/* ContractsRadar marketing landing — light, app-aligned tokens */
:root {
  --lp-bg: #f8fafc;
  --lp-surface: #ffffff;
  --lp-border: #e2e8f0;
  --lp-border-strong: #cbd5e1;
  --lp-text: #0f172a;
  --lp-text-muted: #64748b;
  --lp-text-soft: #94a3b8;
  --lp-primary: #2563eb;
  --lp-primary-hover: #1d4ed8;
  --lp-primary-soft: #eff6ff;
  --lp-accent: #0ea5e9;
  --lp-radius: 12px;
  --lp-radius-lg: 16px;
  --lp-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  --lp-shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --lp-max: 72rem;
  --lp-safe-bottom: env(safe-area-inset-bottom, 0);
  --lp-safe-left: env(safe-area-inset-left, 0);
  --lp-safe-right: env(safe-area-inset-right, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 1.25rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Skip link */
.lp-skip {
  position: absolute;
  top: -100px;
  left: 12px;
  padding: 8px 12px;
  background: var(--lp-text);
  color: var(--lp-surface);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 100;
  transition: top 0.2s;
}

.lp-skip:focus {
  top: 12px;
  outline: 2px solid var(--lp-primary);
  outline-offset: 2px;
}

.lp-shell {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 28px) calc(48px + var(--lp-safe-bottom));
  padding-left: calc(clamp(16px, 4vw, 28px) + var(--lp-safe-left));
  padding-right: calc(clamp(16px, 4vw, 28px) + var(--lp-safe-right));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-main {
  flex: 1;
}

.lp-main:focus {
  outline: none;
}

.lp-main:focus-visible {
  outline: 2px solid var(--lp-primary);
  outline-offset: 4px;
}

/* Nav */
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-text);
}

.lp-logo--footer {
  color: var(--lp-text);
}

.lp-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-radar-svg {
  display: block;
}

.lp-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
}

.lp-nav-link:hover {
  color: var(--lp-text);
  background: rgba(15, 23, 42, 0.04);
}

.lp-nav-link--ghost {
  display: none;
}

@media (min-width: 400px) {
  .lp-nav-link--ghost {
    display: inline;
  }
}

/* Buttons */
.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  background: var(--lp-primary);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--lp-shadow);
  transition: background 0.15s ease, transform 0.1s ease;
  min-height: 44px;
}

.lp-button:hover {
  background: var(--lp-primary-hover);
}

.lp-button:active {
  transform: scale(0.98);
}

.lp-button--secondary {
  background: var(--lp-surface);
  color: var(--lp-text);
  border: 1px solid var(--lp-border-strong);
  box-shadow: none;
}

.lp-button--secondary:hover {
  background: var(--lp-bg);
  border-color: var(--lp-text-soft);
}

.lp-button--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 40px;
}

.lp-button--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

/* Sections */
.lp-section {
  margin-bottom: clamp(56px, 8vw, 96px);
}

.lp-section-head {
  max-width: 40rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.lp-section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--lp-text);
  line-height: 1.2;
}

.lp-section-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* Hero */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.lp-hero-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--lp-text);
}

.lp-hero-subtitle {
  margin: 0 0 22px;
  font-size: clamp(1.0625rem, 1.5vw, 1.125rem);
  color: var(--lp-text-muted);
  line-height: 1.6;
  max-width: 36rem;
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  list-style: none;
  padding: 0;
}

.lp-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  box-shadow: var(--lp-shadow);
}

.lp-trust-ico {
  flex-shrink: 0;
  color: var(--lp-primary);
  opacity: 0.9;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* App mockup */
.lp-hero-visual {
  position: relative;
}

.lp-app-mockup {
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-md);
  overflow: hidden;
  max-width: 440px;
  margin-left: auto;
}

.lp-app-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-bottom: 1px solid var(--lp-border);
}

.lp-app-dots {
  display: flex;
  gap: 6px;
}

.lp-app-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.lp-app-dots span:nth-child(1) { background: #f87171; }
.lp-app-dots span:nth-child(2) { background: #fbbf24; }
.lp-app-dots span:nth-child(3) { background: #4ade80; }

.lp-app-chrome-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-text-soft);
  letter-spacing: 0.02em;
}

.lp-app-mockup-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
}

.lp-app-sidebar {
  padding: 10px 8px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.6875rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-app-sidebar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px;
  border-radius: 8px;
  color: #94a3b8;
}

.lp-app-sidebar-item--active {
  background: rgba(37, 99, 235, 0.25);
  color: #fff;
}

.lp-app-ico {
  opacity: 0.9;
  flex-shrink: 0;
}

.lp-app-main {
  padding: 14px 14px 16px;
  background: var(--lp-bg);
}

.lp-app-docbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lp-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
}

.lp-pill--muted {
  background: var(--lp-primary-soft);
  color: var(--lp-primary);
}

.lp-app-doc-name {
  font-size: 0.75rem;
  color: var(--lp-text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.lp-app-fields {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  border-radius: 10px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  overflow: hidden;
}

.lp-app-fields li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-app-fields li:last-child {
  border-bottom: none;
}

.lp-app-k {
  color: var(--lp-text-muted);
}

.lp-app-v {
  font-weight: 600;
  color: var(--lp-text);
}

.lp-app-chat {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  margin-bottom: 10px;
}

.lp-app-chat-q {
  margin: 0 0 6px;
  font-size: 0.75rem;
  color: var(--lp-text-soft);
  font-style: italic;
}

.lp-app-chat-a {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--lp-text);
  line-height: 1.45;
}

.lp-app-reminder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 8px 10px;
  border-radius: 8px;
}

.lp-app-bell {
  flex-shrink: 0;
}

/* Benefits */
.lp-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp-benefit {
  padding: 22px 20px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-benefit-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--lp-primary-soft);
  color: var(--lp-primary);
  margin-bottom: 14px;
}

.lp-benefit-title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-benefit-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.55;
}

/* How it works */
.lp-how {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 20px;
  background: linear-gradient(165deg, #fff 0%, #f1f5f9 100%);
  border: 1px solid var(--lp-border);
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.lp-step {
  position: relative;
  padding: 24px 20px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lp-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 14px;
}

.lp-step-title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lp-text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.lp-step-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.55;
}

/* Use cases */
.lp-use-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lp-use-card {
  padding: 20px 18px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-use-card:hover {
  border-color: var(--lp-border-strong);
  box-shadow: var(--lp-shadow-md);
}

.lp-use-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--lp-bg);
  color: var(--lp-primary);
  margin-bottom: 12px;
}

.lp-use-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-use-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

/* Trust */
.lp-trust-block {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.lp-trust-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-trust-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.lp-trust-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.55;
}

.lp-trust-list li:last-child {
  margin-bottom: 0;
}

.lp-trust-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ecfdf5;
  color: #059669;
}

.lp-trust-panel-aside {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-trust-badge {
  text-align: center;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--lp-primary-soft) 0%, #e0f2fe 100%);
  border: 1px solid #bfdbfe;
  min-width: 140px;
}

.lp-trust-badge-label {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--lp-primary);
}

.lp-trust-badge-caption {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  max-width: 10rem;
  line-height: 1.4;
}

/* Final CTA */
.lp-final {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.lp-final-inner {
  text-align: center;
  padding: clamp(36px, 6vw, 56px) clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #1d4ed8 45%, #0369a1 100%);
  color: #fff;
  box-shadow: var(--lp-shadow-md);
}

.lp-final-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.lp-final-sub {
  margin: 0 auto 24px;
  font-size: 1.0625rem;
  opacity: 0.92;
  max-width: 28rem;
}

.lp-final-inner .lp-button {
  background: #fff;
  color: var(--lp-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.lp-final-inner .lp-button:hover {
  background: #f8fafc;
  color: var(--lp-primary-hover);
}

/* Footer */
.lp-footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--lp-border);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .lp-footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px 32px;
  }
}

.lp-footer-brand .lp-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.lp-footer-tagline {
  margin: 10px 0 0;
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  max-width: 16rem;
  line-height: 1.5;
}

.lp-footer-heading,
.lp-footer-col-header {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text);
}

/* Accordion: on desktop, header is static; on mobile it toggles */
.lp-footer-col-header {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  padding-right: 28px;
}

.lp-footer-col-header::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.lp-footer-col-accordion.expanded .lp-footer-col-header::after {
  transform: rotate(-135deg);
}

.lp-footer-col-content {
  max-height: 500px;
  overflow: visible;
}

@media (max-width: 639px) {
  .lp-footer-col-accordion .lp-footer-col-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .lp-footer-col-accordion.expanded .lp-footer-col-content {
    max-height: 500px;
  }
  .lp-footer-col {
    border-bottom: 1px solid var(--lp-border);
  }
  .lp-footer-col-accordion:last-of-type {
    border-bottom: none;
  }
}

@media (min-width: 640px) {
  .lp-footer-col-header {
    cursor: default;
    padding-right: 0;
    min-height: 0;
    pointer-events: none;
  }
  .lp-footer-col-header::after {
    display: none;
  }
}

.lp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer-links li {
  margin-bottom: 8px;
}

.lp-footer-links a {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  text-decoration: none;
}

.lp-footer-links a:hover {
  color: var(--lp-primary);
}

.lp-footer-copy {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--lp-border);
  font-size: 0.8125rem;
  color: var(--lp-text-soft);
}

/* Responsive: Tailwind-like breakpoints sm:640 md:768 lg:1024 xl:1280 2xl:1536 */

@media (max-width: 1024px) {
  .lp-use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lp-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-app-mockup {
    margin-left: 0;
    max-width: none;
  }

  .lp-benefits {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-trust-panel {
    grid-template-columns: 1fr;
  }

  .lp-trust-panel-aside {
    justify-content: flex-start;
  }
}

/* Mobile: iPhone 16 class (~393–430px) and smaller */
@media (max-width: 430px) {
  .lp-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-hero-title {
    font-size: 1.75rem;
  }

  .lp-trust-row {
    gap: 6px;
    margin-bottom: 20px;
  }

  .lp-trust-chip {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .lp-app-mockup-body {
    grid-template-columns: 88px 1fr;
    min-height: 240px;
  }

  .lp-app-sidebar {
    font-size: 0.625rem;
    padding: 8px 6px;
  }

  .lp-app-sidebar-item {
    flex-direction: column;
    text-align: center;
    padding: 6px 4px;
  }

  .lp-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .lp-hero-cta .lp-button {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .lp-nav-actions .lp-button--sm {
    padding: 8px 14px;
    min-height: 44px;
  }

  .lp-section {
    margin-bottom: 40px;
  }

  .lp-use-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-benefit,
  .lp-step,
  .lp-use-card {
    padding: 16px;
  }

  .lp-final-inner {
    padding: 24px 20px;
  }
}

/* iPhone 13 class (~390px) and narrow phones */
@media (max-width: 390px) {
  .lp-hero-title {
    font-size: 1.6rem;
  }

  .lp-app-mockup-body {
    grid-template-columns: 72px 1fr;
  }

  .lp-app-doc-name {
    font-size: 0.6875rem;
  }

  .lp-app-fields li,
  .lp-app-chat,
  .lp-app-reminder {
    font-size: 0.75rem;
  }
}

/* —— Pricing page —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-nav-actions--wide {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100%, 20rem);
}

@media (min-width: 480px) {
  .lp-nav-actions--wide {
    max-width: none;
  }
}

.lp-nav-link--active {
  color: var(--lp-text);
  font-weight: 600;
}

.lp-pricing-hero {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.lp-pricing-hero-inner {
  max-width: 42rem;
}

.lp-pricing-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--lp-text);
}

.lp-pricing-hero-lead {
  margin: 0 0 20px;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--lp-text-muted);
  line-height: 1.65;
}

.lp-pricing-hero-trust {
  margin-bottom: 0;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: stretch;
}

.lp-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-pricing-card--featured {
  border-color: var(--lp-primary);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, #fff 0%, var(--lp-primary-soft) 100%);
}

.lp-pricing-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--lp-primary);
  border-radius: 999px;
}

.lp-pricing-card-head {
  margin-bottom: 20px;
  padding-right: 4.5rem;
}

.lp-pricing-card--featured .lp-pricing-card-head {
  padding-right: 5.5rem;
}

.lp-pricing-card-name {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-pricing-card-tagline {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.45;
}

.lp-pricing-card-price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.lp-pricing-amount {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-pricing-period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lp-text-muted);
}

.lp-pricing-vat-note {
  margin: 8px 0 0;
  font-size: 0.8125rem;
  color: var(--lp-text-soft);
  line-height: 1.45;
}

.lp-pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-pricing-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--lp-text);
  line-height: 1.5;
}

.lp-pricing-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lp-primary);
}

.lp-pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.lp-pricing-footnote {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: var(--lp-text-soft);
  line-height: 1.45;
  text-align: center;
}

.lp-pricing-upgrade {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.lp-pricing-upgrade-inner {
  max-width: 40rem;
}

.lp-pricing-upgrade-lead {
  margin-bottom: 20px;
}

.lp-pricing-callout {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: var(--lp-radius);
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 1rem;
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-pricing-callout strong {
  color: #b45309;
}

.lp-pricing-upgrade-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--lp-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.lp-pricing-upgrade-list li {
  margin-bottom: 10px;
}

.lp-pricing-upgrade-list li:last-child {
  margin-bottom: 0;
}

.lp-pricing-trust-panel {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 260px);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-pricing-trust-copy .lp-section-title {
  margin-bottom: 12px;
}

.lp-pricing-trust-bullets {
  margin: 20px 0 16px;
  padding-left: 1.25rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-pricing-trust-bullets li {
  margin-bottom: 8px;
}

.lp-pricing-trust-links {
  margin: 0;
  font-size: 0.9375rem;
}

.lp-pricing-trust-links a {
  color: var(--lp-primary);
  font-weight: 500;
  text-decoration: none;
}

.lp-pricing-trust-links a:hover {
  text-decoration: underline;
}

.lp-pricing-trust-aside {
  padding: 20px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  text-align: center;
}

.lp-pricing-trust-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: var(--lp-primary-soft);
  color: var(--lp-primary);
}

.lp-pricing-trust-aside-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

.lp-faq {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faq-item {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-faq-summary::-webkit-details-marker {
  display: none;
}

.lp-faq-summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--lp-text-muted);
  border-bottom: 2px solid var(--lp-text-muted);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s ease;
}

.lp-faq-item[open] .lp-faq-summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.lp-faq-summary:hover {
  background: rgba(15, 23, 42, 0.02);
}

.lp-faq-body {
  padding: 0 18px 16px;
  border-top: 1px solid var(--lp-border);
}

.lp-faq-body p {
  margin: 14px 0 0;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-pricing-card--featured {
    order: -1;
  }

  .lp-pricing-trust-panel {
    grid-template-columns: 1fr;
  }

  .lp-pricing-card-head {
    padding-right: 0;
  }

  .lp-pricing-card--featured .lp-pricing-card-head {
    padding-top: 8px;
    padding-right: 0;
  }

  .lp-pricing-ribbon {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }
}

@media (max-width: 430px) {
  .lp-nav-actions--wide {
    max-width: 100%;
    justify-content: flex-start;
  }

  .lp-pricing-hero-title {
    font-size: 1.65rem;
  }
}

