/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/styles/cms-page.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
/* CMS page content – same width as header (logo to last nav link), like blog page */
.cms-page.wrap {
  max-width: var(--content-max-width, 1200px);
  margin: 0 auto;
  padding: 2rem var(--content-padding-x, 1.5rem);
  width: 100%;
  box-sizing: border-box;
}

.cms-page-loading,
.cms-page-error {
  color: var(--text-muted);
  margin: 2rem 0;
}

.cms-page-error {
  color: var(--accent-red);
}

.cms-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.cms-page-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cms-page-breadcrumb {
  margin-bottom: 0.6rem;
  font-size: var(--font-size-body);
  color: var(--text-muted);
}

.cms-page-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.cms-page-breadcrumb a:hover {
  text-decoration: underline;
}

.cms-page-content {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 0 0 0.5rem;
}

.cms-page-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-primary);
}

.cms-page-content h1:first-child {
  margin-top: 0;
}

.cms-page-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-primary);
}

.cms-page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--text-primary);
}

.cms-page-content p {
  margin: 0 0 1rem;
}

.cms-page-content ul,
.cms-page-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.cms-page-content a {
  color: var(--accent-red);
  text-decoration: none;
}

.cms-page-content a:hover {
  text-decoration: underline;
  color: var(--accent-red-hover, #c93535);
}

/* Prevent layout shift: images in CMS content */
.cms-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hide Google Play / app store badge elements that look out of place in CMS content */
.cms-page-content img[alt*="Google Play"],
.cms-page-content img[alt*="GetItOn"],
.cms-page-content img[alt*="Get it on"],
.cms-page-content img[alt*="App Store"],
.cms-page-content a:has(img[alt*="Google Play"]),
.cms-page-content a:has(img[alt*="GetItOn"]) {
  display: none !important;
}

.cms-page-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cms-page-back {
  color: var(--accent-red);
  text-decoration: none;
  font-size: var(--font-size-body);
  font-weight: 500;
}

.cms-page-back:hover {
  text-decoration: underline;
  color: var(--accent-red-hover, #c93535);
}

.cms-page-footer-sep {
  color: var(--text-muted);
  font-weight: 400;
}

.cms-page-date {
  display: block;
  font-size: var(--font-size-body);
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.cms-page-content + .cms-page-footer {
  margin-top: 2rem;
}

/* Responsive: same content width, reduced padding on small screens */
@media (max-width: 640px) {
  .cms-page.wrap {
    padding: 1.25rem var(--content-padding-x, 1rem);
  }

  .cms-page-title {
    font-size: 1.5rem;
  }

  .cms-page-content {
    font-size: var(--font-size-body);
  }

  .cms-page-content h1 {
    font-size: 1.25rem;
  }

  .cms-page-content h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 380px) {
  .cms-page.wrap {
    padding: 1rem 0.75rem;
  }

  .cms-page-title {
    font-size: 1.35rem;
  }
}

/* ----- Blog post layout (article with metadata, hero image, rich text) ----- */
.cms-blog .cms-blog-header {
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: none;
}

.cms-blog-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cms-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: var(--font-size-body);
  color: var(--text-muted);
  list-style: none;
}

.cms-blog-meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.cms-blog-meta-row dt {
  margin: 0;
  font-weight: 500;
  color: var(--text-secondary);
}

.cms-blog-meta-row dd {
  margin: 0;
  color: var(--text-muted);
}

.cms-blog-meta-row time {
  color: var(--text-muted);
}

.cms-blog-hero {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--border-light, #e5e7eb);
}

.cms-blog-hero-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
  max-height: 420px;
}

.cms-blog-hero-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cms-blog-hero-placeholder-text {
  font-size: var(--font-size-body);
  color: var(--text-muted);
}

.cms-blog-content {
  padding-top: 0.25rem;
  font-size: var(--font-size-body);
}

/* Rich text from editor: headings, lists, bold, links, hr */
.cms-blog-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  color: var(--text-primary);
}

.cms-blog-content h1:first-child {
  margin-top: 0;
}

.cms-blog-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-primary);
}

.cms-blog-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-primary);
}

.cms-blog-content h4,
.cms-blog-content h5,
.cms-blog-content h6 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1rem 0 0.4rem;
  color: var(--text-primary);
}

.cms-blog-content p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.cms-blog-content ul,
.cms-blog-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.cms-blog-content li {
  margin-bottom: 0.35rem;
}

.cms-blog-content strong {
  font-weight: 600;
}

.cms-blog-content a {
  color: var(--accent-red);
  text-decoration: none;
}

.cms-blog-content a:hover {
  text-decoration: underline;
  color: var(--accent-red-hover, #c93535);
}

.cms-blog-content hr {
  margin: 1.75rem 0;
  border: none;
  border-top: 1px solid var(--border-light);
}

.cms-blog-content blockquote {
  margin: 1rem 0;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 3px solid var(--border-light);
  color: var(--text-muted);
  font-style: italic;
}

.cms-blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
  border-radius: 0.25rem;
}

.cms-blog-content pre,
.cms-blog-content code {
  font-family: ui-monospace, monospace;
  font-size: var(--font-size-body);
}

