:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --dark: #111827;
  --dark-900: #020617;
  --secondary: #4B5563;
  --light-gray: #F3F4F6;
  --soft-gray: #F8FAFC;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --success: #16A34A;
  --shadow: 0 24px 70px rgba(17, 24, 39, .10);
  --shadow-soft: 0 16px 44px rgba(17, 24, 39, .08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(37, 99, 235, .26);
}

.btn-secondary {
  color: var(--dark);
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

.btn-secondary:hover {
  border-color: #CBD5E1;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .07);
}

.btn-large {
  min-height: 48px;
  padding: 14px 24px;
}

.bi {
  display: inline-block;
  line-height: 1;
}

.hero-points .bi {
  flex: 0 0 auto;
  font-size: 16px;
}

.feature-icon .bi {
  font-size: 27px;
}

.rental-car-icon .bi {
  font-size: 34px;
}

.plugin-card-icon .bi,
.contact-icon .bi {
  font-size: 25px;
}

.plugin-problem-icon .bi,
.support-icon .bi {
  font-size: 27px;
}

.plugin-audience-icon .bi,
.plugin-dashboard-avatar .bi {
  font-size: 28px;
}

.catalog-card-icon .bi {
  font-size: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--light-gray);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  opacity: .9;
  transition: color .18s ease, opacity .18s ease;
}

.main-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--dark);
  border-radius: 999px;
}

.cart-link span {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
  border-radius: 99px;
}

.section-light {
  background:
    radial-gradient(circle at 30% 10%, rgba(37, 99, 235, .08), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hero {
  padding: 82px 0 52px;
}

.hero.section-light {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, .22), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(29, 78, 216, .16), transparent 30%),
    linear-gradient(rgba(37, 99, 235, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .075) 1px, transparent 1px),
    linear-gradient(180deg, #EAF2FF 0%, #F8FAFC 62%, #FFFFFF 100%);
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
  border-bottom: 1px solid #BFDBFE;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.hero-grid-centered {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  text-align: center;
}

.hero-grid-centered .hero-content,
.hero-grid-centered h1,
.hero-grid-centered .hero-text {
  margin-inline: auto;
}

.hero-grid-centered .eyebrow {
  margin-inline: auto;
}

.hero-grid-centered .hero-buttons,
.hero-grid-centered .hero-points {
  justify-content: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 4px 12px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.hero h1 {
  max-width: 710px;
  margin: 28px 0 18px;
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -3.4px;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 0;
  margin: 42px 0 0;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points .bi {
  color: var(--primary);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  z-index: 0;
  background: rgba(37, 99, 235, .15);
  filter: blur(70px);
  border-radius: 50%;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.trusted {
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.trusted-inner {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 36px;
}

.trusted-label {
  margin: 0;
  color: var(--secondary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 26px;
  color: #4B5563;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -1px;
  opacity: .82;
}

.logo-strip span {
  text-align: center;
  white-space: nowrap;
}

.features-dark {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0, rgba(37, 99, 235, .18), transparent 32%),
    linear-gradient(135deg, #020617 0%, #111827 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.feature-card {
  padding: 0 48px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.feature-card:first-child {
  padding-left: 0;
}

.feature-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--primary);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.6px;
}

.feature-card p {
  margin: 0;
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.6;
}

.products-section {
  padding: 96px 0;
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.platform-grid h2,
.cta-box h2 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -2.1px;
}

.section-heading p,
.platform-grid p {
  margin: 0;
  color: var(--secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #C7D2FE;
  box-shadow: var(--shadow);
}

.product-image {
  display: block;
  padding: 12px 12px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.product-image img {
  width: 100%;
  border-radius: 18px;
}

.product-content {
  padding: 24px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  color: #374151;
  background: var(--light-gray);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.product-card p {
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.product-footer strong {
  font-size: 14px;
  font-weight: 800;
}

.product-footer a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.platform-section {
  padding: 92px 0;
  background: var(--soft-gray);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 68px;
  align-items: start;
}

.platform-list {
  display: grid;
  gap: 18px;
}

.platform-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

.platform-list span {
  grid-row: span 2;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}

.platform-list strong {
  font-size: 20px;
  font-weight: 800;
}

.platform-list p {
  font-size: 16px;
}

.cta-section {
  padding: 96px 0;
  background: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(37, 99, 235, .44), transparent 28%),
    linear-gradient(135deg, #020617 0%, #111827 100%);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.cta-box .section-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .16);
}

.cta-box h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  padding: 60px 0 34px;
  color: var(--white);
  background: var(--dark-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
}

.footer-brand img {
  width: 126px;
  height: auto;
}

.site-footer p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #94A3B8;
  font-size: 15px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 30px;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-visual {
    max-width: 780px;
    margin-inline: auto;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    padding: 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .feature-card:first-child {
    padding-left: 34px;
  }

  .feature-card:last-child,
  .feature-card:nth-last-child(2) {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  .header-actions,
  .main-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .trusted-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: 18px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-kicker {
    font-size: 13px;
  }

  .hero {
    padding: 54px 0 38px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 42px;
    letter-spacing: -2.1px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logo-strip,
  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:first-child {
    padding: 28px 0;
  }

  .feature-card:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .products-section,
  .platform-section,
  .cta-section {
    padding: 68px 0;
  }

  .product-content {
    padding: 20px;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-list div {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

/* 2o2 Car Rental Pro addition — built on the original homepage prototype visual system */
.car-rental-spotlight {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(37, 99, 235, .11), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--light-gray);
}

.car-rental-spotlight::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -170px;
  bottom: -230px;
  background: rgba(37, 99, 235, .09);
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
}

.car-rental-spotlight-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 68px;
}

.car-rental-copy h2,
.plugin-hero h1,
.plugin-section-heading h2,
.plugin-split-copy h2,
.plugin-cta-box h2 {
  margin: 18px 0 16px;
  color: var(--dark);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.8px;
}

.car-rental-copy p,
.plugin-hero-text,
.plugin-section-heading p,
.plugin-split-copy p,
.plugin-card p,
.plugin-flow-step p,
.plugin-cta-box p {
  max-width: 650px;
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.75;
}

.car-rental-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.car-rental-benefits span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px 14px 42px;
  color: var(--dark);
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.car-rental-benefits span::before,
.plugin-check-list li::before,
.plugin-feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .10);
}

.car-rental-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.car-rental-preview {
  position: relative;
}

.car-rental-preview::before {
  content: "";
  position: absolute;
  inset: 10% 7%;
  z-index: 0;
  background: rgba(37, 99, 235, .18);
  filter: blur(66px);
  border-radius: 50%;
}

.rental-window {
  position: relative;
  z-index: 1;
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.rental-window-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.rental-window-top span,
.rental-mini-grid span,
.plugin-dashboard-label,
.plugin-stat span,
.plugin-line span {
  display: block;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.rental-window-top strong {
  display: block;
  margin-top: 5px;
  color: var(--dark);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.rental-window-top em,
.plugin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.rental-search-card,
.rental-mini-grid,
.plugin-stats-grid,
.plugin-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rental-search-card div,
.rental-mini-grid div,
.plugin-stat,
.plugin-mini-card {
  padding: 16px;
  background: var(--soft-gray);
  border: 1px solid var(--light-gray);
  border-radius: 17px;
}

.rental-search-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.rental-search-card strong,
.rental-mini-grid strong,
.plugin-stat strong,
.plugin-mini-card strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.rental-car-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 14px 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(17, 24, 39, .055);
}

.rental-car-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 18px;
}

.rental-car-card strong {
  display: block;
  color: var(--dark);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.4px;
}

.rental-car-card span {
  display: block;
  margin-top: 3px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
}

.rental-car-card b {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.rental-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  color: var(--secondary);
  border-top: 1px solid var(--light-gray);
  font-size: 13px;
  font-weight: 700;
}

.rental-total-row strong {
  color: var(--success);
  font-weight: 800;
}

/* Product page */
.plugin-page .site-header {
  position: sticky;
}

.plugin-hero {
  overflow: hidden;
  padding: 96px 0 72px;
}

.plugin-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.plugin-hero h1 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(40px, 4.6vw, 60px);
  letter-spacing: -3.6px;
}

.plugin-hero-text {
  max-width: 650px;
}

.plugin-hero-actions,
.plugin-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.plugin-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.plugin-hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: #374151;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .045);
  font-size: 13px;
  font-weight: 800;
}

.plugin-dashboard-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 26px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.plugin-dashboard-card::before {
  content: "";
  position: absolute;
  inset: 8% 8%;
  z-index: -1;
  background: rgba(37, 99, 235, .18);
  filter: blur(70px);
  border-radius: 999px;
}

.plugin-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.plugin-dashboard-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.plugin-dashboard-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #FFFFFF;
}

.plugin-dashboard-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.plugin-dashboard-title {
  display: block;
  margin-top: 5px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.plugin-stats-grid {
  margin-bottom: 14px;
}

.plugin-stat strong {
  margin-top: 5px;
  font-size: 24px;
  letter-spacing: -1px;
}

.plugin-booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 14px 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .055);
}

.plugin-booking-card strong {
  display: block;
  color: var(--dark);
  font-size: 17px;
  font-weight: 800;
}

.plugin-booking-card span {
  display: block;
  margin-top: 4px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
}

.plugin-booking-card b {
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
}

.plugin-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--light-gray);
}

.plugin-line strong {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.plugin-section {
  padding: 96px 0;
  background: var(--white);
}

.plugin-section-soft {
  background: var(--soft-gray);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.plugin-section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0, rgba(37, 99, 235, .18), transparent 32%),
    linear-gradient(135deg, #020617 0%, #111827 100%);
}

.plugin-section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.plugin-section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.plugin-section-heading h2,
.plugin-split-copy h2,
.plugin-cta-box h2 {
  font-size: clamp(34px, 3.8vw, 48px);
  letter-spacing: -2.2px;
}

.plugin-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plugin-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
}

.plugin-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
}

.plugin-card h3,
.plugin-flow-step h3,
.plugin-feature-group h3 {
  margin: 0 0 9px;
  color: var(--dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.8px;
}

.plugin-card p,
.plugin-flow-step p {
  font-size: 15px;
  line-height: 1.65;
}

.plugin-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.plugin-problem-list {
  display: grid;
  gap: 16px;
}

.plugin-problem-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
}

.plugin-problem-item span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--primary);
  background: #EFF6FF;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
}

.plugin-problem-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.plugin-problem-item p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
}

