/* ============================================= */
/* Awesome Boss - Global Stylesheet              */
/* ============================================= */

/* Base styles (shared across all pages) */

  :root {
    --brand-dark: #14394F;
    --brand-header: #023047;
    --brand-primary: #2A9CBF;
    --brand-primary-light: #8EC7D2;
    --brand-accent: #F9A41B;
    --brand-accent-warm: #ED8B00;
    --brand-green: #16a34a;
    --brand-green-light: #dcfce7;
    --text-primary: #1a1a2e;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --surface-white: #ffffff;
    --surface-cream: #fdfbf7;
    --surface-light: #f8fafc;
    --surface-warm: #fffbeb;
    --border-light: #e2e8f0;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 100px 0; }
  .text-center { text-align: center; }

  h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
  h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.015em; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
  p { font-size: 1.05rem; color: var(--text-secondary); }
  
  .eyebrow {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-primary);
    display: inline-block;
    margin-bottom: 12px;
  }
  .eyebrow--accent { color: var(--brand-accent-warm); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .btn--primary {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(42, 156, 191, 0.35);
  }
  .btn--primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 6px 24px rgba(20, 57, 79, 0.45);
    transform: translateY(-2px);
  }
  .btn--accent {
    background: var(--brand-accent);
    color: var(--brand-dark);
    box-shadow: 0 4px 16px rgba(249, 164, 27, 0.35);
  }
  .btn--accent:hover {
    background: var(--brand-accent-warm);
    color: #fff;
    box-shadow: 0 6px 24px rgba(237, 139, 0, 0.45);
    transform: translateY(-2px);
  }
  .btn--lg { font-size: 1.15rem; padding: 18px 44px; }
  .btn svg { width: 20px; height: 20px; }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--brand-header);
    
    
    padding: 12px 0;
  }
  nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .nav-logo img {
    height: 40px;
    width: auto;
  }
  .nav-cta {
    background: var(--brand-accent) !important;
    color: var(--brand-dark) !important;
    box-shadow: 0 4px 16px rgba(249, 164, 27, 0.3);
  }
  .nav-cta:hover {
    background: var(--brand-accent-warm) !important;
    color: #fff !important;
    transform: translateY(-2px);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-pricing-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    display: none;
  }
  .nav-pricing-link:hover {
    color: #fff;
  }
  @media (min-width: 768px) { .nav-pricing-link { display: inline; } }
  .nav-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: none;
    padding-left: 12px;
    border-left: 1px solid var(--border-light);
  }
  @media (min-width: 768px) { .nav-tagline { display: inline; } }

  .hero {
    padding: 140px 0 100px;
    background: linear-gradient(170deg, rgba(142, 199, 210, 0.15) 0%, var(--surface-cream) 50%, var(--surface-white) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 156, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero .container { position: relative; z-index: 1; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.15fr 1fr; }
  }
  .hero h1 { margin-bottom: 20px; color: var(--brand-dark); }
  .hero h1 em { font-style: italic; color: var(--brand-primary); }
  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
  }
  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }
  .hero-visual {
    position: relative;
  }
  .hero-image {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }
  .hero-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--brand-accent);
    color: var(--brand-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transform: rotate(6deg);
  }

  .hero-badge.hero-badge--subtle {
    background: var(--surface-light);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    box-shadow: none;
  }

  .stats-bar {
    background: var(--brand-dark);
    padding: 32px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .stat-item {
    text-align: center;
    color: #fff;
  }
  .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-accent);
  }
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 4px;
  }

  .pain-section {
    background: var(--surface-light);
  }
  .pain-header {
    max-width: 680px;
    margin: 0 auto 50px;
  }
  .pain-header h2 { margin-bottom: 16px; }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .pain-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.2s ease;
  }
  .pain-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 156, 191, 0.2);
  }
  .pain-card-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
  }
  .pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--brand-dark);
  }
  .pain-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
  }

  .solution-section {
    background: var(--surface-white);
  }
  .solution-header {
    max-width: 720px;
    margin: 0 auto 50px;
  }
  .solution-header h2 { margin-bottom: 16px; }
  .solution-intro {
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
  }
  .solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
  }
  .feature-card {
    background: var(--surface-light);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
  }
  .feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 156, 191, 0.2);
  }
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
  }
  .feature-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .feature-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .feature-topic {
    background: var(--brand-primary-light);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 40px;
  }

  .inside-section {
    background: var(--surface-cream);
  }
  .inside-header {
    max-width: 680px;
    margin: 0 auto 50px;
  }
  .inside-header h2 { margin-bottom: 16px; }
  .inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 40px;
  }
  .inside-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }
  .inside-check {
    width: 24px;
    height: 24px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .inside-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-dark);
    margin-bottom: 4px;
  }
  .inside-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
  }
  .inside-total {
    text-align: center;
    background: var(--brand-dark);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: 0 auto;
  }

  .pricing-section {
    background: linear-gradient(170deg, var(--brand-dark) 0%, #0d2a3a 100%);
    position: relative;
    overflow: hidden;
  }
  .pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 164, 27, 0.1) 0%, transparent 60%);
    border-radius: 50%;
  }
  .pricing-header {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
  }
  .pricing-header h2 { color: #fff; margin-bottom: 16px; }
  .pricing-header p { color: rgba(255,255,255,0.7); }
  .pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
  }
  .pricing-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brand-dark);
    margin-bottom: 16px;
    text-align: center;
  }
  .pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
  }
  .pricing-amount .currency {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.2;
  }
  .pricing-amount .value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
  }
  .pricing-original {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    margin-right: 12px;
    align-self: center;
  }
  .pricing-detail {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .pricing-features {
    margin-bottom: 32px;
  }
  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .pricing-feature:last-child { border-bottom: none; }
  .pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pricing-feature span {
    font-size: 0.95rem;
    color: var(--text-secondary);
  }
  .pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  .pricing-guarantee svg {
    width: 18px;
    height: 18px;
    color: var(--brand-green);
  }

  .bonus-section {
    background: var(--surface-cream);
  }
  .bonus-header {
    max-width: 680px;
    margin: 0 auto 50px;
  }
  .bonus-grid {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }
  .bonus-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.2s ease;
  }
  .bonus-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 156, 191, 0.2);
  }
  .bonus-badge {
    background: var(--brand-accent);
    color: var(--brand-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 40px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .bonus-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--brand-dark);
  }
  .bonus-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

  .guarantee-section {
    background: var(--surface-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .guarantee-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .guarantee-icon {
    width: 72px;
    height: 72px;
    background: var(--brand-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
  }
  .guarantee-box h2 { margin-bottom: 16px; }
  .guarantee-box p {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
  }

  .faq-section {
    background: var(--surface-light);
  }
  .faq-header {
    max-width: 600px;
    margin: 0 auto 50px;
  }
  .faq-list {
    max-width: 740px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .faq-item.active .faq-question svg {
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 400px;
  }
  .faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  .final-cta {
    background: linear-gradient(170deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 164, 27, 0.15) 0%, transparent 60%);
    border-radius: 50%;
  }
  .final-cta .container { position: relative; z-index: 1; }
  .final-cta h2 { color: #fff; margin-bottom: 16px; }
  .final-cta p {
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
  }

  footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
  }
  footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
  }
  footer a:hover { color: #fff; }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-in {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }

  @media (max-width: 767px) {
    .section { padding: 70px 0; }
    .hero { padding: 120px 0 70px; }
    .btn--lg { padding: 16px 32px; font-size: 1.05rem; }
    .pricing-card { padding: 36px 24px; }
    .pricing-amount .value { font-size: 3rem; }
    .bonus-card { flex-direction: column; gap: 12px; }
    .nav-cta { display: none; }
    .nav-pricing-link { display: none !important; }
  }

  /* Toolkit Preview Section */
  .preview-section {
    background: var(--surface-light);
  }
  .preview-header {
    max-width: 720px;
    margin: 0 auto 60px;
  }
  .preview-header h2 {
    margin-bottom: 20px;
  }
  .preview-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .preview-image {
    background: var(--surface-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .preview-image:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
  .preview-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .preview-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
  }
  .preview-caption {
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
  }

  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  .lightbox.active {
    display: flex;
  }
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }
  .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .lightbox-close:hover {
    opacity: 1;
  }
  .lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 16px;
    font-size: 1rem;
  }


  /* Newsletter Signup Section */
  .newsletter-section {
    background: var(--surface-warm, var(--surface-cream));
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 80px 0;
  }
  .newsletter-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }
  .newsletter-inner .eyebrow {
    color: var(--brand-accent-warm, var(--brand-accent));
  }
  .newsletter-inner h2 {
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .newsletter-inner p {
    font-size: 1rem;
    margin-bottom: 28px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .newsletter-inner iframe {
    border-radius: var(--radius-md);
  }


  /* Sticky Mobile CTA */
  .sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--brand-dark);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    text-align: center;
  }
  .sticky-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
  @media (max-width: 767px) {
    .sticky-mobile-cta { display: block; }
    body { padding-bottom: 72px; }
  }

  /* Price anchor in stats bar */
  .stat-number--price {
    color: #fff !important;
    font-size: 1.8rem !important;
  }
  .stat-label--intro {
    color: var(--brand-accent) !important;
    font-weight: 600;
    font-size: 0.78rem !important;
    letter-spacing: 0.05em;
    opacity: 1 !important;
  }

  /* Value reframe line */
  .pricing-reframe {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 4px;
    margin-bottom: 28px;
  }

  /* Micro-copy beneath buy button */
  .pricing-microcopy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 8px;
  }

  /* Who this is for section */
  .fit-section {
    background: var(--surface-light);
  }
  .fit-header {
    max-width: 680px;
    margin: 0 auto 40px;
  }
  .fit-header h2 { margin-bottom: 16px; }
  .fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .fit-grid { grid-template-columns: 1fr 1fr; }
  }
  .fit-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
  }
  .fit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--brand-dark);
  }
  .fit-card--yes h3 { color: var(--brand-green, #16a34a); }
  .fit-card--no h3 { color: var(--text-muted); }
  .fit-list {
    list-style: none;
    padding: 0;
  }
  .fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 0;
  }
  .fit-list li span.fit-icon {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Inside-grid "and more" note */
  .inside-more {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
  }

  /* Homepage toolkit card improvements */
  .toolkit-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
  }
  .toolkit-price-tag {
    background: var(--brand-accent);
    color: var(--brand-dark);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 40px;
    font-size: 0.82rem;
  }
  .toolkit-price-detail {
    color: var(--text-muted);
    font-size: 0.82rem;
  }




/* ============================================= */
/* Homepage Styles                        */
/* ============================================= */

/* -- Unique to Homepage -- */

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 164, 27, 0.06) 0%, transparent 70%);
    border-radius: 50%;
  }

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brand-accent-warm);
    margin-bottom: 24px;
  }

