/* olm-components.css — Nav, Footer, Buttons, Cards, Cookie Banner, Forms */

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.olm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.olm-nav__inner {
  max-width: var(--olm-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.olm-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.olm-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
}
.olm-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.olm-nav__link {
  padding: 6px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}
.olm-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.olm-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s ease;
}

/* Dark-top nav (transparent → solid) */
body.olm-page--dark-top .olm-nav {
  background: transparent;
}
body.olm-page--dark-top .olm-nav--scrolled {
  background: var(--olm-bg-dark);
  box-shadow: 0 1px 0 var(--olm-border-dark);
}
body.olm-page--dark-top .olm-nav .olm-nav__link {
  color: var(--olm-fg-dark-secondary);
}
body.olm-page--dark-top .olm-nav .olm-nav__link:hover {
  color: var(--olm-fg-dark-primary);
  background: rgba(165, 180, 252, 0.08);
}
body.olm-page--dark-top .olm-nav .olm-nav__signin {
  color: var(--olm-fg-dark-secondary);
}
body.olm-page--dark-top .olm-nav .olm-nav__signin:hover {
  color: var(--olm-fg-dark-primary);
  background: rgba(165, 180, 252, 0.08);
}

/* Light-top nav (always solid dark) */
body.olm-page--light-top .olm-nav {
  background: var(--olm-bg-dark);
  box-shadow: 0 1px 0 var(--olm-border-dark);
}
body.olm-page--light-top .olm-nav .olm-nav__link {
  color: var(--olm-fg-dark-secondary);
}
body.olm-page--light-top .olm-nav .olm-nav__link:hover {
  color: var(--olm-fg-dark-primary);
  background: rgba(165, 180, 252, 0.08);
}
body.olm-page--light-top .olm-nav .olm-nav__signin {
  color: var(--olm-fg-dark-secondary);
}
body.olm-page--light-top .olm-nav .olm-nav__signin:hover {
  color: var(--olm-fg-dark-primary);
  background: rgba(165, 180, 252, 0.08);
}

/* Dropdown */
.olm-nav__dropdown {
  position: relative;
}
.olm-nav__dropdown-toggle {
  background: transparent;
  border: none;
  padding: 6px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.olm-nav__dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A89FC8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}
body.olm-page--dark-top .olm-nav .olm-nav__dropdown-toggle {
  color: var(--olm-fg-dark-secondary);
}
body.olm-page--light-top .olm-nav .olm-nav__dropdown-toggle {
  color: var(--olm-fg-dark-secondary);
}
.olm-nav__dropdown-toggle:hover {
  color: var(--olm-fg-dark-primary) !important;
  background: rgba(165, 180, 252, 0.08);
}
.olm-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--olm-bg-dark);
  border: 1px solid var(--olm-border-dark);
  border-radius: 10px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.olm-nav__dropdown:hover .olm-nav__dropdown-menu,
.olm-nav__dropdown.is-open .olm-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.olm-nav__dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--olm-fg-dark-secondary);
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.olm-nav__dropdown-menu a:hover {
  background: rgba(165, 180, 252, 0.1);
  color: var(--olm-fg-dark-primary);
}

/* Hamburger */
.olm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}
.olm-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olm-fg-dark-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile nav */
.olm-nav__mobile {
  display: none;
  background: var(--olm-bg-dark);
  padding: 16px clamp(16px, 4vw, 48px) 24px;
  border-top: 1px solid var(--olm-border-dark);
}
.olm-nav__mobile a, .olm-nav__mobile button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--olm-fg-dark-primary);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid var(--olm-border-dark);
}
.olm-nav__mobile a:last-child { border-bottom: none; }
.olm-nav__mobile.is-open { display: block; }

@media (max-width: 900px) {
  .olm-nav__links { display: none; }
  .olm-nav__actions { display: none; }
  .olm-nav__hamburger { display: flex; }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.olm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--olm-font-sans);
  text-decoration: none;
}
.olm-btn:hover { transform: translateY(-1px); }
.olm-btn:active { transform: none; }

