/*
Theme Name: Business Credit DIY
Theme URI: https://businesscreditdiy.com
Author: Business Credit DIY
Author URI: https://businesscreditdiy.com
Description: Landing page theme for Business Credit DIY
Version: 1.3
License: GNU General Public License v2 or later
Text Domain: businesscreditdiy
*/

/* ════════════════════════════════════════
   VARIABLES
   ════════════════════════════════════════ */

:root {
  --cream: #FAF7F0;
  --cream-dark: #F0EBE0;
  --ink: #1A1612;
  --ink-light: #3D3630;
  --ink-muted: #7A7068;
  --gold: #B8963E;
  --gold-light: #D4B668;
  --gold-pale: #F5EDD6;
  --gold-dark: #8C6F2A;
  --red-soft: #C45B4A;
  --red-pale: #FAE8E5;
  --green-soft: #4A8C6F;
  --green-pale: #E5F2EC;
  --blue-soft: #4A6F8C;
  --blue-pale: #E5EEF2;
  --border: #E0D8CC;
  --border-light: #EDE8DF;
}

/* ════════════════════════════════════════
   RESET
   ════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 22, 18, 0.06);
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--gold-light);
  padding: 8px 18px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: 0.3s;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */

.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.hero-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}

.hero-stat .stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
  display: block;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-light);
  padding: 14px 36px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
  color: var(--ink);
}

.btn-secondary {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: transparent;
  padding: 14px 36px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════ */

section {
  padding: 56px 0;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.25;
  text-align: center;
}

h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-light);
  margin: 32px 0 14px;
  line-height: 1.3;
}

h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 24px 0 12px;
}

p {
  margin-bottom: 18px;
  color: var(--ink-light);
}

p.lead {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
}

strong {
  font-weight: 600;
  color: var(--ink);
}

em {
  font-style: italic;
}

.section-divider {
  margin: 0;
  padding: 48px 0;
  text-align: center;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.section-divider span {
  background: var(--cream);
  padding: 0 16px;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
}

/* ════════════════════════════════════════
   PROBLEM / SOLUTION
   ════════════════════════════════════════ */

.problem-block {
  margin: 40px 0;
  padding: 40px;
  background: var(--red-pale);
  border-radius: 3px;
  border-left: 4px solid var(--red-soft);
}

.problem-block h3 {
  color: var(--red-soft);
  margin-top: 0;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  font-size: 19px;
  color: var(--ink-light);
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.6;
}

.problem-list li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-weight: 700;
  font-size: 16px;
  top: 11px;
}

.solution-block {
  margin: 40px 0;
  padding: 40px;
  background: var(--green-pale);
  border-radius: 3px;
  border-left: 4px solid var(--green-soft);
}

.solution-block h3 {
  color: var(--green-soft);
  margin-top: 0;
}

.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li {
  font-size: 19px;
  color: var(--ink-light);
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.6;
}

.solution-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-soft);
  font-weight: 700;
  font-size: 16px;
  top: 11px;
}

/* ════════════════════════════════════════
   CHAPTERS
   ════════════════════════════════════════ */

.chapters-grid {
  margin: 36px 0;
}

.chapter-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.chapter-row:last-child {
  border-bottom: none;
}

.chapter-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.chapter-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}