.problem-section {
    background: var(--brand-dark);
    color: #fff;
    padding: 80px 0;
  }

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

.problem-content h2 {
    color: #fff;
    margin-bottom: 24px;
  }

.problem-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    line-height: 1.8;
  }

.problem-content p strong {
    color: var(--brand-accent);
  }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
  }

.solution-card {
    background: var(--surface-light);
    border-radius: var(--radius-md);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--border-light);
  }

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

.solution-card h3 {
    margin-bottom: 12px;
    color: var(--brand-dark);
  }

.solution-card p {
    font-size: 0.95rem;
  }

.value-section {
    background: var(--surface-white);
  }

.value-header {
    max-width: 720px;
    margin: 0 auto 60px;
  }

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }

.value-item {
    display: flex;
    gap: 20px;
  }

.value-check {
    width: 32px;
    height: 32px;
    background: var(--brand-primary-light);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--brand-dark);
  }

.value-item p {
    font-size: 0.95rem;
  }

.industries-section {
    background: var(--surface-cream);
  }

.industries-header {
    max-width: 720px;
    margin: 0 auto 60px;
  }

.industries-header h2 {
    margin-bottom: 20px;
  }

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

.toolkit-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: block;
  }

.toolkit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
    transform: translateY(-4px);
  }

.toolkit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
  }