.plugin-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.plugin-flow-step {
  position: relative;
  min-height: 235px;
  padding: 26px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
}

.plugin-flow-step span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #93C5FD;
  font-size: 13px;
  font-weight: 800;
}

.plugin-flow-step h3 {
  color: var(--white);
}

.plugin-flow-step p {
  color: #CBD5E1;
}

.plugin-split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.plugin-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.plugin-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plugin-panel-grid div,
.plugin-language-grid span,
.plugin-audience-grid div {
  padding: 18px;
  color: var(--dark);
  background: var(--soft-gray);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.plugin-payments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.plugin-check-list,
.plugin-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.plugin-check-list li,
.plugin-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--secondary);
  font-size: 15px;
  font-weight: 600;
}

.plugin-check-list li::before,
.plugin-feature-list li::before {
  top: 10px;
  transform: none;
}

.plugin-language-grid,
.plugin-audience-grid {
  display: grid;
  gap: 14px;
}

.plugin-language-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plugin-audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.plugin-audience-grid div {
  display: flex;
  align-items: flex-end;
  min-height: 132px;
  padding: 22px;
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
}

.plugin-feature-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plugin-feature-group {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
}

.plugin-cta {
  padding: 96px 0;
  background: var(--white);
}

.plugin-cta-box {
  padding: 66px 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(37, 99, 235, .46), transparent 28%),
    linear-gradient(135deg, #020617 0%, #111827 100%);
  border-radius: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.plugin-cta-box h2 {
  max-width: 850px;
  margin-inline: auto;
  color: var(--white);
}

.plugin-cta-box p {
  max-width: 720px;
  margin-inline: auto;
  color: #CBD5E1;
}

.plugin-cta-actions {
  justify-content: center;
}

.plugin-cta-box .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}

