/* ── Brand tokens ── */
:root {
  --cream:  #F1EEE9;
  --dark:   #15151C;
  --yellow: #FFE500;
  --navy:   #002660;
  --gray:   #B5B9BC;
}

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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.6 !important;
  overflow-x: hidden;
}

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


/* ── Remove Bootstrap navbar gap ── */
.navbar-fixed-top { margin-bottom: 0 !important; }

/* ── XLsoft logo: no tint, no hover effect ── */
.navbar-brand,
.navbar-brand:hover,
.navbar-brand:focus { opacity: 1 !important; }

/* ── Site Header ── */
.site-header {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 125px;
  height: 100px;
}

.header-logo {
  height: 45px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-btn {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  background: none;
  transition: color .2s;
  margin-right: 40px;
}

.header-btn:hover,
.header-btn.active {
  color: var(--yellow);
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
/* X animation when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    height: auto;
    padding: 0 24px;
    min-height: 100px;
  }

  .hero { padding-left: 24px; padding-right: 24px; }

  .hamburger { display: flex; }

  .header-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 12px 0 16px;
    gap: 8px;
  }

  .header-nav.nav-open { display: flex; }

  .header-btn {
    margin-right: 0;
    text-align: center;
    padding: 12px 16px;
  }
}

nav { display: flex; gap: 32px; }
nav a { color: #fff; font-size: 0.9rem; opacity: 0.85; transition: opacity .2s; }
nav a:hover { opacity: 1; }

.nav-cta {
  background: var(--yellow);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  opacity: 1 !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(to bottom, var(--dark), var(--navy));
  color: #fff;
  padding: 96px 125px 80px;
  text-align: left;
}


.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  max-width: 1000px;
  margin: 0 0 20px;
}

.hero h1 span { color: var(--yellow); }

.hero p {
  color: #fff;
  max-width: 950px;
  margin: 0 0 35px;
  font-size: 30px;
  line-height: 1.7 !important;
}

.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: filter .2s;
}
.btn-primary:hover { filter: brightness(1.08); }

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: #fff; color: var(--dark); }

/* ── SECTION WRAPPER ── */
section { padding: 80px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  color: #555;
  max-width: 820px;
  margin: 0 auto 48px;
  font-size: 20px;
  text-align: left;
  line-height: 1.8 !important;
}

/* ── PARTNER BANNER ── */
.partner-banner {
  background: #fff;
  padding: 56px 125px;
  border-top: 4px solid var(--yellow);
  border-bottom: 1px solid #e0ddd8;
}
.partner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 48px;
}
.partner-left {
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 40px;
  min-width: 170px;
}
.partner-years {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.partner-years-num {
  font-size: 80px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.partner-years-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
  margin-top: 6px;
}
.partner-handshake-icon {
  font-size: 30px;
  color: rgba(0,0,0,0.3);
}
.partner-divider {
  width: 1px;
  background: #e0ddd8;
  flex-shrink: 0;
  align-self: stretch;
}
.partner-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.partner-eyebrow {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.partner-eyebrow i { padding-bottom: 5px; }

.partner-body {
  color: #313131;
  font-size: 0.975rem;
  font-weight: 540;
  line-height: 1.9 !important;
  margin-bottom: 10px;
}
.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.partner-chips span {
  background: var(--cream);
  border: 1px solid #ccc;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.partner-chips span i { font-size: 0.62rem; color: var(--navy); }

@media (max-width: 900px) {
  .partner-banner { padding: 40px 24px; }
  .partner-inner { flex-direction: column; gap: 24px; align-items: stretch; }
  .partner-left { flex-direction: row; gap: 20px; padding: 20px 28px; min-width: unset; justify-content: center; border-radius: 8px; }
  .partner-divider { display: none; }
}

/* ── PRODUCT GRID ── */
.products-bg { background: var(--cream); }

.product-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto 24px;
  max-width: 860px;
}

.product-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: grey;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.product-card-universal {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.universal-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.universal-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.product-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.10); transform: translateY(-3px); }

.product-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-icon svg { fill: #fff; width: 22px; height: 22px; }

.product-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.product-logo { height: 32px; width: auto; margin-bottom: 8px; display: block; }
.product-card-row { display: flex; align-items: flex-end; gap: 16px; }
.product-card-row .product-logo { margin-bottom: 0; flex-shrink: 0; display: inline-block; }
.product-card-row p { font-size: 1.5rem; font-weight: 600; color: #333; margin: 0; line-height: 1; }
.product-card p  { font-size: 20px; color: #555; margin-bottom: 8px; margin-left: 0px;}

.card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link::after { content: "→"; transition: transform .2s; }
.card-link:hover::after { transform: translateX(4px); }

/* ── FEATURE ROWS ── */
.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }

.feature-row-stacked { margin-bottom: 96px; }
.feature-row-stacked .feature-text { margin-bottom: 40px; }

.sync-diagram {
  display: grid;
  grid-template-columns: 1fr 100px auto 100px 1fr;
  align-items: stretch;
  padding: 0 32px;
  height: 380px;
}

.sync-nodes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 0;
  min-width: 0;
}

.sync-nodes-right { align-items: flex-start; justify-content: center; }

.sync-desc {
  font-size: 0.68rem;
  color: #888;
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.3;
}

.sync-node {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 6px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  height: 40px;
}
.sync-node i { width: 16px; text-align: center; color: #555; }
.sync-node-right { flex-direction: row-reverse; }

.sync-lines-svg { width: 100%; height: 100%; align-self: stretch; }

.sync-center {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 230px;
  align-self: center;
}
.sync-center-header {
  background: var(--dark);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sync-center-body {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sync-feature {
  padding: 16px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  border: 0.5px solid #e0ddd8;
  line-height: 1.4;
}
.feature-row.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1 1 40%; }
.feature-text .section-label { color: var(--navy); }
.feature-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.feature-text p  { color: #555; margin-bottom: 24px; }

.feature-visual {
  flex: 1 1 55%;
  border-radius: 12px;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.feature-img-arc {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 12px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--cream);
  padding: 76px 76px;
  margin-bottom: 70px;
}
.stats-inner {
  max-width: 1100px;
  margin: auto auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.stats-heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
  margin: auto;
  padding-bottom: 28px;
}
.stats-cta {
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  margin: auto;
}

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-top: 4px solid var(--navy);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { font-size: 0.875rem; color: #555; line-height: 1.6; }

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.info-card {
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 28px;
  background-color: #fff;
}
.info-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--navy);}
.info-card p  { font-size: 0.875rem; color: var(--dark); margin-bottom: 20px; }
.info-card a  { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.info-card a:hover { text-decoration: underline; }
.support-links { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }
.support-link { display: flex; align-items: flex-start; gap: 12px; text-decoration: none; outline: none; }
.support-link:focus, .support-link:focus-visible { outline: none; }
.support-link-icon { font-size: 1.5rem; color: var(--navy); flex-shrink: 0; line-height: 1.4; }
.support-link .support-link-title { font-size: 1.0rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-decoration: underline; line-height: 1.4; }
.info-card .support-link:hover { text-decoration: none; }
.info-card .newsroom-link { display: inline-block; margin-top: 8px; font-size: 1.0rem; font-weight: 700; color: var(--navy); text-decoration: underline; line-height: 1.4; outline: none; }
.info-card .newsroom-link:hover { opacity: 0.75; text-decoration: underline; }
.support-link:hover .support-link-title { opacity: 0.75; }
.support-link:hover .support-link-icon { opacity: 1; }
.support-link .support-link-desc { text-decoration: none; }
.support-link:hover .support-link-desc { text-decoration: none; opacity: 1; }
.support-link .support-link-desc { font-size: 0.825rem; color: var(--dark); font-weight: 400; margin-bottom: 0; }


/* ── FOOTER ── */
.cdata-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 48px;
}
.cdata-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 45px 140px;
  justify-content: center;
}
.cdata-footer .footer-col h4 { color: var(--yellow); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.cdata-footer .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cdata-footer .footer-col ul li a { font-size: 1rem; color: var(--cream); transition: color .2s; }
.cdata-footer .footer-col ul li a:hover { color: var(--yellow); }

.cdata-footer .footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (min-width: 1200px) {
  .sync-diagram { grid-template-columns: 1fr 80px auto 80px 1fr; max-width: 960px; margin: 0 auto; }
}

@media (max-width: 1024px) {
  .sync-diagram { padding: 0 16px; }
}

@media (max-width: 930px) {
  .sync-diagram {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 16px;
  }
  .sync-nodes { flex: unset; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; }
  .sync-nodes-right { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .sync-node, .sync-node-right { flex-direction: row; }
  .sync-lines-svg { display: none; }
  .sync-center { width: 100%; }
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  section { padding: 56px 20px; }
  .feature-row,
  .feature-row.reverse { flex-direction: column; gap: 32px; }
  .stats-strip { padding: 40px 20px; }
  .cta-banner { padding: 56px 20px; }
  footer { padding: 40px 20px; }
  .footer-inner { justify-content: flex-start; }
  .footer-bottom { justify-content: flex-start; }
  .product-columns { grid-template-columns: 1fr; max-width: 420px; }
  .product-card-universal { max-width: 420px; }
}

@media (max-width: 900px) {
  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 2.6rem; }
}

/* ── SUPPORT PAGE ── */
.support-page-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  text-decoration: underline;
}

.support-page-intro {
  color: var(--dark);
  font-size: 1rem;
  max-width: 820px;
  margin-bottom: 40px;
  line-height: 1.8 !important;
}

.support-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.support-section {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 32px;
}

.support-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-section p {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8 !important;
}

.support-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-link-list a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.support-link-list a:hover { color: var(--dark); text-decoration: underline; }
.support-link-list i { font-size: 0.7rem; }

.support-eligibility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.support-eligibility-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}
.support-eligibility-list i { color: var(--navy); }

.support-updates {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 32px;
}
.support-updates p { color: #555; margin-top: 12px; font-size: 0.95rem; }

.support-product-grid { display: none; }

/* ── Info card grid ── */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.info-card-item {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.info-card-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.10); transform: translateY(-3px); }

.info-card-thumb {
  background: var(--cream);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.info-card-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.info-card-thumb-dark { background: var(--dark); }

.info-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.info-card-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.info-card-desc {
  font-size: 0.875rem;
  color: #555;
  flex: 1;
  line-height: 1.6;
}

.info-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: color .2s;
}
.info-card-link:hover { color: var(--dark); text-decoration: underline; }

.support-product-desc {
  color: #555;
  font-size: 0.95rem;
  flex: 1;
}

@media (max-width: 900px) {
  .support-content-grid { grid-template-columns: 1fr; }
  .support-product-grid { grid-template-columns: 1fr 1fr; }
  .info-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .support-product-grid { grid-template-columns: 1fr; }
  .info-card-grid { grid-template-columns: 1fr; }
}

/* ── PRICING PAGE ── */
.pricing-table {
  border: 1px solid var(--navy);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

.pricing-column {
  grid-row: 1 / 6;
  display: grid;
  grid-template-rows: subgrid;
}
.pricing-column:first-child {
  border-right: 1px solid var(--navy);
}

.pricing-col-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 20px;
}

.pricing-sub-header {
  background: var(--gray);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  opacity: 0.82;
  border-top: 1px solid var(--navy);
}

.pricing-cell {
  background: #fff;
  padding: 20px;
  font-size: 0.9rem;
}

.pricing-cell-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.pricing-cell-list {
  list-style: disc;
  padding-left: 18px;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.6 !important;
}

.pricing-cell-text {
  color: #444;
  line-height: 1.7 !important;
}

.pricing-note {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 24px;
}

.pricing-footnotes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7 !important;
  margin-top: 16px;
  width: 100%;
}

.pricing-contact-box {
  background: var(--cream);
  border: 1px solid var(--navy);
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 8px;
}

.pricing-contact-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-contact-list {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.7 !important;
}

.pricing-contact-example {
  display: block;
  margin-top: 6px;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.8 !important;
}

@media (max-width: 700px) {
  .pricing-columns-wrap { grid-template-columns: 1fr; grid-template-rows: none; }
  .pricing-column { grid-row: auto; grid-template-rows: none; display: flex; flex-direction: column; }
  .pricing-column:first-child { border-right: none; border-bottom: 1px solid #ccc; }
}