/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Sora', var(--font-family-sans);
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
}

/* Landing palette and component styles */
:root {
  --bg: #f8fafc;           /* slate-50 */
  --surface: #ffffff;      /* white */
  --surface-secondary: #f1f5f9;
  --chrome-surface: #e7ecef;
  --chrome-border: #cfd8df;
  --text: #0f172a;         /* slate-900 */
  --muted: #475569;        /* slate-600 */
  --border: #e2e8f0;       /* slate-200 */
  --primary: #4f46e5;      /* indigo-600 */
  --primary-600: #4338ca;  /* indigo-700 */
  --primary-50: #eef2ff;   /* indigo-50 */
  --accent: #06b6d4;       /* cyan-500 */
  --accent-600: #0891b2;   /* cyan-600 */
}

/* Button system */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 8px 16px;
  border-radius: 10px;
  transition: transform .08s ease, box-shadow .2s ease;
  color: inherit;
}

.btn:active { transform: translateY(1px); }

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-600);
  border-color: var(--primary-600);
  color: #fff;
  box-shadow: 0 8px 22px rgba(67, 56, 202, 0.22);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 18px;
}

.btn-outline-secondary {
  color: var(--muted);
  border-color: var(--border);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  color: var(--text);
  border-color: var(--muted);
  background-color: #fff;
}

/* Utility */
.w-100 { width: 100%; }