@media (max-width: 1180px) {
  .car-rental-spotlight-grid,
  .plugin-hero-grid,
  .plugin-problem-grid,
  .plugin-split-grid {
    grid-template-columns: 1fr;
  }

  .car-rental-preview,
  .plugin-dashboard-card {
    max-width: 780px;
    margin-inline: auto;
  }

  .plugin-card-grid,
  .plugin-feature-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plugin-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plugin-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .car-rental-benefits,
  .plugin-payments-grid {
    grid-template-columns: 1fr;
  }

  .plugin-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .car-rental-spotlight,
  .plugin-hero,
  .plugin-section,
  .plugin-cta {
    padding: 68px 0;
  }

  .car-rental-copy h2,
  .plugin-hero h1 {
    font-size: 42px;
    letter-spacing: -2.2px;
  }

  .car-rental-actions,
  .plugin-hero-actions,
  .plugin-cta-actions {
    flex-direction: column;
  }

  .rental-search-card,
  .rental-mini-grid,
  .plugin-card-grid,
  .plugin-flow,
  .plugin-panel-grid,
  .plugin-language-grid,
  .plugin-audience-grid,
  .plugin-feature-overview {
    grid-template-columns: 1fr;
  }

  .rental-window,
  .plugin-dashboard-card,
  .plugin-panel,
  .plugin-cta-box {
    max-width: 100%;
    padding: 22px;
    border-radius: 24px;
  }

  .plugin-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .plugin-dashboard-brand {
    width: 100%;
  }

  .plugin-dashboard-avatar {
    width: 44px;
    height: 44px;
  }

  .plugin-dashboard-title {
    font-size: 22px;
    letter-spacing: -.8px;
  }

  .plugin-status-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .plugin-stats-grid,
  .plugin-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .plugin-stats-grid .plugin-stat:last-child,
  .plugin-mini-grid .plugin-mini-card:last-child {
    grid-column: 1 / -1;
  }

  .plugin-stat,
  .plugin-mini-card {
    padding: 14px;
    border-radius: 15px;
  }

  .rental-car-card,
  .plugin-booking-card,
  .plugin-problem-item {
    grid-template-columns: 1fr;
  }

  .plugin-flow-step {
    min-height: 0;
  }

  .plugin-flow-step span {
    margin-bottom: 26px;
  }

  .plugin-cta-box p {
    font-size: 13px;
  }

  .plugin-split-grid {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .plugin-hero {
    padding: 56px 0;
  }

  .plugin-hero h1 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .plugin-hero-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .plugin-hero-points {
    margin-top: 26px;
  }

  .plugin-dashboard-card {
    padding: 18px;
  }

  .plugin-dashboard-title {
    font-size: 21px;
  }

  .plugin-stat strong {
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  .mobile-menu-open .site-header {
    height: auto;
  }

  .mobile-menu-open .header-inner {
    height: auto;
    min-height: 72px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .mobile-menu-open .main-nav,
  .mobile-menu-open .header-actions {
    display: flex;
    flex-basis: 100%;
  }

  .mobile-menu-open .main-nav {
    order: 3;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
  }

  .mobile-menu-open .header-actions {
    order: 4;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
  }
}

/* Plugin page production polish — contrast, spacing and list readability fixes */
.plugin-section-dark .section-kicker,
.plugin-cta-box .section-kicker {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
}

.plugin-section-dark .plugin-section-heading h2,
.plugin-section-dark .plugin-section-heading p {
  color: #FFFFFF;
}

.plugin-section-dark .plugin-section-heading p,
.plugin-section-dark .plugin-flow-step p {
  color: #CBD5E1;
}

.plugin-status-pill {
  gap: 8px;
  align-self: flex-start;
  min-height: 32px;
  padding: 8px 13px;
  color: #1D4ED8;
  background: rgba(239, 246, 255, .92);
  border-color: #BFDBFE;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
}

.plugin-status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2563EB;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.plugin-flow {
  align-items: stretch;
}

.plugin-flow-step {
  min-height: 205px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.plugin-flow-step span {
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #FFFFFF;
  background: rgba(37, 99, 235, .24);
  border: 1px solid rgba(147, 197, 253, .30);
  border-radius: 999px;
}

.plugin-flow-step h3 {
  color: #FFFFFF;
}

.plugin-check-list,
.plugin-feature-list {
  gap: 13px;
}

.plugin-check-list li,
.plugin-feature-list li {
  min-height: 24px;
  padding-left: 38px;
  color: #4B5563;
  line-height: 1.55;
}

.plugin-check-list li::before,
.plugin-feature-list li::before {
  left: 4px;
  top: .48em;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, .10);
}

.plugin-audience-grid div {
  position: relative;
  min-height: 112px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 52px 22px 22px;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.35;
}

.plugin-audience-grid div::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 26px;
  height: 26px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 10px;
  box-shadow: inset 0 0 0 7px rgba(37, 99, 235, .16);
}

.plugin-feature-group {
  min-height: 246px;
}

.plugin-feature-group h3 {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.plugin-feature-group h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.plugin-cta-box .section-kicker {
  margin-inline: auto;
}

@media (max-width: 720px) {
  .plugin-flow-step {
    min-height: 0;
  }

  .plugin-audience-grid div {
    min-height: 104px;
  }
}


/* Catalog and simple page additions for the static export */
.main-nav a.is-active {
  color: var(--primary);
  opacity: 1;
}

.catalog-hero {
  padding: 88px 0 72px;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .55fr);
  gap: 48px;
  align-items: center;
}

.catalog-hero h1,
.simple-page-card h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  color: var(--dark);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.7px;
}

.catalog-hero p,
.simple-page-card p {
  max-width: 680px;
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-hero-card {
  padding: 30px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.catalog-hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.catalog-hero-card strong {
  display: block;
  color: var(--dark);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.catalog-hero-card p {
  margin-top: 12px;
  font-size: 15px;
}

.catalog-section {
  padding: 96px 0;
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 24px;
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .06);
}

.catalog-card-featured {
  background:
    radial-gradient(circle at 90% 0, rgba(37, 99, 235, .10), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
}

.catalog-card-badge {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.catalog-card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: var(--primary);
}

.catalog-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-card h3 {
  margin: 18px 0 12px;
  color: var(--dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.catalog-card p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

.catalog-card-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.catalog-card-list li {
  position: relative;
  padding-left: 34px;
  color: #4B5563;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.catalog-card-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: .48em;
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, .10);
}

.catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}

.catalog-card-footer strong {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.simple-page-hero {
  min-height: calc(100vh - 72px - 286px);
  padding: 96px 0;
}

.simple-page-card {
  max-width: 920px;
}

.simple-page-note {
  margin-top: 28px;
  padding: 22px 24px;
  color: #4B5563;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.simple-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .catalog-hero-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .catalog-hero,
  .catalog-section,
  .simple-page-hero {
    padding: 68px 0;
  }

  .catalog-card,
  .catalog-hero-card,
  .simple-page-note {
    padding: 24px;
    border-radius: 24px;
  }

  .catalog-card-footer,
  .simple-page-actions {
    align-items: stretch;
    flex-direction: column;
  }
}


/* Refinements — 2o2 Car Rental Pro product page */
.plugin-problem-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 99, 235, .28), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(37, 99, 235, .18), transparent 32%),
    linear-gradient(135deg, #020617 0%, #0B1222 48%, #111827 100%);
  border-top: 0;
  border-bottom: 0;
}

.plugin-problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.plugin-problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.plugin-problem-copy h2 {
  max-width: 640px;
  margin: 18px 0 18px;
  color: #FFFFFF;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.6px;
}

.plugin-problem-copy p {
  max-width: 620px;
  margin: 0;
  color: #CBD5E1;
  font-size: 17px;
  line-height: 1.75;
}

.section-kicker-light {
  color: #DBEAFE;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.plugin-problem-flow {
  display: grid;
  gap: 16px;
}

.plugin-problem-card {
  display: grid;
  grid-template-columns: 58px 48px 1fr;
  align-items: start;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.plugin-problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #93C5FD;
  background: rgba(37,99,235,.16);
  border: 1px solid rgba(147,197,253,.28);
  border-radius: 18px;
}

.plugin-problem-card span {
  color: #60A5FA;
  font-size: 13px;
  font-weight: 800;
  line-height: 58px;
}

.plugin-problem-card h3 {
  margin: 2px 0 7px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.18;
}

.plugin-problem-card p {
  margin: 0;
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.6;
}

.plugin-audience-grid {
  align-items: stretch;
}

.plugin-audience-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  min-height: 170px;
  padding: 24px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.plugin-audience-card:hover {
  transform: translateY(-3px);
  border-color: #BFDBFE;
  box-shadow: 0 24px 70px rgba(17, 24, 39, .10);
}

.plugin-audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 18px;
}

.plugin-audience-card h3 {
  max-width: 210px;
  margin: 0;
  color: var(--dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.45px;
}

@media (max-width: 1100px) {
  .plugin-problem-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .plugin-problem-copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .plugin-problem-card {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .plugin-problem-card span {
    grid-column: 1 / -1;
    line-height: 1;
  }

  .plugin-problem-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .plugin-audience-card {
    min-height: 138px;
    padding: 22px;
  }
}

/* v04 fixes — product problem flow and audience cards */
.plugin-problem-card {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: start !important;
  gap: 8px 20px !important;
  min-height: 0 !important;
  padding: 24px !important;
}

.plugin-problem-card .plugin-problem-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 58px !important;
  height: 58px !important;
}

.plugin-problem-card > span {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  color: #60A5FA !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.plugin-problem-card h3 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 22px 0 0 !important;
  max-width: none !important;
}

.plugin-problem-card p {
  grid-column: 2 !important;
  grid-row: 2 !important;
  max-width: 520px !important;
  margin: 0 !important;
  line-height: 1.65 !important;
}

.plugin-audience-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.plugin-audience-grid div::before,
.plugin-audience-card::before,
.plugin-audience-card .plugin-audience-icon::before {
  content: none !important;
  display: none !important;
}

.plugin-audience-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 28px !important;
  min-height: 190px !important;
  padding: 28px 24px !important;
  color: var(--dark) !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .06) !important;
}

.plugin-audience-card .plugin-audience-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  min-width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  color: var(--primary) !important;
  background: #EFF6FF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(37, 99, 235, .12) !important;
}