.cms-blog-content pre {
  margin: 1rem 0;
  padding: 1rem;
  overflow-x: auto;
  background: var(--border-light, #f3f4f6);
  border-radius: 0.25rem;
}

.cms-blog-content code {
  padding: 0.15em 0.35em;
  background: var(--border-light, #f3f4f6);
  border-radius: 0.2em;
}

@media (max-width: 640px) {
  .cms-blog-title {
    font-size: 1.5rem;
  }

  .cms-blog-meta {
    flex-direction: column;
    gap: 0.15rem;
  }

  .cms-blog-hero-placeholder {
    min-height: 200px;
  }
}

/* Quill alignment classes from CMS (home + legal pages) */
.cms-page-content .ql-align-left,
.cms-home-cms-body .ql-align-left {
  text-align: left;
}

.cms-page-content .ql-align-center,
.cms-home-cms-body .ql-align-center {
  text-align: center;
}

.cms-page-content .ql-align-right,
.cms-home-cms-body .ql-align-right {
  text-align: right;
}

.cms-page-content .ql-align-justify,
.cms-home-cms-body .ql-align-justify {
  text-align: justify;
}

.cms-home-cms-body {
  font-size: var(--font-size-body);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.cms-home-cms-body h1,
.cms-home-cms-body h2,
.cms-home-cms-body h3 {
  text-align: left;
}

.cms-page-content blockquote.content-card,
.cms-home-cms-body blockquote.content-card {
  border: 1px solid var(--border-light, #e8e8e8);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  background: #fafafa;
  border-left: 4px solid var(--accent-red, #e03d3d);
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/styles/pricing-sections.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
/* Light-theme pricing (aligned with airestro header width via parent .ar-container) */
.pricing-tiers,
.pricing-compare {
  width: 100%;
  margin: 0 0 3rem;
}

.pricing-tiers-h2,
.pricing-compare-h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #0a0a0a;
}

.pricing-tiers-sub,
.pricing-compare-sub {
  margin: 0 0 1.5rem;
  color: #4a5568;
  font-size: var(--font-size-body);
  line-height: 1.55;
  max-width: 42rem;
}

.pricing-tiers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pricing-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-tier-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.5rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.pricing-tier-card--featured {
  border-color: rgba(5, 130, 76, 0.45);
  box-shadow: 0 8px 32px rgba(5, 130, 76, 0.12);
}

.pricing-tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #05824c;
  background: rgba(5, 130, 76, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  margin: 0 0 0.5rem;
  width: fit-content;
}

.pricing-tier-name {
  font-size: var(--font-size-body);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 0.25rem;
}

.pricing-tier-card--featured .pricing-tier-name {
  color: #05824c;
}

.pricing-tier-tagline {
  font-size: var(--font-size-body);
  color: #6b7280;
  line-height: 1.4;
  margin: 0 0 0.75rem;
  min-height: 2.5rem;
}

.pricing-tier-price {
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 0.25rem;
}

.pricing-tier-card--featured .pricing-tier-price {
  color: #05824c;
}

.pricing-tier-price-sub,
.pricing-tier-note {
  font-size: var(--font-size-body);
  color: #6b7280;
  line-height: 1.4;
  margin: 0 0 0.4rem;
}

.pricing-tier-note {
  font-style: italic;
  margin-bottom: 0.9rem;
}

.pricing-tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0 1rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: var(--font-size-body);
  font-weight: 700;
  text-decoration: none;
  color: #111;
  border: 1px solid #d1d5db;
  background: #fff;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.pricing-tier-cta:hover {
  border-color: #05824c;
  color: #05824c;
}

.pricing-tier-cta--primary {
  background: #05824c;
  color: #fff;
  border-color: #05824c;
}

.pricing-tier-cta--primary:hover {
  background: #046b3f;
  border-color: #046b3f;
  color: #fff;
}

.pricing-tier-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-body);
  line-height: 1.5;
  color: #374151;
  flex: 1;
}

.pricing-tier-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.pricing-tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #05824c;
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-tier-compare {
  margin: 1rem 0 0;
  font-size: var(--font-size-body);
  color: #9ca3af;
}

/* Comparison table */
.pricing-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
}

.pricing-compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: var(--font-size-body);
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 0.65rem 0.9rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-compare-table th[scope='row'] {
  text-align: left;
  font-weight: 500;
  color: #1f2937;
  width: 38%;
  background: #fff;
}

.pricing-compare-table thead th {
  background: #f3f4f6;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
}

.pricing-compare-table tbody tr:last-child th,
.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-compare-table td {
  color: #05824c;
  font-weight: 700;
}

.pricing-compare-table td:empty {
  color: #9ca3af;
}

/* Tablet: two columns for tiers; phones stay one column in base rules */
@media (min-width: 640px) and (max-width: 899px) {
  .pricing-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .pricing-tiers-sub,
  .pricing-compare-sub {
    max-width: none;
  }

  .pricing-compare-h2,
  .pricing-tiers-h2 {
    font-size: 1.25rem;
  }

  .pricing-compare-table th,
  .pricing-compare-table td {
    padding: 0.5rem 0.45rem;
    font-size: var(--font-size-body);
  }

  .pricing-compare-table thead th {
    font-size: 0.62rem;
  }
}

/* Improve horizontal scroll affordance on very small viewports */
@media (max-width: 480px) {
  .pricing-tier-card {
    padding: 1.1rem 1rem 1.25rem;
  }

  .pricing-compare-table-wrap {
    border-radius: 10px;
    margin: 0 -0.15rem;
  }
}