.landing-hero {
  position: relative;
  padding: 72px 20px;
  background: radial-gradient(800px 300px at 50% -80px, rgba(79,70,229,.08), transparent 60%),
              linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.landing-hero h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.landing-hero p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-row {
  display: inline-flex;
  gap: 12px;
}

.hero-ornament {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: radial-gradient(120px 60px at 50% -20px, var(--primary-50), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.section {
  padding: 56px 20px;
}

.section.outcomes {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.section.product-intro {
  background: linear-gradient(180deg, #f1f5f9, #e9f1f8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.final-cta {
  position: relative;
  padding: 72px 20px;
  background: radial-gradient(800px 300px at 50% -80px, rgba(79,70,229,.08), transparent 60%),
              linear-gradient(180deg, #f8fafc, #eef2f7);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin: 0 auto 20px auto;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 24px;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.card-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .card-grid.three,
  .card-grid.two { grid-template-columns: 1fr; }
}

.info-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: box-shadow .2s ease, transform .08s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--primary);
  opacity: 0.35;
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.info-card p { color: var(--muted); }

.center-cta { text-align: center; margin-top: 16px; }
.center-cta .link { color: var(--muted); text-decoration: none; }
.center-cta .link:hover { text-decoration: underline; }

.product-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.product-section.alt { direction: rtl; }
.product-section.alt > * { direction: ltr; }

.product-copy p { color: var(--muted); }

.feature-list { margin: 12px 0 20px 0; }
.feature-list li { color: var(--muted); }

.product-visual .screenshot-placeholder {
  height: 220px;
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  box-shadow: 0 10px 28px rgba(2,6,23,0.06);
}

.section.features-spotlight {
  background: linear-gradient(180deg, #f1f5f9, #e9f1f8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-spotlight .product-section {
  margin-top: 12px;
}

.section.no-complexity {
  background: linear-gradient(180deg, #f1f5f9, #e9f1f8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Getting Started guide */
.guide-section-alt {
  background: linear-gradient(180deg, #f1f5f9, #e9f1f8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

.guide-diagram {
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.guide-size-table {
  width: 100%;
  max-width: 280px;
  border-collapse: collapse;
  margin: 16px 0;
}

.guide-size-table th,
.guide-size-table td {
  padding: 8px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.guide-size-table th {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}

.guide-size-table td {
  color: var(--muted);
  font-size: 14px;
}

.guide-size-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.linked-roadmap-diagram {
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 900px) {
  .product-section {
    grid-template-columns: 1fr;
  }
  .product-visual {
    text-align: center;
  }
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-content p {
  color: var(--muted);
  line-height: 1.7;
}

.faq .faq-list,
.pricing .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; transition: box-shadow .2s ease, border-color .2s ease, transform .08s ease; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--text); }
.faq p { margin: 10px 0 0 0; color: var(--muted); }
.faq details:hover { border-color: #cbd5e1; box-shadow: 0 8px 18px rgba(2,6,23,0.08); transform: translateY(-1px); }
.faq details[open] { box-shadow: 0 8px 22px rgba(2,6,23,0.06); }

.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 12px auto 24px auto;
}

@media (max-width: 900px) {
  .pricing .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.price-card-header {
  background: var(--primary);
  color: #fff;
  margin: 0 -20px 12px;
  padding: 16px 20px;
}

.price-card-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.price-card .btn { margin-top: auto; }
.price-card .btn.btn-primary {
  background-color: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.18);
}
.price-card .btn.btn-primary:hover,
.price-card .btn.btn-primary:focus {
  background-color: #15803d;
  border-color: #15803d;
  box-shadow: 0 8px 22px rgba(21, 128, 61, 0.22);
}

.price-card.recommended { border-color: var(--primary); box-shadow: 0 6px 28px rgba(79,70,229,0.12); }
.price-card .badge { position: absolute; top: 14px; right: 14px; background: rgba(6,182,212,.1); color: var(--accent-600); font-size: 12px; padding: 4px 8px; border-radius: 999px; }
.price-card h3 { margin: 0; }
.price-card .price { font-size: 28px; font-weight: 700; margin: 8px 0 4px 0; }
.price-card .price span { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card .price-secondary { font-size: 14px; color: var(--muted); min-height: 20px; margin-bottom: 12px; }
.price-features { margin: 10px 0 16px 0; list-style: none; padding: 0; }
.price-features li { color: var(--muted); }

.pricing-note {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
}

.error-section {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 86px - 77px);
}

.required-asterisk {
  color: red;
}

h1 {
  font-size: 46px;
  font-weight: 700;
}

h2 {
  font-weight: 500;
}

.wrapper {
  display: flex;
  flex-direction: column;
  /*background: linear-gradient(180deg,#f2f4ff,#fff 99.13%);*/
  min-height: 100vh;
}

.wrapper > .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wrapper > .content > main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.site-nav {
  background-color: var(--chrome-surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  padding: 8px 16px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  white-space: nowrap;
}

.brand-this {
  font-weight: 700;
  color: #000000;
}

.brand-roadmap {
  font-weight: 300;
  color: #4f46e5;
}

.navbar-logo-svg {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  margin-right: 8px;
}

.navbar-logo-svg .logo-primary { stroke: #4f46e5; }
.navbar-logo-svg .logo-accent { stroke: #a5b4fc; }
.navbar-logo-svg .logo-primary-fill { fill: #4f46e5; }
.navbar-logo-svg .logo-accent-fill { fill: #a5b4fc; }
.navbar-logo-svg .logo-dark-fill { fill: #3730a3; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 8px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 32px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--primary);
}

@media (max-width: 575.98px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--chrome-surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 16px 16px;
    z-index: 100;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    padding-top: 8px;
    gap: 8px;
  }

  .nav-link {
    padding: 8px 4px;
  }
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #e7ecef;
  background: radial-gradient(circle, #e7ecef, #a3cef1);
}

.hero-content {
  max-width: 500px;
  margin-right: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

  .hero-content h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
  }

.hero-image {
  flex: 1;
  min-width: 200px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin: 20px 0 20px 0;
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 12px 30px 0 rgba(0, 0, 0, 0.25);
}

  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

.problem-section {
  flex-direction: column;
  padding: 50px;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-section-content {
  max-width: 1100px;
}

.problem-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.problem-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.benefits-section {
  padding: 50px;
  background-color: #274c77;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

  .benefits-section h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
  }

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 350px;
  flex: 1;
  text-align: center;
}

  .benefit-card h3 {
    font-size: 24px;
    color: #274c77;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .benefit-card p {
    font-size: 18px;
    color: #555;
  }

.cta-section {
  padding: 50px;
  background-color: #e7ecef;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

  .cta-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    max-width: 1100px;
  }

  .cta-section .cta-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    max-width: 1100px;
  }

.policy-container {
  max-width: 900px;
  margin: 30px auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

  .policy-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .policy-container h2 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .policy-container p {
    margin-bottom: 10px;
  }

  .policy-container ul {
    margin: 10px 0 20px 20px;
    padding: 0;
  }

  .policy-container a {
    color: #00796b;
    text-decoration: none;
  }

    .policy-container a:hover {
      text-decoration: underline;
    }

  .policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0 25px 0;
  }

  .policy-container th,
  .policy-container td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }

  .policy-container th {
    background-color: #f5f5f5;
    font-weight: 600;
  }

  .policy-container tr:nth-child(even) {
    background-color: #fafafa;
  }

  .policy-container h3 {
    font-size: 1.2em;
    margin-top: 15px;
    margin-bottom: 8px;
  }

.blog-index {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

  .blog-index h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
  }

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
}

.blog-posts a {
  text-decoration: none;
  color: #000;
}

.blog-post-card {
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

  .blog-post-card img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    height: auto;
  }

  .blog-post-card .content {
    padding: 20px;
  }

  .blog-post-card h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .blog-post-card .blog-post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
  }

  .blog-post-card .blog-post-excerpt {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
  }

  .blog-post-card .read-more a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
  }

    .blog-post-card .read-more a:hover {
      text-decoration: underline;
    }

.blog-content {
  margin: 30px auto;
  max-width: 900px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

  .blog-content .cta-section {
    background-color: #ffffff;
  }

  .blog-content h1 {
    font-size: 2.0em;
    margin-bottom: 10px;
  }

.blog-post-author {
  font-size: .8em;
  color: #333;
  margin-bottom: 20px;
}

.blog-post-meta {
  font-size: 1em;
  color: #777;
  margin-bottom: 20px;
}

.blog-post-image {
  text-align: center;
  margin-bottom: 20px;
}

  .blog-post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

.blog-post-body {
  font-size: 1.1em;
  line-height: 1.8;
}

  .blog-post-body h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .blog-post-body p {
    margin-bottom: 20px;
  }

.blog-post-image-with-caption {
  text-align: center;
  margin: 20px 0;
}

.styled-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .styled-benefits li {
    margin-bottom: 20px;
    padding-left: 20px;
  }

    .styled-benefits li strong {
      display: block;
      margin-bottom: 5px;
    }

.blog-post-image-with-caption img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-post-image-with-caption .caption {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
}

.about-page {
  background: #f9fafb;
  flex: 1;
  padding: 16px 0 52px;
}

.about-section {
  padding: 50px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

  .about-section h1, .about-section h2 {
    color: #333;
    margin-bottom: 20px;
  }

  .about-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
  }

footer {
  background-color: var(--chrome-surface);
  border-top: 1px solid var(--chrome-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

  footer .footer-inner {
    text-align: center;
    padding: 18px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  footer .footer-links {
    margin-bottom: 5px;
  }

    footer .footer-links a {
      text-decoration: none;
      color: #1f2937;
      margin: 0 5px;
    }

      footer .footer-links a:hover {
        text-decoration: underline;
      }

  footer .copyright {
    font-size: 14px;
    color: #334155;
  }

.thank-you-section {
  padding: 50px;
  background-color: #f9f9f9;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

  .thank-you-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }

  .thank-you-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }

.cta-button {
  font-size: 18px;
  color: #ffffff;
  background-color: #274c77;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

  .cta-button:hover {
    background-color: #162d47;
  }

label.error {
  margin-top: -20px;
  color: red;
  font-size: 14px;
}

@media (max-width: 1075px) {
  .blog-post-card {
    /*    flex: 1 0 100%;
    max-width: 100%;*/
  }

  .blog-posts {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 0;
    margin-right: 0;
  }

  .hero-image {
    order: 1;
    margin: 20px 0;
  }

  .hero-form {
    order: 2;
  }

  .benefit-cards {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    max-width: 90%;
  }
}

@media (max-width: 900px) {
  .section.pricing {
    padding: 48px 16px 52px;
  }

  .pricing .section-title {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .pricing .section-subtitle {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .pricing-note {
    font-size: 16px;
    margin-top: 18px;
  }

  .about-page {
    padding: 10px 0 40px;
  }

  .about-section {
    padding: 34px 24px;
  }

  .about-section h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .about-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  footer .footer-inner {
    padding: 16px;
  }

  footer .footer-links {
    font-size: 15px;
    line-height: 1.9;
    max-width: 820px;
    margin: 0 auto 6px;
  }

  footer .footer-links a {
    display: inline-block;
    margin: 2px 5px;
  }
}

@media (max-width: 575.98px) {
  .section.pricing {
    padding: 40px 14px 46px;
  }

  .pricing .section-title {
    font-size: 28px;
  }

  .pricing .section-subtitle {
    font-size: 16px;
  }

  .price-card .price {
    font-size: 24px;
  }

  .about-section {
    padding: 28px 18px;
  }

  .about-section h1 {
    font-size: 30px;
  }

  .about-section p {
    font-size: 16px;
  }

  footer .footer-inner {
    padding: 14px 12px;
  }

  footer .footer-links {
    font-size: 14px;
    line-height: 2;
  }
}