.plugin-audience-card .plugin-audience-icon .bi {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  color: currentColor !important;
  font-size: 30px !important;
}

.plugin-audience-card h3 {
  max-width: none !important;
  margin: 0 !important;
  color: var(--dark) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.28 !important;
  letter-spacing: -.5px !important;
}

.plugin-positioning-section {
  background: var(--white);
}

.plugin-positioning-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.plugin-positioning-copy h2 {
  max-width: 820px;
  margin-inline: auto;
}

.plugin-positioning-copy p:not(.section-kicker) {
  max-width: 880px;
  margin-inline: auto;
}

.plugin-positioning-copy p + p {
  margin-top: 14px;
}

.plugin-audience-card p {
  margin: -14px 0 0 !important;
  color: var(--secondary) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

@media (max-width: 1100px) {
  .plugin-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .plugin-problem-card {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    padding: 20px !important;
  }

  .plugin-problem-card .plugin-problem-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .plugin-problem-card h3 {
    margin-top: 20px !important;
  }

  .plugin-audience-grid {
    grid-template-columns: 1fr !important;
  }

  .plugin-audience-card {
    min-height: 150px !important;
  }

}

/* v05 — Pricing page */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 84px;
  text-align: center;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  inset: -220px auto auto 50%;
  width: 820px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 66%);
  pointer-events: none;
}

.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.pricing-hero h1 {
  max-width: 880px;
  margin: 18px auto 18px;
  color: var(--dark);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -3px;
}

.pricing-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.75;
}

.pricing-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pricing-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  color: #4B5563;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .045);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.pricing-product,
.pricing-included,
.pricing-faq,
.pricing-final-cta {
  padding: 96px 0;
}

.pricing-product {
  background: var(--white);
}

.pricing-product-header {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .42fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.pricing-product-header h2,
.pricing-section-heading h2,
.custom-work-box h2,
.pricing-final-box h2 {
  margin: 16px 0 14px;
  color: var(--dark);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -2.6px;
}

.pricing-product-header p,
.pricing-section-heading p,
.custom-work-box p,
.pricing-final-box p {
  max-width: 780px;
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.72;
}

.pricing-product-card {
  padding: 26px;
  background:
    radial-gradient(circle at 90% 0, rgba(37, 99, 235, .12), transparent 44%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.pricing-product-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.pricing-product-card strong {
  display: block;
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1px;
}

.pricing-product-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 670px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(17, 24, 39, .10);
}

.pricing-card-recommended {
  border-color: rgba(37, 99, 235, .55);
  box-shadow: 0 28px 80px rgba(37, 99, 235, .14);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.3px;
}

.pricing-card-top p {
  min-height: 82px;
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 26px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-price strong {
  color: var(--dark);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1;
}

.pricing-price span {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 700;
}

.pricing-feature-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 31px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-feature-list li::before,
.included-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .14em;
  width: 19px;
  height: 19px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;
}

.pricing-feature-list li::after,
.included-grid span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .55em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-included {
  background: var(--soft-gray);
}

.pricing-section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.included-grid span {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 52px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .04);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.included-grid span::before {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.included-grid span::after {
  left: 24px;
  top: 50%;
  margin-top: -3px;
}

.pricing-custom-work {
  padding: 96px 0;
  background: var(--white);
}

.custom-work-box,
.pricing-final-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, .42), transparent 34%),
    linear-gradient(135deg, #020617 0%, #0B1224 58%, #10265B 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(2, 6, 23, .18);
}

.custom-work-box::before,
.pricing-final-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 75%);
  pointer-events: none;
}

.custom-work-box > *,
.pricing-final-box > * {
  position: relative;
  z-index: 1;
}

.section-kicker-dark {
  width: fit-content;
  color: #DCEBFF;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .16);
}

.custom-work-box h2,
.pricing-final-box h2 {
  max-width: 780px;
  color: var(--white);
}

.custom-work-box p,
.pricing-final-box p {
  max-width: 730px;
  color: #CBD5E1;
}

.pricing-faq {
  background: var(--soft-gray);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .56fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .04);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 58px 22px 24px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.72;
}

.pricing-final-cta {
  background: var(--white);
}

.pricing-final-box {
  display: block;
  max-width: 1020px;
  margin-inline: auto;
  padding: 64px;
  text-align: center;
}

.pricing-final-box .section-kicker {
  margin-inline: auto;
}

.pricing-final-box h2,
.pricing-final-box p {
  margin-inline: auto;
}

.pricing-final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pricing-final-actions .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}

.pricing-final-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

@media (max-width: 1160px) {
  .pricing-product-header,
  .pricing-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-card-top p {
    min-height: 0;
  }

  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 780px) {
  .pricing-hero,
  .pricing-product,
  .pricing-included,
  .pricing-custom-work,
  .pricing-faq,
  .pricing-final-cta {
    padding: 72px 0;
  }

  .pricing-hero h1 {
    letter-spacing: -2.4px;
  }

  .pricing-product-header h2,
  .pricing-section-heading h2,
  .custom-work-box h2,
  .pricing-final-box h2 {
    letter-spacing: -1.7px;
  }

  .pricing-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-product-card,
  .custom-work-box,
  .pricing-final-box {
    padding: 26px;
    border-radius: 24px;
  }

  .custom-work-box {
    grid-template-columns: 1fr;
  }

  .custom-work-box .btn,
  .pricing-final-actions .btn {
    width: 100%;
  }

  .pricing-final-actions {
    flex-direction: column;
  }
}


/* v06 — Blog page */
.blog-page {
  background: var(--white);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
  text-align: center;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: -210px auto auto 50%;
  width: 820px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 66%);
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.blog-hero .section-kicker {
  margin-inline: auto;
}

.blog-hero h1 {
  max-width: 940px;
  margin: 18px auto 18px;
  color: var(--dark);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -3px;
}