.toolkit-card h3 {
    color: var(--brand-dark);
    margin-bottom: 8px;
  }

.toolkit-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
  }

.toolkit-cta {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.9rem;
  }


/* -- Homepage overrides (scoped with .page-home) -- */

.page-home h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }

.page-home h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.015em; }

.page-home .btn--primary:hover { background: var(--brand-dark);
    transform: translateY(-2px); }

.page-home .btn--accent:hover { background: var(--brand-accent-warm);
    color: #fff;
    transform: translateY(-2px); }

.page-home nav { position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--brand-header);
    padding: 12px 0; }

.page-home .hero { padding: 160px 0 120px;
    background: linear-gradient(170deg, rgba(142, 199, 210, 0.12) 0%, var(--surface-cream) 40%, var(--surface-white) 100%);
    position: relative;
    overflow: hidden; }

.page-home .hero::before { content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42, 156, 191, 0.06) 0%, transparent 70%);
    border-radius: 50%; }

.page-home .hero h1 { margin-bottom: 24px;
    color: var(--brand-dark); }

.page-home .hero h1 em { font-style: italic;
    color: var(--brand-primary); }

.page-home .hero-subtitle { font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto; }

.page-home .hero-cta-group { display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center; }

.page-home .solution-header { max-width: 720px;
    margin: 0 auto 60px; }

