@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;700&display=swap');

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Figtree', 'Noto Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.6;
}

ol, ul {
  list-style: none;
}

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  line-height: 1.4;
}

/* ============================================================
   SITE SHELL
   ============================================================ */
.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  border-bottom: 2px solid #000;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 20px;
  transition: background 0.15s, color 0.15s;
}

.brand-mark:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

.brand-glyph {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
}

.brand-mark:hover .brand-glyph {
  color: #fff;
}

.main-nav {
  flex: 1;
}

.main-nav ol {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav ol::-webkit-scrollbar {
  display: none;
}

.main-nav ol li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  border-right: 1px solid #e0e0e0;
  min-height: 40px;
  line-height: 24px;
  transition: background 0.12s;
}

.main-nav ol li:first-child a {
  border-left: 1px solid #e0e0e0;
}

.main-nav ol li a:hover,
.main-nav ol li a[aria-current="page"] {
  background: #000;
  color: #fff;
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid #000;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  border-top: 1px solid #000;
  background: #fff;
}

.mobile-menu ol {
  display: flex;
  flex-direction: column;
}

.mobile-menu ol li a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #e8e8e8;
  min-height: 48px;
}

.mobile-menu ol li a:hover,
.mobile-menu ol li a[aria-current="page"] {
  background: #000;
  color: #fff;
  opacity: 1;
}

/* ============================================================
   STICKY ANCHOR BAR
   ============================================================ */
.sticky-anchor-bar {
  border-bottom: 1px solid #ddd;
  background: #fafafa;
  position: sticky;
  top: 56px;
  z-index: 90;
}

.anchor-list {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-list::-webkit-scrollbar { display: none; }

.anchor-list li a {
  display: block;
  padding: 8px 16px 8px 0;
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
}

.anchor-list li + li::before {
  content: '›';
  color: #aaa;
  margin-right: 16px;
}

.anchor-list li a[aria-current="page"] {
  color: #000;
  font-weight: 600;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading span {
  display: inline;
}

/* ============================================================
   PAGE HEADER SECTION
   ============================================================ */
.page-header-section {
  border-bottom: 3px solid #000;
  padding: 48px 0 36px;
  margin-bottom: 0;
}

.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.page-h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-desc {
  font-size: 1.05rem;
  color: #333;
  max-width: 640px;
  line-height: 1.6;
}

.page-date {
  font-size: 0.82rem;
  color: #777;
  margin-top: 12px;
}

/* ============================================================
   MAIN + ARTICLE + SECTION STRUCTURE (contract)
   ============================================================ */
.home-main,
.feature-main,
.pricing-main,
.faq-main,
.about-main,
.contact-main,
.privacy-main,
.default-main {
  flex: 1;
}

/* ============================================================
   HOME LAYOUT
   ============================================================ */
.home-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 45vh;
  border-bottom: 2px solid #000;
  align-items: center;
}

.hero-text {
  padding: 48px 48px 48px 0;
  text-align: right;
  grid-column: 1;
}

.hero-media {
  grid-column: 2;
  align-self: stretch;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #555;
}

.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
}

.cta-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.15s;
  min-height: 48px;
  line-height: 1.4;
}

.cta-btn:hover {
  opacity: 0.75;
}

/* Home content + aside */
.content-section {
  padding: 48px 0;
  border-bottom: 2px solid #000;
}

.home-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.content-main h2,
.content-main h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.content-main h2 > span,
.content-main h3 > span {
  display: inline;
}

.content-main p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.content-main ul,
.content-main ol {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 18px;
}

.content-main ol {
  list-style: decimal;
}

.content-main li {
  margin-bottom: 8px;
  line-height: 1.65;
}

/* Cards */
.cards-section {
  padding: 48px 0;
  border-bottom: 2px solid #000;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  list-style: none;
}