.blog-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.75;
}

.blog-topic-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.blog-topic-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  color: #4B5563;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .045);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.blog-featured-section,
.blog-articles-section,
.blog-categories-section,
.blog-updates-section,
.blog-final-cta {
  padding: 96px 0;
}

.blog-featured-section {
  background: var(--white);
}

.blog-featured-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  gap: 56px;
  align-items: center;
  padding: 48px;
  background:
    radial-gradient(circle at 92% 4%, rgba(37, 99, 235, .12), transparent 38%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.blog-featured-copy h2,
.blog-categories-grid h2,
.blog-updates-box h2 {
  margin: 18px 0 16px;
  color: var(--dark);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.8px;
}

.blog-featured-copy p,
.blog-updates-box p {
  max-width: 620px;
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.75;
}

.blog-meta {
  margin: 22px 0 28px;
  color: #4B5563;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.blog-featured-visual {
  position: relative;
}

.blog-featured-visual::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  background: rgba(37, 99, 235, .18);
  filter: blur(68px);
  border-radius: 999px;
}

.article-note-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.article-note-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.article-note-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.article-note-top strong {
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  text-align: right;
}

.article-note-list {
  display: grid;
  gap: 14px;
}

.article-note-list div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 2px 16px;
  align-items: center;
  padding: 18px;
  background: var(--soft-gray);
  border: 1px solid var(--light-gray);
  border-radius: 18px;
}

.article-note-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 800;
}

.article-note-list strong {
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.article-note-list small {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-articles-section {
  background: var(--soft-gray);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #BFDBFE;
  box-shadow: 0 28px 78px rgba(17, 24, 39, .10);
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 11px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 22px 0 12px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1px;
}

.blog-card p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.68;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
}

.blog-card-footer span {
  color: #6B7280;
  font-size: 13px;
  font-weight: 800;
}

.blog-card-footer a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.blog-categories-section {
  background: var(--white);
}

.blog-categories-grid {
  display: grid;
  grid-template-columns: minmax(280px, .56fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.blog-categories-grid h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.6vw, 46px);
}

.blog-category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 18px 20px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .045);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-category-list a::after {
  content: "→";
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.blog-category-list a:hover {
  transform: translateY(-2px);
  border-color: #BFDBFE;
  box-shadow: 0 18px 48px rgba(17, 24, 39, .08);
}

.blog-updates-section {
  background: var(--white);
}

.blog-updates-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, .42), transparent 34%),
    linear-gradient(135deg, #020617 0%, #0B1224 58%, #10265B 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(2, 6, 23, .18);
}

.blog-updates-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 75%);
  pointer-events: none;
}

.blog-updates-box > * {
  position: relative;
  z-index: 1;
}

.blog-updates-box h2 {
  max-width: 760px;
  color: var(--white);
}

.blog-updates-box p {
  max-width: 720px;
  color: #CBD5E1;
}

.blog-final-cta {
  padding-top: 0;
  background: var(--white);
}

@media (max-width: 1160px) {
  .blog-featured-card,
  .blog-categories-grid,
  .blog-updates-box {
    grid-template-columns: 1fr;
  }

  .blog-featured-visual {
    max-width: 720px;
  }

  .blog-grid,
  .blog-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .blog-hero,
  .blog-featured-section,
  .blog-articles-section,
  .blog-categories-section,
  .blog-updates-section,
  .blog-final-cta {
    padding: 72px 0;
  }

  .blog-hero h1 {
    letter-spacing: -2.2px;
  }

  .blog-featured-card,
  .article-note-card,
  .blog-card,
  .blog-updates-box {
    padding: 24px;
    border-radius: 24px;
  }

  .blog-grid,
  .blog-category-list {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 0;
  }

  .article-note-top {
    flex-direction: column;
  }

  .article-note-top strong {
    text-align: left;
  }

  .article-note-list div {
    grid-template-columns: 1fr;
  }

  .article-note-list span {
    grid-row: auto;
  }

  .blog-updates-box .btn {
    width: 100%;
  }
}

/* Contact page */
.contact-page {
  background: var(--white);
}

.contact-hero {
  padding: 94px 0 78px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 940px;
}

.contact-hero h1 {
  margin: 20px auto 18px;
  color: var(--dark);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.7px;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.72;
}

.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.contact-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: #374151;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .045);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.contact-main-section,
.contact-reasons-section,
.contact-product-section,
.contact-process-section,
.contact-support-cta {
  padding: 96px 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: start;
}

.contact-copy h2,
.contact-product-card h2,
.contact-process-section .section-heading h2 {
  margin: 18px 0 16px;
  color: var(--dark);
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2.2px;
}

.contact-copy > p,
.contact-product-card p {
  max-width: 660px;
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.72;
}

.contact-info-stack {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(17, 24, 39, .055);
}

.contact-info-card span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.contact-info-card strong {
  color: var(--dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-info-card p {
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #60A5FA);
}

.contact-form-top {
  margin-bottom: 4px;
}

.contact-form-top span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form-top strong {
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-card label {
  display: grid;
  gap: 8px;
}

.contact-form-card label span {
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  color: var(--dark);
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-form-card input,
.contact-form-card select {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form-card textarea {
  min-height: 160px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  background: var(--white);
  border-color: #93C5FD;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.contact-form-card button {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.55;
}

.contact-email-card {
  align-content: start;
}

.contact-email-intro {
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.7;
}

.contact-email-main {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--dark);
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-email-main span,
.contact-email-actions span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-email-main strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.1;
  word-break: break-word;
}

.contact-email-main:hover,
.contact-email-actions a:hover {
  transform: translateY(-2px);
  border-color: #BFDBFE;
  box-shadow: 0 18px 44px rgba(37, 99, 235, .10);
}

.contact-email-actions {
  display: grid;
  gap: 12px;
}

.contact-email-actions a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  padding: 18px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-email-actions span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 13px;
  letter-spacing: 0;
}

.contact-email-actions strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-email-actions small {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-reasons-section,
.contact-process-section {
  background: var(--soft-gray);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.contact-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.contact-reason-card,
.contact-process-step {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .055);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
}

.contact-icon .bi {
  width: 25px;
  height: 25px;
}

.contact-reason-card h3,
.contact-process-step h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.8px;
}

.contact-reason-card p,
.contact-process-step p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

.contact-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 56px;
  background:
    radial-gradient(circle at 88% 22%, rgba(37, 99, 235, .13), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.contact-product-actions,
.contact-support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-process-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.contact-support-cta {
  background: var(--white);
}

.contact-support-cta .cta-box p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.65;
}

.contact-support-cta .btn-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .24);
  box-shadow: none;
}

@media (max-width: 1120px) {
  .contact-main-grid,
  .contact-product-card {
    grid-template-columns: 1fr;
  }

  .contact-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-product-actions,
  .contact-support-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .contact-hero,
  .contact-main-section,
  .contact-reasons-section,
  .contact-product-section,
  .contact-process-section,
  .contact-support-cta {
    padding: 72px 0;
  }

  .contact-hero h1 {
    letter-spacing: -2.2px;
  }

  .contact-main-grid {
    gap: 42px;
  }

  .contact-form-card,
  .contact-product-card {
    padding: 24px;
    border-radius: 24px;
  }

  .form-grid-two,
  .contact-reason-grid,
  .contact-process-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
  }

  .contact-info-card span {
    grid-row: auto;
  }

  .contact-form-card button,
  .contact-product-actions .btn,
  .contact-support-actions .btn {
    width: 100%;
  }
}


