/* ==========================================
   Openclaw Setup Pro - Styles
   Light theme with modern glassmorphic design
   ========================================== */

/* CSS Variables */
:root {
    /* Background colors - warm cream/beige (no white) */
    --bg-primary: transparent;
    --bg-secondary: #EBE8E2;
    --bg-tertiary: #F8F5F0;
    --bg-card: #F8F5F0;

    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;

    /* Sage green accent */
    --accent: #85A18B;
    --accent-hover: #728E78;
    --accent-light: rgba(107, 127, 94, 0.1);

    /* Sage-tinted secondary colors */
    --accent-secondary: #8B9F7E;
    --accent-secondary-light: #E8EDE4;

    --success: #6B7F5E;
    --error: #ef4444;

    /* Warm borders */
    --border-color: #E5E2DC;
    --border-light: #EBE8E2;

    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;

    --container-max: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Very subtle flat shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: #F5F2ED;
    background-image: url('../assets/1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--text-secondary);
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-family: 'Playfair Display', Baskerville, Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

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

.btn-secondary {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-starter-green {
    border: 2px solid #85A18B;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: #F5F2ED;
    background-image: url('../assets/1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #B89B58;
}

.logo-img {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 600;
    line-height: 40px;
    color: #333;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 8px 4px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-cta {
    display: block;
}

/* Sage green button style */
.btn-dark {
    background-color: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    border: 1px solid var(--accent);
}

.btn-dark:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
}

.mobile-nav-cta {
    margin-top: 8px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 140px 0 var(--section-padding);
    background: transparent;
}

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

/* Trust badge with avatars */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 8px;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -8px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar.avatar-1 { background: linear-gradient(135deg, #8B9F7E, #6B7F5E); }
.trust-avatar.avatar-2 { background: linear-gradient(135deg, #9AAD8B, #7A8F6D); }
.trust-avatar.avatar-3 { background: linear-gradient(135deg, #A8B89A, #8B9F7E); }

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Legacy badge support */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.hero-title {
    font-family: 'Playfair Display', Baskerville, Georgia, serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    color: #333;
    -webkit-text-fill-color: #333;
    overflow-wrap: normal;
}

.hero-title span {
    white-space: normal;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 24px auto 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================
   Quotes Marquee Section
   ========================================== */
.quotes-marquee {
    padding: 60px 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.quotes-track {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quotes-row {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.quotes-row-inner {
    display: flex;
    gap: 100px;
    width: max-content;
}

.quotes-row:first-child .quotes-row-inner {
    animation: scroll-quotes 60s linear infinite;
}

.quotes-row:last-child .quotes-row-inner {
    animation: scroll-quotes-offset 60s linear infinite;
}

.quotes-row:hover .quotes-row-inner {
    animation-play-state: paused;
}

@keyframes scroll-quotes {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-quotes-offset {
    0% { transform: translateX(-25%); }
    100% { transform: translateX(-75%); }
}

.quote-item {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-style: italic;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 0 16px;
}

/* ==========================================
   Pain Points Section (Feature Cards)
   ========================================== */
.pain-points {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    padding: 0;
    text-align: left;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative gradient areas */
.pain-card-graphic {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pain-card:nth-child(1) .pain-card-graphic {
    background: linear-gradient(180deg, #EBE8E2 0%, #E5E2DC 50%, #F0EDE7 100%);
}

.pain-card:nth-child(2) .pain-card-graphic {
    background: linear-gradient(180deg, #E8E5DF 0%, #E2DFDA 50%, #EBE8E2 100%);
}

.pain-card:nth-child(3) .pain-card-graphic {
    background: linear-gradient(180deg, #E5E2DC 0%, #DFDCD6 50%, #E8E5DF 100%);
}

.pain-card-content {
    padding: 24px 28px 28px;
}

.pain-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pain-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(250,248,245,0.95), rgba(245,242,237,0.8));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pain-icon svg {
    width: 36px;
    height: 36px;
    color: var(--text-primary);
    opacity: 0.8;
}

.pain-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pain-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Solution Section
   ========================================== */
.solution {
    padding: var(--section-padding) 0;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
}

/* Timeline Layout */
.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 330px;
}

.milestone-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 30px;
}

.milestone-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.timeline-line {
    height: 4px;
    background-color: var(--accent);
    flex: 1;
    min-width: 60px;
    margin-top: 40px;
    margin-left: -75px;
    margin-right: -75px;
}

.timeline-step h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.timeline-step p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.timeline-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4), -4px -4px 10px rgba(210, 204, 190, 0.5);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 18px rgba(166, 157, 138, 0.5), -5px -5px 12px rgba(210, 204, 190, 0.6);
}


.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.seats-tracker {
    display: none;
    margin-top: 8px;
    text-align: center;
}

.seats-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Green — available */
.seats-green .seats-pill { background: rgba(133, 161, 139, 0.12); color: #85A18B; border: 1px solid rgba(133, 161, 139, 0.25); }

/* Yellow — limited (2-3 seats) */
.seats-yellow .seats-pill { background: rgba(207, 155, 50, 0.12); color: #CF9B32; border: 1px solid rgba(207, 155, 50, 0.25); }

/* Red — urgent (1 seat) */
.seats-red .seats-pill { background: rgba(194, 102, 90, 0.12); color: #C2665A; border: 1px solid rgba(194, 102, 90, 0.25); }

/* Grey — sold out (0 seats) */
.seats-grey .seats-pill { background: rgba(168, 162, 152, 0.12); color: #A8A298; border: 1px solid rgba(168, 162, 152, 0.25); }

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-amount {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    color: var(--text-secondary);
}

.pricing-desc {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature.included .feature-icon {
    color: var(--success);
}

.feature.not-included {
    color: var(--text-muted);
}

.feature.not-included .feature-icon {
    color: var(--text-muted);
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
}

.steps-detailed {
    max-width: 700px;
    margin: 0 auto;
}

.step-detailed {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-detailed:last-child {
    margin-bottom: 0;
}

.step-detailed-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-detailed-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-detailed-content p {
    color: var(--text-secondary);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4), -4px -4px 10px rgba(210, 204, 190, 0.5);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 18px rgba(166, 157, 138, 0.5), -5px -5px 12px rgba(210, 204, 190, 0.6);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-avatar.avatar-1 { background: linear-gradient(135deg, #8B9F7E, #6B7F5E); }
.author-avatar.avatar-2 { background: linear-gradient(135deg, #9AAD8B, #7A8F6D); }
.author-avatar.avatar-3 { background: linear-gradient(135deg, #A8B89A, #8B9F7E); }

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   Integrations Section
   ========================================== */
.integrations {
    padding: var(--section-padding) 0;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.section-chevron {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: #8B9F7E;
    margin-bottom: 8px;
    font-weight: 300;
}

.integrations .section-title {
    margin-bottom: 40px;
}

.integrations-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.integrations-row {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.integrations-row-inner {
    display: flex;
    gap: 16px;
    width: max-content;
}

.integrations-row[data-direction="left"] .integrations-row-inner {
    animation: scroll-left 35s linear infinite;
}

.integrations-row[data-direction="right"] .integrations-row-inner {
    animation: scroll-right 35s linear infinite;
}

.integrations-row:hover .integrations-row-inner {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.integration-badge:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--text-muted);
}

.integration-badge svg {
    flex-shrink: 0;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: var(--section-padding) 0;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
}

.faq .section-title {
    margin-bottom: 54px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.faq-item {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4), -4px -4px 10px rgba(210, 204, 190, 0.5);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 8px 8px 18px rgba(166, 157, 138, 0.5), -5px -5px 12px rgba(210, 204, 190, 0.6);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #8B9F7E;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.faq-answer a {
    color: var(--accent);
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: #333;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-note {
    color: var(--text-muted);
}

.cta-note a {
    color: var(--accent);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 48px 0 24px;
    background-color: #EBE8E2;
    background-image: url('../assets/1.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-california {
    height: 70px;
    width: auto;
    opacity: 0.6;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #B89B58;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--text-secondary);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0.8;
}

/* ==========================================
   Thank You Page Specific Styles
   ========================================== */
.thank-you-hero {
    padding: 140px 0 var(--section-padding);
    text-align: center;
    background-color: var(--bg-primary);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(107, 127, 94, 0.15);
    color: var(--success);
    border-radius: 50%;
}

.thank-you-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.thank-you-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* Scheduler Section */
.scheduler {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

.scheduler-embed {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-card);
}

.scheduler-embed iframe {
    border: none;
}

.scheduler-placeholder {
    padding: 80px 40px;
    text-align: center;
    color: var(--text-secondary);
}

.scheduler-note {
    margin-top: 16px;
    font-size: 0.875rem;
}

/* Contact Info */
.contact-info {
    padding: var(--section-padding) 0;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.response-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   Legal Pages (Privacy Policy, Terms)
   ========================================== */
.legal-section {
    padding: 140px 0 var(--section-padding);
    background-color: var(--bg-primary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content .section-title {
    margin-bottom: 8px;
}

.legal-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent);
}

.legal-content a:hover {
    color: var(--accent-hover);
}

.legal-back {
    margin-top: 48px;
    text-align: center;
}

/* ==========================================
   CTA + Testimonials Section
   ========================================== */
.cta-testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.cta-testimonials .container {
    overflow: visible;
}

/* Main hero card - light theme */
.cta-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #F8F5F0;
    background-image: url('../assets/1.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-xl);
    min-height: 480px;
    position: relative;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4), -4px -4px 10px rgba(210, 204, 190, 0.5);
}

/* Left side - CTA content */
.cta-hero-content {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-hero-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
    -webkit-text-fill-color: #333;
    line-height: 1.3;
}

.cta-hero-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Right side - Floating testimonials with blur effect */
.testimonials-float {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    height: 100%;
    overflow: hidden;
}

.testimonials-float-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: -60px;
    margin-bottom: -60px;
}

/* Individual floating testimonial card */
.testimonial-card-float {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

/* Top card - fade at top */
.testimonial-card-float:first-child {
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
}

/* Bottom card - fade at bottom */
.testimonial-card-float:last-child {
    mask-image: linear-gradient(to top, transparent 0%, black 40%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 40%, black 100%);
}

.testimonial-card-float:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-float-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.testimonial-float-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8B9F7E, #6B7F5E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.testimonial-float-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.testimonial-float-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.testimonial-float-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.star-rating-float {
    color: #B89B58;
    font-size: 0.75rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-float-quote {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
}

.testimonial-float-metric {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================
   DIY vs Done-For-You Comparison Section
   ========================================== */
.comparison {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

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

.comparison-row.table-header {
    background-color: var(--text-primary);
}

.comparison-row.table-header .comparison-cell {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 24px 32px;
    justify-content: center;
}

.comparison-row.table-header .us-cell {
    background-color: #6B7F5E;
}

.comparison-cell {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.comparison-cell.hype-cell {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.19rem;
    font-weight: 600;
}

.comparison-row.table-header .hype-cell {
    background-color: #404550;
}

.comparison-row.table-header .reality-cell {
    background-color: #B96644;
}

.comparison-cell.reality-cell {
    color: var(--text-secondary);
    border-left: 1px solid var(--border-light);
    font-weight: 600;
    font-size: 1.19rem;
}

.comparison-cell.reality-cell.danger {
    background-color: rgba(239, 68, 68, 0.04);
}

.comparison-cell.reality-cell.danger .cell-icon {
    color: var(--error);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.comparison-cell.us-cell {
    color: var(--text-primary);
    border-left: 1px solid var(--border-light);
    font-weight: 600;
    font-size: 1.19rem;
}

.comparison-cell.us-cell.success {
    background-color: rgba(107, 127, 94, 0.08);
}

.comparison-cell.us-cell.success .cell-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.cell-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile table styles */
@media (max-width: 900px) {
    .comparison-table {
        border-radius: var(--radius-lg);
    }

    .comparison-row {
        grid-template-columns: 1fr;
        border-bottom: 2px solid var(--border-color);
    }

    .comparison-row.table-header {
        display: none;
    }

    .comparison-cell {
        padding: 20px 24px;
        border-left: none !important;
        font-size: 1rem;
    }

    .comparison-cell.hype-cell {
        background-color: #EBE8E2;
        background-image: url('../assets/2.png');
        background-size: cover;
        background-position: center;
        font-size: 1rem;
    }

    .comparison-cell.hype-cell::before {
        content: "The Hype: ";
        font-weight: 600;
        font-style: normal;
        color: var(--text-secondary);
    }

    .comparison-cell.reality-cell::before {
        content: "Reality: ";
        font-weight: 600;
        color: var(--error);
    }

    .comparison-cell.us-cell::before {
        content: "With Us: ";
        font-weight: 600;
        color: var(--success);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pain-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-card:last-child,
    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

    .cta-hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: hidden;
    }

    .cta-hero-content {
        padding: 48px 40px;
    }

    .testimonials-float {
        padding: 24px;
        justify-content: center;
        overflow: visible;
    }

    .testimonials-float-inner {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .testimonial-card-float:first-child {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .testimonial-card-float:last-child {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 var(--section-padding);
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .hero-title span {
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.9;
        margin-top: 24px;
        margin-bottom: 32px;
    }

    .hero-subtitle span {
        white-space: normal;
    }

    .quotes-marquee {
        padding: 40px 0;
    }

    .quotes-track {
        gap: 16px;
    }

    .quote-item {
        font-size: 1.5rem;
    }

    .quotes-row-inner {
        gap: 60px;
    }

    .quotes-row[data-direction="left"] .quotes-row-inner,
    .quotes-row[data-direction="right"] .quotes-row-inner {
        animation-duration: 30s;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .pain-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Integrations responsive */
    .integrations-row[data-direction="left"] .integrations-row-inner,
    .integrations-row[data-direction="right"] .integrations-row-inner {
        animation-duration: 25s;
    }

    .integration-badge {
        padding: 10px 18px;
        font-size: 0.875rem;
    }

    .integrations-row-inner {
        gap: 12px;
    }

    .pain-card:last-child,
    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .pain-card-graphic {
        height: 140px;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* Timeline mobile styles */
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        max-width: 420px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .trust-badge {
        padding: 6px 12px 6px 6px;
    }

    .trust-text {
        font-size: 0.8rem;
    }

    .cta-hero-content {
        padding: 32px 24px;
    }

    .cta-hero-title {
        font-size: 1.5rem;
    }

    .cta-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-hero-buttons .btn {
        margin-left: 0;
    }

    .testimonials-float {
        padding: 0 16px 24px 16px;
    }

    .testimonial-card-float {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: fit-content;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .faq-item {
        padding: 20px;
    }

    .pain-card-content {
        padding: 20px;
    }
}

/* ==========================================
   Learn / Blog Section
   ========================================== */

.learn-hero {
    padding: 140px 0 48px;
    background-color: var(--bg-primary);
    text-align: center;
}

.learn-grid-section {
    padding: 0 0 var(--section-padding);
    background-color: var(--bg-primary);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.learn-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4),
                -4px -4px 10px rgba(210, 204, 190, 0.5);
    transition: all 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 18px rgba(166, 157, 138, 0.5),
                -5px -5px 12px rgba(210, 204, 190, 0.6);
    color: inherit;
}

.learn-card-graphic {
    height: 160px;
    display: flex;
    align-items: flex-end;
    padding: 16px 24px;
    position: relative;
}

.learn-card:nth-child(1) .learn-card-graphic {
    background: linear-gradient(180deg, #EBE8E2 0%, #E5E2DC 50%, #F0EDE7 100%);
}

.learn-card:nth-child(2) .learn-card-graphic {
    background: linear-gradient(180deg, #E8E5DF 0%, #E2DFDA 50%, #EBE8E2 100%);
}

.learn-card:nth-child(3) .learn-card-graphic {
    background: linear-gradient(180deg, #E5E2DC 0%, #DFDCD6 50%, #E8E5DF 100%);
}

.learn-card:nth-child(4) .learn-card-graphic {
    background: linear-gradient(180deg, #E8E5DF 0%, #E0DDD7 50%, #EBE8E2 100%);
}

.learn-card:nth-child(5) .learn-card-graphic {
    background: linear-gradient(180deg, #EBE8E2 0%, #E5E2DC 50%, #F0EDE7 100%);
}

.learn-card:nth-child(6) .learn-card-graphic {
    background: linear-gradient(180deg, #E5E2DC 0%, #DFDCD6 50%, #E8E5DF 100%);
}

.learn-card:nth-child(7) .learn-card-graphic {
    background: linear-gradient(180deg, #E8E5DF 0%, #E2DFDA 50%, #EBE8E2 100%);
}

.learn-card:nth-child(8) .learn-card-graphic {
    background: linear-gradient(180deg, #EBE8E2 0%, #E5E2DC 50%, #F0EDE7 100%);
}

.learn-card-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(133, 161, 139, 0.15);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.learn-card-content {
    padding: 24px 28px 28px;
}

.learn-card-title {
    font-family: 'Playfair Display', Baskerville, Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.learn-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.learn-card-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s ease;
}

.learn-card:hover .learn-card-link {
    color: var(--accent-hover);
}

.learn-cta {
    padding: var(--section-padding) 0;
    background-color: #EBE8E2;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
}

/* ==========================================
   Article Page Styles
   ========================================== */

.article-section {
    padding: 140px 0 var(--section-padding);
    background-color: var(--bg-primary);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content .section-title {
    margin-bottom: 8px;
    text-align: left;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.article-breadcrumb {
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.article-breadcrumb a {
    color: var(--accent);
}

.article-breadcrumb a:hover {
    color: var(--accent-hover);
}

.article-breadcrumb span {
    color: var(--text-muted);
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--accent);
}

.article-content a:hover {
    color: var(--accent-hover);
}

.article-content a.btn-primary {
    color: white;
}

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-content pre {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 24px 0;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.article-content code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875em;
}

.article-content p code,
.article-content li code {
    background-color: rgba(133, 161, 139, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--text-primary);
}

.article-cta-box {
    background-color: #F8F5F0;
    background-image: url('../assets/2.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4),
                -4px -4px 10px rgba(210, 204, 190, 0.5);
}

.article-cta-box h3 {
    font-family: 'Playfair Display', Baskerville, Georgia, serif;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.article-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Learn/Article Responsive */
@media (max-width: 1024px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .learn-grid .learn-card:last-child:nth-child(odd) {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .learn-hero {
        padding: 120px 0 32px;
    }

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

    .learn-grid .learn-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .article-content .section-title {
        text-align: center;
    }

    .article-meta {
        text-align: center;
    }

    .article-breadcrumb {
        text-align: center;
    }
}

/* ==========================================
   Hero Secondary Link
   ========================================== */
.hero-secondary-link {
    display: block;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-secondary-link:hover {
    color: var(--accent);
}

/* ==========================================
   Mid-Page CTA Section
   ========================================== */
.mid-cta {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.mid-cta-card {
    text-align: center;
    background: url('../assets/2.png') center/cover no-repeat;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.mid-cta-title {
    font-family: 'Playfair Display', var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mid-cta-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* ==========================================
   Hitter Statements — Scroll Cards
   ========================================== */
.hitter-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.hitter-cta {
    text-align: center;
    margin-top: 40px;
}

.hitter-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.hitter-card {
    background: url('../assets/2.png') center/cover no-repeat;
    border: 2px solid rgba(181, 161, 96, 0.62);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 6px 6px 14px rgba(166, 157, 138, 0.4), -4px -4px 10px rgba(210, 204, 190, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hitter-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 20px rgba(166, 157, 138, 0.5), -4px -4px 12px rgba(210, 204, 190, 0.6);
}

.hitter-card h2 {
    font-family: 'Playfair Display', var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

/* Scroll fade-in animation */
.hitter-card.hitter-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hitter-card.hitter-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hitter-card {
        padding: 32px 24px;
    }

    .hitter-card h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .hitter-card h2 {
        font-size: 1.15rem;
    }
}

/* ==========================================
   Lead Capture Section
   ========================================== */
.lead-capture {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.lead-capture-card {
    text-align: center;
    background: url('../assets/2.png') center/cover no-repeat;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    max-width: 680px;
    margin: 0 auto;
}

.lead-capture-title {
    font-family: 'Playfair Display', var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lead-capture-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.lead-capture-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto;
}

.lead-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-family);
    background: #fff;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.lead-input:focus {
    outline: none;
    border-color: var(--accent);
}

.lead-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    cursor: pointer;
}

.lead-capture-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   Guarantee Badge
   ========================================== */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--accent-secondary-light);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge svg {
    flex-shrink: 0;
    stroke: var(--accent);
}

/* ==========================================
   New Section Responsive
   ========================================== */
@media (max-width: 768px) {
    .btn:not(.btn-block):not(.header-cta) {
        display: block;
        width: fit-content;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .mid-cta-card {
        padding: 32px 20px;
    }

    .mid-cta-title {
        font-size: 1.4rem;
    }

    .lead-capture-card {
        padding: 32px 20px;
    }

    .lead-submit {
        width: 100%;
        max-width: 100%;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius-lg);
        padding: 20px;
    }
}