.card {
  border: 1px solid #000;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}

.card:hover {
  box-shadow: 4px 4px 0 #000;
  transform: translate(-2px, -2px);
}

.card-link {
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-decoration: none;
  color: #000;
  gap: 8px;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.card-desc {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.55;
}

.card-date {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

/* ============================================================
   ASIDE (shared)
   ============================================================ */
.content-aside,
.feature-aside,
.pricing-aside,
.faq-aside,
.about-aside,
.contact-aside,
.privacy-aside,
.default-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.aside-block {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.aside-block.aside-highlight {
  background: #000;
  color: #fff;
  border-color: #000;
}

.aside-block.aside-highlight .aside-heading {
  color: #fff;
  border-bottom-color: #444;
}

.aside-block.aside-highlight p {
  color: #e0e0e0;
}

.aside-block.aside-tip {
  background: #f8f8f8;
}

.aside-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #000;
}

.aside-heading span {
  display: inline;
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.aside-links li {
  border-bottom: 1px solid #f0f0f0;
}

.aside-links li:last-child {
  border-bottom: none;
}

.aside-links li a {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #000;
  gap: 2px;
  transition: opacity 0.12s;
  min-height: 44px;
  justify-content: center;
}

.aside-links li a:hover {
  opacity: 0.6;
}

.aside-links li a small {
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
  line-height: 1.3;
}

.aside-block.aside-highlight .aside-links li a {
  color: #fff;
}

.aside-block.aside-highlight .aside-links li a small {
  color: #bbb;
}

.aside-block.aside-highlight .aside-links li {
  border-bottom-color: #333;
}

.aside-cta {
  display: inline-block;
  margin-top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #fff;
  transition: opacity 0.15s;
  min-height: 40px;
  line-height: 20px;
}

.aside-cta:hover {
  opacity: 0.8;
}

/* ============================================================
   FEATURE LAYOUT
   ============================================================ */
.feature-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-header-section {
  padding: 48px 0 36px;
  border-bottom: 3px solid #000;
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 3px 10px;
}

.feature-date {
  font-size: 0.82rem;
  color: #666;
}

.feature-h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 1.05rem;
  color: #333;
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.feature-updated {
  font-size: 0.8rem;
  color: #888;
}

.feature-hero-section {
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
  max-height: 420px;
  overflow: hidden;
}

.feature-figure {
  margin: 0;
}

.feature-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.feature-figure figcaption {
  font-size: 0.78rem;
  color: #777;
  padding: 10px 24px;
  border-top: 1px solid #e8e8e8;
  font-style: italic;
}

.feature-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.feature-content {
  min-width: 0;
}

/* ============================================================
   DROP CAP
   ============================================================ */
.drop-cap > p:first-of-type::first-letter {
  font-size: 4.5em;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin: 4px 10px 0 0;
  font-family: 'Figtree', serif;
}

/* ============================================================
   SHARED CONTENT STYLES
   ============================================================ */
.feature-content h2,
.feature-content h3,
.pricing-content h2,
.pricing-content h3,
.faq-content h2,
.faq-content h3,
.about-content h2,
.about-content h3,
.contact-content h2,
.contact-content h3,
.privacy-content h2,
.privacy-content h3,
.default-content h2,
.default-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.feature-content h2 > span,
.feature-content h3 > span,
.pricing-content h2 > span,
.pricing-content h3 > span,
.faq-content h2 > span,
.faq-content h3 > span,
.about-content h2 > span,
.about-content h3 > span,
.contact-content h2 > span,
.contact-content h3 > span,
.privacy-content h2 > span,
.privacy-content h3 > span,
.default-content h2 > span,
.default-content h3 > span {
  display: inline;
}

.feature-content p,
.pricing-content p,
.faq-content p,
.about-content p,
.contact-content p,
.privacy-content p,
.default-content p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-content ul,
.feature-content ol,
.pricing-content ul,
.pricing-content ol,
.faq-content ul,
.faq-content ol,
.about-content ul,
.about-content ol,
.contact-content ul,
.contact-content ol,
.privacy-content ul,
.privacy-content ol,
.default-content ul,
.default-content ol {
  padding-left: 1.4em;
  margin-bottom: 18px;
}

.feature-content ul,
.pricing-content ul,
.faq-content ul,
.about-content ul,
.contact-content ul,
.privacy-content ul,
.default-content ul {
  list-style: disc;
}

.feature-content ol,
.pricing-content ol,
.faq-content ol,
.about-content ol,
.contact-content ol,
.privacy-content ol,
.default-content ol {
  list-style: decimal;
}

.feature-content li,
.pricing-content li,
.faq-content li,
.about-content li,
.contact-content li,
.privacy-content li,
.default-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.feature-content strong,
.pricing-content strong,
.faq-content strong,
.about-content strong,
.contact-content strong,
.privacy-content strong,
.default-content strong {
  font-weight: 700;
}

.feature-content blockquote,
.about-content blockquote {
  border-left: 4px solid #000;
  padding: 16px 24px;
  margin: 28px 0;
  background: #f8f8f8;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
}

/* ============================================================
   PULL QUOTE (about)
   ============================================================ */
.pull-quote {
  border-top: 3px solid #000;
  border-bottom: 1px solid #000;
  padding: 28px 24px;
  margin: 0;
  background: #000;
  color: #fff;
}

.pull-quote p {
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   PRICING LAYOUT
   ============================================================ */
.pricing-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   FAQ LAYOUT
   ============================================================ */
.faq-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  background: #000;
  color: #fff;
  padding: 48px 0 36px;
  margin-bottom: 0;
}

.faq-header .page-header-inner {
  color: #fff;
}

.faq-header .page-tag {
  border-color: #fff;
  color: #fff;
}

.faq-header .page-h1 {
  color: #fff;
}

.faq-header .page-desc {
  color: #ccc;
}

.faq-header .page-date {
  color: #aaa;
}

.faq-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   ABOUT LAYOUT
   ============================================================ */
.about-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-header-section {
  border-bottom: 3px solid #000;
}

.about-header-inner {
  padding: 48px 0 24px;
}

.about-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   CONTACT LAYOUT
   ============================================================ */
.contact-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-block {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2px solid #000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  border: 1px solid #000;
  border-radius: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #000;
  background: #fff;
  appearance: none;
  outline: none;
  transition: box-shadow 0.12s;
  min-height: 44px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  box-shadow: 0 0 0 2px #000;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  width: fit-content;
  min-height: 48px;
  transition: opacity 0.15s;
}

.form-submit:hover {
  opacity: 0.75;
}

/* ============================================================
   PRIVACY LAYOUT
   ============================================================ */
.privacy-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-header {
  background: #f8f8f8;
}

.privacy-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   DEFAULT LAYOUT
   ============================================================ */
.default-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.default-body-section {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 3px solid #000;
  margin-top: auto;
}

.footer-brand {
  padding: 36px 24px 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bigname {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #000;
  text-align: center;
}

.footer-bottom {
  padding: 20px 24px;
  display: flex;
  justify-content: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.footer-copy a {
  color: #333;
  font-weight: 500;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .aside-block,
  .feature-content,
  .pricing-content,
  .faq-content,
  .about-content,
  .contact-content,
  .privacy-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .card.revealed,
  .aside-block.revealed,
  .feature-content.revealed,
  .pricing-content.revealed,
  .faq-content.revealed,
  .about-content.revealed,
  .contact-content.revealed,
  .privacy-content.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 40px 24px;
    text-align: left;
    grid-column: 1;
    order: 1;
  }

  .hero-sub {
    margin-left: 0;
  }

  .hero-media {
    grid-column: 1;
    order: 2;
    max-height: 280px;
  }

  .home-content,
  .feature-body-section,
  .pricing-body-section,
  .faq-body-section,
  .about-body-section,
  .contact-body-section,
  .privacy-body-section,
  .default-body-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-aside,
  .feature-aside,
  .pricing-aside,
  .faq-aside,
  .about-aside,
  .contact-aside,
  .privacy-aside,
  .default-aside {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 16px;
  }

  .home-article,
  .feature-article,
  .pricing-article,
  .faq-article,
  .about-article,
  .contact-article,
  .privacy-article,
  .default-article {
    padding: 0 16px;
  }

  .page-header-inner {
    padding: 0 16px;
  }

  .hero-text {
    padding: 32px 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-bigname {
    font-size: 3rem;
  }

  .pull-quote p {
    font-size: 1rem;
  }

  .content-section,
  .cards-section,
  .feature-body-section,
  .pricing-body-section,
  .faq-body-section,
  .about-body-section,
  .contact-body-section,
  .privacy-body-section,
  .default-body-section {
    padding: 32px 0;
  }

  .page-header-section {
    padding: 32px 0 24px;
  }
}