/* v09 — Support page */
.support-page {
  background: var(--white);
}

.support-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 78px;
  text-align: center;
}

.support-hero::before {
  content: "";
  position: absolute;
  inset: -220px auto auto 50%;
  width: 820px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 66%);
  pointer-events: none;
}

.support-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.support-hero h1 {
  max-width: 900px;
  margin: 20px auto 18px;
  color: var(--dark);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.7px;
}

.support-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.72;
}

.support-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.support-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: #374151;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .045);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.support-options-section,
.support-before-section,
.support-product-section,
.support-process-section,
.support-faq-section,
.support-final-cta {
  padding: 96px 0;
}

.support-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.support-section-heading h2,
.support-before-copy h2,
.support-product-copy h2 {
  margin: 16px 0 14px;
  color: var(--dark);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.4px;
}

.support-section-heading p,
.support-before-copy p,
.support-product-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center p {
  margin-inline: auto;
}

.support-options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.support-option-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.support-option-card:hover {
  transform: translateY(-4px);
  border-color: #BFDBFE;
  box-shadow: 0 24px 70px rgba(17, 24, 39, .09);
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 17px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, .10);
}

.support-icon .bi {
  width: 27px;
  height: 27px;
}

.support-option-card h3,
.support-check-card h3,
.support-process-step h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.8px;
}

.support-option-card p,
.support-process-step p {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

.support-option-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.support-option-card a::after {
  content: "→";
  font-size: 17px;
  line-height: 1;
}

.support-before-section,
.support-process-section,
.support-faq-section {
  background: var(--soft-gray);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.support-before-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.support-check-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.support-check-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.support-check-card li {
  position: relative;
  min-height: 28px;
  padding-left: 40px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.support-check-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .08em;
  width: 24px;
  height: 24px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;
}

.support-check-card li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: .55em;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.support-product-section {
  background: var(--white);
}

.support-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .88fr);
  gap: 54px;
  align-items: center;
  padding: 58px;
  background:
    radial-gradient(circle at 92% 14%, rgba(37, 99, 235, .13), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.support-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-topic-grid span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 50px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(17, 24, 39, .045);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.support-topic-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;
}

.support-topic-grid span::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 6px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.support-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.support-process-step {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, .055);
}

.support-process-step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.support-final-cta {
  background: var(--white);
}

.support-final-box p:not(.section-kicker) {
  max-width: 720px;
  margin: 14px auto 0;
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1160px) {
  .support-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-before-grid,
  .support-product-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .support-product-card {
    gap: 36px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 780px) {
  .support-hero,
  .support-options-section,
  .support-before-section,
  .support-product-section,
  .support-process-section,
  .support-faq-section,
  .support-final-cta {
    padding: 72px 0;
  }

  .support-hero h1 {
    letter-spacing: -2.2px;
  }

  .support-options-grid,
  .support-topic-grid,
  .support-process-grid {
    grid-template-columns: 1fr;
  }

  .support-option-card,
  .support-check-card,
  .support-product-card,
  .support-process-step,
  .support-final-box {
    padding: 24px;
    border-radius: 24px;
  }

  .support-option-card {
    min-height: 0;
  }

  .support-product-actions .btn,
  .support-final-box .btn {
    width: 100%;
  }
}

/* v10 — Single-source multilingual fleet section */
.cr-multilingual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, .10), transparent 30%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.cr-multilingual-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.cr-multilingual-copy p + p {
  margin-top: 18px;
}

.cr-multilingual-model {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.cr-multilingual-model::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(248, 250, 252, 0));
  pointer-events: none;
}

.cr-multilingual-model > * {
  position: relative;
  z-index: 1;
}

.cr-multilingual-model-header {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cr-multilingual-model-header span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  color: var(--primary);
  background: rgba(37, 99, 235, .08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.cr-multilingual-model-header strong {
  max-width: 260px;
  color: var(--dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  text-align: right;
}

.cr-multilingual-flow {
  display: grid;
  gap: 14px;
}

.cr-multilingual-flow article {
  position: relative;
  padding: 20px 20px 20px 70px;
  background: rgba(248, 250, 252, .88);
  border: 1px solid var(--light-gray);
  border-radius: 18px;
}

.cr-multilingual-flow article > span {
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--primary);
  background: rgba(37, 99, 235, .10);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.cr-multilingual-flow h3 {
  margin: 0 0 7px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.2px;
}

.cr-multilingual-flow p {
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.6;
}

.cr-multilingual-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.cr-multilingual-features div {
  position: relative;
  min-height: 74px;
  padding: 18px 18px 18px 44px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .04);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.cr-multilingual-features div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .10);
}

.cr-multilingual-note {
  margin-top: 18px;
  padding: 20px 22px;
  color: var(--secondary);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.65;
}

.cr-multilingual-note strong {
  color: var(--dark);
}

@media (max-width: 1180px) {
  .cr-multilingual-grid {
    grid-template-columns: 1fr;
  }

  .cr-multilingual-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cr-multilingual-model {
    padding: 22px;
    border-radius: 24px;
  }

  .cr-multilingual-model-header {
    display: block;
    padding: 10px;
  }

  .cr-multilingual-model-header strong {
    display: block;
    max-width: none;
    margin-top: 14px;
    text-align: left;
  }

  .cr-multilingual-flow article {
    padding: 68px 18px 18px;
  }

  .cr-multilingual-flow {
    padding-inline: 6px;
  }

  .cr-multilingual-features {
    grid-template-columns: 1fr;
  }

  .cr-multilingual-features div {
    min-height: 0;
  }
}


/* Documentation page */
.docs-page {
  background: var(--white);
}

.docs-hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, .10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.docs-hero__inner {
  max-width: 900px;
}

.docs-hero h1 {
  max-width: 850px;
  margin: 20px 0 18px;
  color: var(--dark);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.docs-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.7;
}

.docs-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.docs-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.docs-main {
  padding: 48px 0 96px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.docs-layout > *,
.docs-sidebar,
.docs-toc,
.docs-content,
.docs-card {
  min-width: 0;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
}

.docs-toc {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
}

.docs-toc__title {
  display: block;
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.docs-toc nav {
  display: grid;
  gap: 4px;
}

.docs-toc a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.docs-toc a:hover {
  background: rgba(37, 99, 235, .08);
  color: var(--primary);
}

.docs-content {
  display: grid;
  gap: 22px;
}

.docs-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  scroll-margin-top: 110px;
}

.docs-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.docs-card h2 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.docs-card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.25;
}

.docs-card p {
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.75;
}

.docs-card p:last-child {
  margin-bottom: 0;
}

.docs-card ul,
.docs-card ol {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.65;
}

.docs-card li::marker {
  color: var(--primary);
  font-weight: 800;
}

.docs-path {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.docs-code {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin: 14px 0 18px;
  border: 1px solid #1f2a44;
  border-radius: 14px;
  background: #0f172a;
  color: #e5eefc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: auto;
}

.docs-code--stack {
  white-space: pre-line;
}

.docs-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.docs-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.docs-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-mini-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f9fafb;
}

.docs-mini-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.docs-mini-card ul {
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 15px;
}

.docs-grid + .docs-after-grid {
  margin-top: 26px;
}

.docs-note,
.docs-example {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(37, 99, 235, .08);
  color: #1f2937;
  font-size: 15px;
  line-height: 1.65;
}

.docs-example strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
}