.page-home .solution-header h2 { margin-bottom: 20px; }

.page-home .final-cta h2 { color: #fff; margin-bottom: 20px; }

.page-home .final-cta p { color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.15rem; }

@media (max-width: 767px) {
  .page-home .section { padding: 70px 0; }
  .page-home .hero { padding: 130px 0 80px; }
  .page-home .btn--lg { padding: 16px 32px; font-size: 1.05rem; }
  .page-home .nav-cta { display: none; }
}



/* ============================================= */
/* Thank You Page Styles                        */
/* ============================================= */

/* -- Unique to Thank You Page -- */

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 164, 27, 0.06) 0%, transparent 70%);
    border-radius: 50%;
  }

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

.confirm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 60px;
    margin-bottom: 28px;
  }

.confirm-badge svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

.toolkit-icon-large {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
  }

.summary-section {
    background: var(--surface-white);
    padding: 80px 0;
  }

.summary-header {
    max-width: 720px;
    margin: 0 auto 48px;
  }

.summary-header h2 {
    margin-bottom: 16px;
  }

.summary-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
  }

.summary-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
  }

.summary-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }

.summary-card-title h3 {
    color: var(--brand-dark);
    font-size: 1.4rem;
    margin-bottom: 4px;
  }

.summary-card-title p {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }

.summary-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--surface-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
  }

.summary-stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 4px;
  }

.summary-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
  }

.summary-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

.summary-section-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--surface-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
  }

.summary-section-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.4;
  }

.summary-section-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-dark);
    margin-bottom: 2px;
  }

.summary-section-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
  }

.steps-section {
    background: var(--surface-cream);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
  }

.steps-header {
    max-width: 720px;
    margin: 0 auto 48px;
  }

.steps-header h2 {
    margin-bottom: 16px;
  }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
  }

.step-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    position: relative;
  }

.step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 16px;
  }

.step-card h3 {
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-size: 1.15rem;
  }

.step-card p {
    font-size: 0.95rem;
  }

.steps-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

.step-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 28px;
  }