/* Primary */
.olm-btn--primary {
  background: var(--olm-accent-decorative);
  color: #FFFFFF;
  border-color: var(--olm-accent-decorative);
}
.olm-btn--primary:hover {
  background: #5849D4;
  border-color: #5849D4;
  box-shadow: 0 4px 16px rgba(108, 92, 232, 0.35);
  color: #FFFFFF;
}

/* Outline on dark */
.olm-btn--outline-dark {
  background: transparent;
  color: var(--olm-fg-dark-primary);
  border-color: var(--olm-border-dark);
}
.olm-btn--outline-dark:hover {
  background: rgba(165, 180, 252, 0.1);
  border-color: rgba(165, 180, 252, 0.3);
  color: var(--olm-fg-dark-primary);
}

/* Ghost on dark */
.olm-btn--ghost-dark {
  background: transparent;
  color: var(--olm-accent-aa-dark);
  border-color: rgba(165, 180, 252, 0.3);
}
.olm-btn--ghost-dark:hover {
  background: rgba(165, 180, 252, 0.08);
  border-color: rgba(165, 180, 252, 0.5);
  color: var(--olm-fg-dark-primary);
}

/* Outline on light */
.olm-btn--outline-light {
  background: transparent;
  color: var(--olm-accent-aa-light);
  border-color: var(--olm-accent-aa-light);
}
.olm-btn--outline-light:hover {
  background: rgba(67, 56, 202, 0.06);
  color: var(--olm-brand-primary);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.olm-footer {
  background: var(--olm-bg-dark);
  padding: 60px 0 32px;
  border-top: 1px solid var(--olm-border-dark);
}
.olm-footer__inner {
  max-width: var(--olm-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.olm-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.olm-footer__brand .olm-footer__logo img {
  height: 30px;
  width: auto;
  max-width: 160px;
  margin-bottom: 16px;
}
.olm-footer__tagline {
  font-size: 0.9rem;
  color: var(--olm-fg-dark-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.olm-footer__contact {
  font-size: 0.875rem;
  color: var(--olm-fg-dark-secondary);
  line-height: 1.8;
}
.olm-footer__contact a {
  color: var(--olm-accent-aa-dark);
  transition: color 0.15s;
}
.olm-footer__contact a:hover { color: var(--olm-fg-dark-primary); }
.olm-footer__col-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--olm-fg-dark-primary);
  margin-bottom: 16px;
}
.olm-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.olm-footer__col-links a {
  font-size: 0.9rem;
  color: var(--olm-fg-dark-secondary);
  transition: color 0.15s;
}
.olm-footer__col-links a:hover { color: var(--olm-fg-dark-primary); }
.olm-footer__bottom {
  border-top: 1px solid var(--olm-border-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.olm-footer__copy {
  font-size: 0.875rem;
  color: var(--olm-fg-dark-secondary);
}
.olm-footer__legal-links {
  display: flex;
  gap: 20px;
}
.olm-footer__legal-links a {
  font-size: 0.875rem;
  color: var(--olm-fg-dark-secondary);
  transition: color 0.15s;
}
.olm-footer__legal-links a:hover { color: var(--olm-fg-dark-primary); }

@media (max-width: 900px) {
  .olm-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .olm-footer__top {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.olm-card {
  background: var(--olm-bg-white);
  border: 1px solid var(--olm-border-light);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.olm-card:hover {
  box-shadow: 0 8px 24px rgba(45, 31, 110, 0.1);
  transform: translateY(-2px);
}

/* Pain card on dark-alt */
.olm-pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(165, 180, 252, 0.12);
  border-radius: 12px;
  padding: 32px 28px;
}
.olm-pain-card h3 {
  font-size: 1.125rem;
  color: var(--olm-fg-dark-primary);
  margin-bottom: 12px;
}
.olm-pain-card p {
  font-size: 0.9375rem;
  color: var(--olm-fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonial card */
.olm-testimonial {
  background: var(--olm-bg-white);
  border: 1px solid var(--olm-border-light);
  border-radius: 12px;
  padding: 28px;
}
.olm-testimonial__quote {
  font-size: 1rem;
  color: var(--olm-fg-light-primary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.olm-testimonial__quote::before { content: '\201C'; }
.olm-testimonial__quote::after  { content: '\201D'; }
.olm-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.olm-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olm-accent-decorative);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.olm-testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olm-fg-light-primary);
  line-height: 1.3;
}
.olm-testimonial__role {
  font-size: 0.8125rem;
  color: var(--olm-fg-light-secondary);
}

/* ═══════════════════════════════════════════
   TERMINAL / CODE MOCK
═══════════════════════════════════════════ */
.olm-term {
  background: #0D0B1E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.olm-term__chrome {
  background: #1E1A3A;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.olm-term__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.olm-term__dot--red    { background: #FF5F57; }
.olm-term__dot--yellow { background: #FEBC2E; }
.olm-term__dot--green  { background: #28C840; }
.olm-term__title {
  font-family: var(--olm-font-mono);
  font-size: 0.75rem;
  color: var(--olm-fg-dark-secondary);
  margin-left: 8px;
}
.olm-term__body {
  padding: 16px 18px;
  font-family: var(--olm-font-mono);
  font-size: 0.8125rem;
  line-height: 1.45;
  white-space: normal;
  overflow-x: auto;
}
.olm-tt-prompt { color: var(--olm-accent-aa-dark); }
.olm-tt-cmd    { color: var(--olm-fg-dark-primary); }
.olm-tt-meta   { color: var(--olm-fg-dark-secondary); }
.olm-tt-ok     { color: var(--olm-node-green); }
.olm-tt-warn   { color: var(--olm-warning); }
.olm-tt-err    { color: #FF7067; }
.olm-tt-info   { color: #A5B4FC; }
.olm-term__body .line {
  display: block;
  white-space: pre;
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--olm-bg-dark);
  border-top: 1px solid var(--olm-border-dark);
}
.cookie-banner__inner {
  max-width: var(--olm-container-max);
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--olm-fg-dark-secondary);
  flex: 1;
}
.cookie-banner__text a {
  color: var(--olm-accent-aa-dark);
  text-decoration: underline;
}
.cookie-banner__btn {
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-banner__btn--primary {
  background: var(--olm-accent-decorative);
  color: #fff;
}
.cookie-banner__btn--primary:hover {
  background: #5849D4;
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.olm-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.olm-form-group:last-of-type { margin-bottom: 0; }
.olm-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--olm-fg-light-primary);
}
.olm-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9375rem;
  border: 1.5px solid #C5C0E8;
  border-radius: 8px;
  background: var(--olm-bg-white);
  color: var(--olm-fg-light-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.olm-input:focus {
  outline: none;
  border-color: var(--olm-accent-aa-light);
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.12);
}
.olm-input::placeholder { color: #9994BC; }
.olm-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════════
   INTEGRATION BADGES
═══════════════════════════════════════════ */
.olm-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.olm-int-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(165, 180, 252, 0.08);
  border: 1px solid rgba(165, 180, 252, 0.18);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--olm-fg-dark-secondary);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   PRICING TOGGLE + PRICE VARIANTS
═══════════════════════════════════════════ */
.olm-pricing-toggle-label {
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--olm-fg-light-primary);
}
.olm-price-monthly,
.olm-price-annual {
  display: block;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.olm-faq__item {
  border-bottom: 1px solid var(--olm-border-light);
}
.olm-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--olm-fg-light-primary);
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--olm-font-sans);
}
.olm-faq__answer {
  font-size: 0.9375rem;
  color: var(--olm-fg-light-secondary);
  padding-bottom: 16px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════ */
.legal-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  color: var(--olm-fg-light-primary);
}
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--olm-border-light);
}
.legal-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--olm-fg-light-primary);
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 0.875rem;
  color: var(--olm-fg-light-secondary);
  margin-bottom: 4px;
}
.legal-article section {
  margin-bottom: 36px;
}
.legal-article h2 {
  font-size: 1.25rem;
  color: var(--olm-fg-light-primary);
  margin-bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--olm-border-light);
}
.legal-article h3 {
  font-size: 1.0625rem;
  color: var(--olm-fg-light-primary);
  margin-bottom: 12px;
  margin-top: 20px;
}
.legal-article p {
  font-size: 0.9375rem;
  color: var(--olm-fg-light-primary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 12px;
}
.legal-article ul li {
  font-size: 0.9375rem;
  color: var(--olm-fg-light-primary);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-article a {
  color: var(--olm-accent-aa-light);
  text-decoration: underline;
}
.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--olm-fg-light-primary);
  line-height: 1.8;
  background: var(--olm-bg-light);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--olm-accent-aa-light);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--olm-bg-light);
  color: var(--olm-fg-light-primary);
  font-weight: 600;
  border: 1px solid var(--olm-border-light);
}
.legal-table td {
  padding: 10px 14px;
  color: var(--olm-fg-light-primary);
  border: 1px solid var(--olm-border-light);
  vertical-align: top;
}

/* ═══════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════ */
.olm-blog-card {
  background: var(--olm-bg-white);
  border: 1px solid var(--olm-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.olm-blog-card:hover {
  box-shadow: 0 8px 24px rgba(45, 31, 110, 0.1);
  transform: translateY(-2px);
}
.olm-blog-card__img-wrap {
  overflow: hidden;
}
.olm-blog-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.olm-blog-card:hover .olm-blog-card__img {
  transform: scale(1.03);
}
.olm-blog-card__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.olm-blog-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--olm-accent-aa-light);
  margin-bottom: 8px;
}
.olm-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--olm-fg-light-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}
.olm-blog-card__summary {
  font-size: 0.875rem;
  color: var(--olm-fg-light-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.olm-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--olm-fg-light-secondary);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--olm-border-light);
}