.docs-example ul {
  margin-bottom: 0;
}

.docs-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.docs-checklist span {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f9fafb;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
}

.docs-checklist span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.docs-shortcodes {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.docs-shortcodes > div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f9fafb;
}

.docs-shortcodes span {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
}

.docs-shortcodes .docs-code {
  margin: 0;
}

.docs-support-cta {
  padding: 56px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 34%),
    var(--dark);
  text-align: center;
}

.docs-support-cta h2 {
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.docs-support-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.7;
}

.docs-support-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }

  .docs-toc {
    overflow-x: visible;
  }

  .docs-toc nav {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .docs-toc a {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .docs-grid--2,
  .docs-grid--3,
  .docs-checklist {
    grid-template-columns: 1fr;
  }

  .docs-card {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .docs-hero {
    padding: 72px 0 42px;
  }

  .docs-main {
    padding: 36px 0 72px;
  }

  .docs-card {
    padding: 22px;
    border-radius: 20px;
  }

  .docs-path {
    white-space: normal;
  }

  .docs-support-cta {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .docs-support-cta__actions {
    flex-direction: column;
  }

  .docs-support-cta__actions .btn {
    width: 100%;
  }
}

.docs-mini-card .docs-code:last-child {
  margin-bottom: 0;
}

/* v14 — 2o2 Car Rental Pro pricing block */
.cr-pricing {
  padding: 96px 0;
  background: #f9fafb;
}

.cr-pricing__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.cr-pricing__header h2 {
  margin: 20px 0 18px;
  color: #111827;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cr-pricing__header p {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .cr-pricing__header p {
    font-size: 13px;
  }
}

.cr-pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.cr-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.cr-price-card--featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.14);
}

.cr-price-card__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.cr-price-card__top h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cr-price-card__top p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.cr-price-card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 28px 0 16px;
}

.cr-price-card__price span {
  color: #111827;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cr-price-card__price small {
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
}

.cr-price-card__license {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #f3f4f6;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

.cr-price-card__features {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.cr-price-card__features li {
  position: relative;
  padding-left: 24px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}

.cr-price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2563eb;
}

.cr-price-card .btn {
  width: 100%;
  margin-top: auto;
}

.cr-price-card__checkout-note {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
  padding: 16px;
  color: #4b5563;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.cr-price-card__checkout-note strong {
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.cr-price-card__checkout-note span {
  color: #2563eb;
  font-weight: 800;
}

.cr-price-card__checkout-note p {
  margin: 0;
}

.cr-pricing__freemius-note {
  max-width: 960px;
  margin: 20px auto 0;
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.cr-pricing__tax-note {
  max-width: 960px;
  margin: 10px auto 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.cr-pricing__tax-note span {
  display: block;
}

.cr-pricing__lifetime-note {
  max-width: 960px;
  margin: 10px auto 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.cr-pricing__included {
  max-width: 1040px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: #ffffff;
}

.cr-pricing__included h3 {
  margin: 0 0 20px;
  color: #111827;
  font-size: 22px;
  line-height: 1.2;
}

.cr-pricing__feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cr-pricing__feature-grid span {
  position: relative;
  padding: 14px 14px 14px 38px;
  border-radius: 14px;
  background: #f9fafb;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.cr-pricing__feature-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2563eb;
}

.cr-pricing__notes {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr;
  gap: 18px;
  max-width: 1040px;
  margin: 24px auto 0;
}

.cr-pricing__note-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
}

.cr-pricing__note-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 19px;
  line-height: 1.25;
}

.cr-pricing__note-card p,
.cr-pricing__note-card li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cr-pricing__note-card p {
  margin: 0 0 12px;
}

.cr-pricing__note-card p:last-child {
  margin-bottom: 0;
}

.cr-pricing__note-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.cr-pricing__note-card li::marker {
  color: #2563eb;
}

.cr-pricing__help {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}

.cr-pricing__help a:not(.btn) {
  color: #2563eb;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.cr-pricing__help a:not(.btn):hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .cr-pricing__feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr-pricing__notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .cr-pricing {
    padding: 72px 0;
  }

  .cr-pricing__cards {
    grid-template-columns: 1fr;
  }

  .cr-price-card {
    padding: 26px;
    border-radius: 24px;
  }

  .cr-price-card__price span {
    font-size: 44px;
  }

  .cr-pricing__feature-grid {
    grid-template-columns: 1fr;
  }

}


/* Licensing FAQ / Support Policy */
.cr-license-faq {
  padding: 96px 0;
  background: #ffffff;
}

.cr-license-faq__header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.cr-license-faq__header h2 {
  margin: 20px 0 16px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.cr-license-faq__header p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
}

.cr-license-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.cr-license-faq__item {
  padding: 26px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #f9fafb;
}

.cr-license-faq__item h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.3;
}

.cr-license-faq__item p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.cr-license-faq__footer,
.pricing-faq-policy-link {
  margin-top: 32px;
}

.cr-license-faq__footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  text-align: center;
}

.policy-page {
  background: #ffffff;
}

.policy-hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.policy-hero__inner {
  max-width: 860px;
}