.step-card-horizontal .step-number {
    margin: 0;
    flex-shrink: 0;
  }

.step-content {
    flex: 1;
  }

.step-content h3 {
    color: var(--brand-dark);
    margin-bottom: 6px;
    font-size: 1.1rem;
  }

.step-content p {
    font-size: 0.95rem;
    margin: 0;
  }

.step-content a:not(.btn) {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
  }

.step-content a:not(.btn):hover {
    color: var(--brand-dark);
    text-decoration: underline;
  }

.step-card-highlight {
    background: var(--surface-warm);
    border-color: var(--brand-accent);
    border-width: 2px;
  }

.step-number--accent {
    background: var(--brand-accent) !important;
    color: var(--brand-dark) !important;
  }

.toolkit-access-btn {
    margin-top: 14px;
    font-size: 0.95rem;
    padding: 14px 28px;
  }

.toolkit-access-btn svg {
    width: 18px;
    height: 18px;
  }

.notion-icon-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--surface-light);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.8rem;
    vertical-align: middle;
    color: var(--text-secondary);
  }

.support-note {
    max-width: 620px;
    margin: 36px auto 0;
    text-align: center;
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 32px;
  }

.support-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
  }

.support-note a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
  }

.support-note a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
  }

.delay-3 { animation-delay: 0.45s; }


/* -- Thank You Page overrides (scoped with .page-thankyou) -- */

.page-thankyou .btn--accent:hover { background: var(--brand-accent-warm);
    color: #fff;
    transform: translateY(-2px); }

.page-thankyou nav { position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--brand-header);
    padding: 12px 0; }

.page-thankyou .nav-tagline { font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: none;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.15); }

@media (min-width: 768px) {
  .page-thankyou .nav-tagline { display: inline; }
}

.page-thankyou .hero { padding: 160px 0 80px;
    background: linear-gradient(170deg, rgba(142, 199, 210, 0.15) 0%, var(--surface-cream) 50%, var(--surface-white) 100%);
    position: relative;
    overflow: hidden; }

.page-thankyou .hero::before { content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42, 156, 191, 0.06) 0%, transparent 70%);
    border-radius: 50%; }

.page-thankyou .hero h1 { margin-bottom: 20px;
    color: var(--brand-dark); }

.page-thankyou .hero h1 em { font-style: italic;
    color: var(--brand-primary); }

.page-thankyou .hero-subtitle { font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }

.page-thankyou .delay-1 { animation-delay: 0.15s; }

.page-thankyou .delay-2 { animation-delay: 0.3s; }

@media (max-width: 767px) {
  .page-thankyou .hero { padding: 130px 0 60px; }
  .page-thankyou .summary-section, .page-thankyou .steps-section { padding: 60px 0; }
  .page-thankyou .summary-card { padding: 28px 20px; }
  .page-thankyou .summary-stats { grid-template-columns: 1fr; gap: 12px; }
  .page-thankyou .summary-sections { grid-template-columns: 1fr; }
  .page-thankyou .toolkit-icon-large { font-size: 3rem; }
  .page-thankyou .btn--lg { padding: 16px 32px; font-size: 1.05rem; }
  .page-thankyou .nav-cta { display: none; }
  .page-thankyou .step-card-horizontal { padding: 20px 18px; gap: 14px; }
  .page-thankyou .toolkit-access-btn { font-size: 0.88rem; padding: 12px 22px; }
}


/* ============================================= */
/* Blog Post Styles (scoped to .page-blog)       */
/* ============================================= */

/* --- Breadcrumb --- */
.blog-link {
    text-decoration:none;
    color: var(--text-muted);
}

.blog-breadcrumb {
  padding: 80px 0 0;
  background: var(--surface-cream);
}
.blog-breadcrumb-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-muted);
}
.blog-breadcrumb-inner a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
}
.blog-breadcrumb-inner a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}
.blog-breadcrumb-sep {
  margin: 0 8px;
  color: var(--border-light);
}