/* Blog article page */
.olm-blog-article__cover {
  width: 100%;
  height: auto;
  max-width: 760px;
  margin: 0 auto 36px;
  border-radius: 10px;
  display: block;
}
.olm-blog-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
body.olm-page--light-top .olm-blog-article-body h1,
body.olm-page--light-top .olm-blog-article-body h2,
body.olm-page--light-top .olm-blog-article-body h3,
body.olm-page--light-top .olm-blog-article-body h4 {
  color: var(--olm-fg-light-primary);
}
body.olm-page--light-top .olm-blog-article-body p,
body.olm-page--light-top .olm-blog-article-body li,
body.olm-page--light-top .olm-blog-article-body a {
  color: var(--olm-fg-light-primary);
}
body.olm-page--light-top .olm-blog-article-body a {
  color: var(--olm-accent-aa-light);
  text-decoration: underline;
}

/* Pricing table */
.olm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--olm-gap);
  align-items: start;
}
.olm-pricing-card {
  background: var(--olm-bg-white);
  border: 1.5px solid var(--olm-border-light);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.olm-pricing-card--highlighted {
  border-color: var(--olm-accent-decorative);
  box-shadow: 0 0 0 4px rgba(108, 92, 232, 0.08);
}
.olm-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olm-accent-decorative);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.olm-pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--olm-fg-light-primary);
  margin-bottom: 4px;
}
.olm-pricing-card__desc {
  font-size: 0.875rem;
  color: var(--olm-fg-light-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.olm-pricing-card__price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--olm-fg-light-primary);
  line-height: 1;
}
.olm-pricing-card__price sup {
  font-size: 1.25rem;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}
.olm-pricing-card__per {
  font-size: 0.875rem;
  color: var(--olm-fg-light-secondary);
  margin-bottom: 24px;
}
.olm-pricing-card__divider {
  height: 1px;
  background: var(--olm-border-light);
  margin: 20px 0;
}
.olm-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--olm-fg-light-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.olm-pricing-feature i {
  color: var(--olm-node-green);
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .olm-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