.policy-hero h1 {
  margin: 20px 0 18px;
  color: #111827;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.policy-hero p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.policy-section {
  padding: 48px 0 96px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.policy-layout > *,
.policy-sidebar,
.policy-toc,
.policy-content,
.policy-card {
  min-width: 0;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
}

.policy-toc {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.policy-toc span {
  display: block;
  margin-bottom: 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.policy-toc nav {
  display: grid;
  gap: 4px;
}

.policy-toc a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.policy-toc a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.policy-content {
  display: grid;
  gap: 22px;
}

.policy-card {
  padding: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  scroll-margin-top: 110px;
}

.policy-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.policy-card h2 {
  margin: 0 0 24px;
  color: #111827;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.policy-faq {
  padding: 22px 0;
  border-top: 1px solid #e5e7eb;
}

.policy-faq:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.policy-faq h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 19px;
  line-height: 1.3;
}

.policy-faq p,
.policy-faq li {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

.policy-faq p {
  margin: 0 0 14px;
}

.policy-faq p:last-child {
  margin-bottom: 0;
}

.policy-faq ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.policy-faq li::marker {
  color: #2563eb;
}

.policy-note {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: #1f2937;
  font-size: 15px;
  line-height: 1.65;
}

.policy-cta {
  padding: 56px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    #111827;
  text-align: center;
}

.policy-cta h2 {
  max-width: 700px;
  margin: 0 auto 16px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.policy-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.policy-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.docs-related-links {
  padding: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #f9fafb;
}

.docs-related-links h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.docs-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.docs-related-grid a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.docs-related-grid a:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: #2563eb;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  color: #111827;
  backdrop-filter: blur(16px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.cookie-banner__content strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
}

.cookie-banner__content p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-banner__actions a {
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner__actions a:hover {
  color: #1d4ed8;
}

.cookie-banner__actions button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-banner__actions button:hover {
  background: #1d4ed8;
}

@media (max-width: 1100px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .policy-toc {
    overflow-x: visible;
  }

  .policy-toc nav {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .policy-toc a {
    white-space: normal;
  }

  .docs-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .cr-license-faq {
    padding: 72px 0;
  }

  .cr-license-faq__grid {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    padding: 72px 0 42px;
  }

  .policy-section {
    padding: 36px 0 72px;
  }

  .policy-card {
    padding: 24px;
    border-radius: 20px;
  }

  .policy-cta {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .policy-cta__actions {
    flex-direction: column;
  }

  .policy-cta__actions .btn {
    width: 100%;
  }

  .docs-related-links {
    padding: 24px;
  }

  .docs-related-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

/* 2o2code Spamless Forms documentation */
.docs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}

.docs-breadcrumb a {
  color: var(--primary);
}

.docs-breadcrumb a:hover {
  text-decoration: underline;
}

.zsf-hero-actions,
.zsf-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.zsf-docs-layout {
  grid-template-columns: 300px minmax(0, 1fr);
}

.zsf-docs-page .docs-toc {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.zsf-docs-page .docs-toc a.is-current {
  background: rgba(37, 99, 235, .10);
  color: var(--primary);
}

.zsf-docs-page .docs-toc a:focus-visible,
.zsf-docs-page a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .30);
  outline-offset: 3px;
}

.zsf-callout {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: rgba(37, 99, 235, .07);
}

.zsf-callout--recommended {
  border-left-color: #16a34a;
  background: #f0fdf4;
}

.zsf-callout--warning {
  border-left-color: #d97706;
  background: #fffbeb;
}

.zsf-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 15px;
}

.zsf-callout p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.65;
}

.zsf-definition-grid,
.zsf-setting-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 20px 0 0;
}

.zsf-definition-grid div,
.zsf-setting-summary div {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.zsf-definition-grid dt,
.zsf-setting-summary dt,
.zsf-setting dt {
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.zsf-definition-grid dd,
.zsf-setting-summary dd,
.zsf-setting dd {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

.zsf-docs-figure {
  margin: 28px 0 0;
}

.zsf-docs-figure a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f3f4f6;
}

.zsf-docs-figure img {
  width: 100%;
  height: auto;
}

.zsf-docs-figure figcaption {
  margin-top: 10px;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.6;
}

.zsf-table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.55;
}

.zsf-table th,
.zsf-table td {
  padding: 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.zsf-table thead th {
  background: #f9fafb;
  color: var(--dark);
  font-size: 13px;
}

.zsf-table tbody th {
  color: var(--dark);
  font-weight: 800;
}

.zsf-example-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.zsf-example-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(37, 99, 235, .30);
}

.zsf-steps li {
  padding-left: 5px;
}

.zsf-check-list {
  list-style: none;
  padding-left: 0 !important;
}

.zsf-check-list li {
  position: relative;
  padding-left: 30px;
}

.zsf-check-list li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.zsf-integration-list,
.zsf-configurations,
.zsf-troubleshooting,
.zsf-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 22px 0;
}

.zsf-integration-list section,
.zsf-configurations section,
.zsf-troubleshooting section,
.zsf-faq-list section {
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.zsf-integration-list section p,
.zsf-configurations section p,
.zsf-troubleshooting section p,
.zsf-faq-list section p {
  margin-bottom: 0;
  font-size: 15px;
}

.zsf-troubleshooting section ul {
  margin-bottom: 0;
  font-size: 15px;
}

.zsf-setting {
  padding: 28px 0 10px;
  border-top: 1px solid var(--border);
}

.zsf-setting:first-of-type {
  margin-top: 26px;
}

.zsf-setting h3 {
  font-size: 22px;
}

.zsf-setting dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 18px 0;
}

.zsf-setting dl div {
  padding: 13px 0;
  border-top: 1px solid #eef0f3;
}

.zsf-setting p {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .zsf-docs-layout {
    grid-template-columns: 1fr;
  }

  .zsf-docs-page .docs-toc {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .zsf-hero-actions,
  .zsf-support-actions {
    flex-direction: column;
  }

  .zsf-hero-actions .btn,
  .zsf-support-actions .btn {
    width: 100%;
  }

  .zsf-definition-grid,
  .zsf-setting-summary,
  .zsf-integration-list,
  .zsf-configurations,
  .zsf-troubleshooting,
  .zsf-faq-list,
  .zsf-setting dl {
    grid-template-columns: 1fr;
  }

  .zsf-table,
  .zsf-table tbody,
  .zsf-table tr,
  .zsf-table th,
  .zsf-table td {
    display: block;
    width: 100%;
  }

  .zsf-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .zsf-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--border);
  }

  .zsf-table th,
  .zsf-table td {
    border: 0;
    border-bottom: 1px solid var(--border);
  }

  .zsf-table tr > :last-child {
    border-bottom: 0;
  }

  .zsf-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .zsf-callout {
    padding: 16px;
  }

  .zsf-docs-figure a {
    border-radius: 10px;
  }
}

/* Documentation hub */
.documentation-hub-hero .docs-hero__inner {
  max-width: 820px;
}

.documentation-hub-main {
  padding: 72px 0 96px;
  background: var(--white);
}

.documentation-hub-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.documentation-hub-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.documentation-hub-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
}

.documentation-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.documentation-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.documentation-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.documentation-card__header > span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.documentation-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary);
  font-size: 25px;
}

.documentation-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.documentation-card:nth-child(2) .documentation-card__icon {
  background: var(--light-gray);
  color: var(--dark);
}

.documentation-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.documentation-card > p {
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
}

.documentation-card__topics {
  margin: 24px 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.documentation-card__topics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.documentation-card__topics ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.documentation-card__topics li {
  position: relative;
  padding-left: 18px;
  color: var(--secondary);
  font-size: 14px;
}

.documentation-card__topics li::before {
  position: absolute;
  top: .75em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
  transform: translateY(-50%);
}

.documentation-card .btn {
  align-self: flex-start;
  margin-top: auto;
  white-space: normal;
  text-align: center;
}

.documentation-hub-page a:focus-visible,
.documentation-hub-page button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 3px;
}

.documentation-hub-support {
  margin-top: 56px;
}

@media (max-width: 900px) {
  .documentation-hub-heading {
    display: block;
  }

  .documentation-hub-heading > p {
    margin-top: 16px;
  }

  .documentation-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .documentation-hub-main {
    padding: 48px 0 64px;
  }

  .documentation-card {
    padding: 24px 20px;
  }

  .documentation-card__topics ul {
    grid-template-columns: 1fr;
  }

  .documentation-card .btn {
    width: 100%;
  }
}