/* --- Blog Hero --- */
.blog-hero {
  padding: 100px 0 0;
  background: var(--surface-cream);
}
.blog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-category-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent-warm);
  margin-bottom: 16px;
}
.blog-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.blog-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 24px;
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.blog-meta-sep {
  margin: 0 10px;
  opacity: 0.4;
}

/* --- Hero Image --- */
.blog-hero-image {
  max-width: 760px;
  margin: 20px auto 20px;
  padding: 20px 0 20px;
}
.blog-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

/* --- Blog Body --- */
.blog-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 24px 64px;
}

/* Typography */
.blog-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--brand-dark);
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--brand-dark);
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.blog-body p strong {
  color: var(--text-primary);
  font-weight: 600;
}
.blog-body a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(42, 156, 191, 0.3);
  transition: border-color 0.2s, color 0.2s;
}
.blog-body a:hover {
  color: var(--brand-dark);
  border-bottom-color: var(--brand-dark);
}

/* Lists */
.blog-body ul,
.blog-body ol {
  margin: 0 0 24px 24px;
  color: var(--text-secondary);
}
.blog-body ul li,
.blog-body ol li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 4px;
}
.blog-body ul {
  list-style-type: disc;
}
.blog-body ol {
  list-style-type: decimal;
}

/* Blockquote / Pull Quote */
.blog-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--brand-accent);
  background: var(--surface-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blog-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--brand-dark);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Callout Box */
.blog-callout {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.blog-callout p {
  margin-bottom: 0;
  font-size: 0.98rem;
}
.blog-callout p:first-child {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* In-body images */
.blog-body figure {
  margin: 36px 0;
}
.blog-body figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-sm);
}
.blog-body figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Horizontal rule / section divider */
.blog-body hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 48px 0;
}

/* --- Inline CTA (mid-article, optional) --- */
.blog-inline-cta {
  margin: 40px 0;
  padding: 24px 28px;
  background: var(--surface-warm);
  border: 1px solid rgba(249, 164, 27, 0.25);
  border-left: 4px solid var(--brand-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.blog-inline-cta p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.blog-inline-cta a {
  color: var(--brand-accent-warm);
  font-weight: 600;
  border-bottom-color: rgba(237, 139, 0, 0.3);
}
.blog-inline-cta a:hover {
  color: var(--brand-dark);
  border-bottom-color: var(--brand-dark);
}

/* --- Closing CTA Block --- */
.blog-cta-block {
  margin: 56px 0 0;
  padding: 40px 36px;
  background: linear-gradient(170deg, var(--brand-dark) 0%, #0d2a3a 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-cta-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(249, 164, 27, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.blog-cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.blog-cta-block p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.blog-cta-block .btn {
  position: relative;
  z-index: 1;
}
.blog-cta-block .btn--accent {
  color: var(--brand-dark);
  border-bottom: none;
}
.blog-cta-block .btn--accent:hover {
  color: #fff;
  border-bottom: none;
}
.blog-cta-price {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* --- Blog Nav CTA (match index.html header size) --- */
.page-blog .nav-cta {
  padding: 10px 24px !important;
  font-size: 0.92rem !important;
}

/* --- Blog Responsive --- */
@media (max-width: 767px) {
  .blog-hero {
    padding: 24px 0 0;
  }
  .blog-hero-inner h1 {
    font-size: 1.8rem;
  }
  .blog-body {
    padding: 32px 20px 48px;
  }
  .blog-body h2 {
    margin-top: 36px;
    font-size: 1.4rem;
  }
  .blog-body h3 {
    margin-top: 28px;
    font-size: 1.15rem;
  }
  .blog-cta-block {
    padding: 32px 24px;
  }
  .blog-cta-block h3 {
    font-size: 1.3rem;
  }
  .blog-breadcrumb-inner {
    font-size: 0.8rem;
  }
  .page-blog .nav-cta {
    display: none;
  }
}