.chapter-info p {
  font-size: 17px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

.chapter-info .chapter-pages {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-top: 4px;
  display: inline-block;
}

/* ════════════════════════════════════════
   BONUSES
   ════════════════════════════════════════ */

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.bonus-card {
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.bonus-card .bonus-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.bonus-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

.bonus-card p {
  font-size: 16px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   AUDIENCE
   ════════════════════════════════════════ */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.audience-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.audience-card.for {
  border-top: 3px solid var(--green-soft);
}

.audience-card.not {
  border-top: 3px solid var(--red-soft);
}

.audience-card .aud-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.audience-card.for .aud-tag {
  color: var(--green-soft);
}

.audience-card.not .aud-tag {
  color: var(--red-soft);
}

.audience-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}

.audience-card ul {
  list-style: none;
  padding: 0;
}

.audience-card ul li {
  font-size: 16px;
  color: var(--ink-muted);
  padding: 4px 0;
  line-height: 1.5;
}

.audience-card.for ul li::before {
  content: '\2713 ';
  color: var(--green-soft);
  font-weight: 700;
}

.audience-card.not ul li::before {
  content: '\2717 ';
  color: var(--red-soft);
  font-weight: 700;
}

/* ════════════════════════════════════════
   PULL QUOTE
   ════════════════════════════════════════ */

.pull-quote {
  margin: 48px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */

.pricing-block {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--ink);
  border-radius: 3px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.pricing-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 74px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-amount .dollar {
  font-size: 42px;
  vertical-align: super;
  color: var(--gold-light);
}

.pricing-note {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 360px;
  text-align: left;
}

.pricing-features li {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.pricing-guarantee {
  margin-top: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════
   HIDE KIT BRANDING — NUCLEAR OPTION
   ════════════════════════════════════════ */

[class*="powered-by-convertkit"],
[class*="Powered by"],
a[href*="kit.com/features/forms"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ════════════════════════════════════════
   EDD BUY BUTTON — NUCLEAR OPTION
   ════════════════════════════════════════ */

.edd-button-wrapper a,
.edd-button-wrapper button,
.edd-button-wrapper input[type="submit"],
.edd-button-wrapper .edd-submit,
.edd-button-wrapper a[class*="edd"],
.edd-button-wrapper [class*="purchase"] {
  font-family: 'DM Mono', monospace !important;
  font-size: 14px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #1A1612 !important;
  background: #D4B668 !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 16px 44px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  box-shadow: none !important;
}

.edd-button-wrapper a:hover,
.edd-button-wrapper button:hover,
.edd-button-wrapper input[type="submit"]:hover,
.edd-button-wrapper .edd-submit:hover,
.edd-button-wrapper a[class*="edd"]:hover,
.edd-button-wrapper [class*="purchase"]:hover {
  background: #B8963E !important;
  color: #1A1612 !important;
  transform: translateY(-1px) !important;
}

/* ════════════════════════════════════════
   HIDE EDD CART/CHECKOUT ELEMENTS
   ════════════════════════════════════════ */

[class*="edd_checkout"],
[class*="edd-cart"],
[class*="edd_go_to"],
#edd-slidedown-cart,
.edd-cart-number-of-items,
.edd-cart-ajax-alert,
.widget_edd_cart_widget {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ════════════════════════════════════════
   KIT FORM STYLING
   ════════════════════════════════════════ */

.kit-form-wrapper form,
.kit-form-wrapper .formkit-form {
  font-family: 'Crimson Pro', Georgia, serif !important;
  max-width: 100% !important;
}

.kit-form-wrapper [class*="formkit-fields"],
.kit-form-wrapper [data-element="fields"] {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 10px !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

.kit-form-wrapper [class*="formkit-field"],
.kit-form-wrapper .formkit-field {
  flex: 1 !important;
  max-width: 320px !important;
  margin: 0 !important;
}

.kit-form-wrapper input[type="email"] {
  font-family: 'Crimson Pro', Georgia, serif !important;
  font-size: 16px !important;
  color: #3D3630 !important;
  background: #FAF7F0 !important;
  border: 1px solid #E0D8CC !important;
  border-radius: 3px !important;
  padding: 12px 16px !important;
  width: 100% !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease !important;
}

.kit-form-wrapper input[type="email"]:focus {
  border-color: #B8963E !important;
  outline: none !important;
  box-shadow: none !important;
}

.kit-form-wrapper input[type="email"]::placeholder {
  color: #7A7068 !important;
  opacity: 1 !important;
}

.kit-form-wrapper button,
.kit-form-wrapper input[type="submit"],
.kit-form-wrapper [class*="formkit-submit"] {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #1A1612 !important;
  background: #D4B668 !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 0 24px !important;
  height: 46px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  transition: background 0.2s ease !important;
  box-shadow: none !important;
}

.kit-form-wrapper button:hover,
.kit-form-wrapper input[type="submit"]:hover,
.kit-form-wrapper [class*="formkit-submit"]:hover {
  background: #B8963E !important;
}

.kit-form-wrapper button span,
.kit-form-wrapper [class*="formkit-submit"] span {
  padding: 0 !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #1A1612 !important;
  background: transparent !important;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 700px) {
  .kit-form-wrapper [class*="formkit-fields"],
  .kit-form-wrapper [data-element="fields"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .kit-form-wrapper [class*="formkit-field"],
  .kit-form-wrapper .formkit-field {
    max-width: 100% !important;
  }

  .kit-form-wrapper button,
  .kit-form-wrapper input[type="submit"],
  .kit-form-wrapper [class*="formkit-submit"] {
    width: 100% !important;
  }
}
/* ════════════════════════════════════════
   PRIVACY POLICY PAGE
   ════════════════════════════════════════ */

.policy-page {
  padding: 140px 0 80px;
  background: var(--cream);
}

.policy-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.policy-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}

.policy-meta {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  margin: 0;
}

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 20px;
  text-align: left;
  line-height: 1.3;
}

.policy-section h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-light);
  margin: 28px 0 14px;
  text-align: left;
}

.policy-section p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink-light);
  margin: 0 0 16px;
}

.policy-section ul {
  margin: 0 0 20px;
  padding: 0 0 0 24px;
}

.policy-section ul li {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-light);
  padding: 4px 0;
}

.policy-section ul li strong {
  color: var(--ink);
}

.policy-section a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-section a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════
   REFUND NOTICE
   ════════════════════════════════════════ */

.refund-notice {
  background: var(--red-pale);
  border-left: 4px solid var(--red-soft);
  padding: 20px 28px;
  margin: 0 0 24px;
  border-radius: 3px;
}

.refund-notice p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 22px;
  color: var(--red-soft);
  margin: 0;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   CONTACT BLOCK
   ════════════════════════════════════════ */

.contact-block {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 28px;
  border-radius: 3px;
  margin: 16px 0 0;
}

.contact-block p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 700px) {
  .policy-page {
    padding: 100px 0 60px;
  }

  .policy-header h1 {
    font-size: 34px;
  }

  .policy-section h2 {
    font-size: 26px;
  }

  .policy-section h3 {
    font-size: 21px;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 18px;
  }
}
/* ════════════════════════════════════════
   DISCLAIMER NOTICE (orange/red)
   ════════════════════════════════════════ */

.disclaimer-notice {
  background: #FFF8ED;
  border-left: 4px solid #C48A3A;
}

.disclaimer-notice p {
  color: #8C5E1A;
}
