:root {
    --headings-font: "Roboto Condensed", sans-serif;
    --body-font: "Lora", serif;
    --ui-font: "Inter", sans-serif;
    --brand-orange: #F46C24;
    --brand-green: #57A23A;
    --brand-dark: #1A1D21;
    --light-bg: #F9F7F4;
    --light-green: #F0F7ED;
    --text-dark: #3d3d3d;
    --text-grey: #4d4d4d;
    --white: #ffffff;
    --nav-height: 80px;
    --page-bg: #F9F7F4;
    --border-light: rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

/* Anchor spacer for consistent scroll positioning across all screen sizes */
.anchor-spacer {
    position: relative;
    height: 0;
    margin: 0;
    padding: 0;
    visibility: hidden;
    pointer-events: none;
}

#how-it-works.anchor-spacer,
#pricing.anchor-spacer {
    top: -120px; /* Negative offset to position correctly */
    margin-bottom: -120px; /* Compensate for the negative top */
}

/* When target is active, ensure proper spacing */
#how-it-works:target,
#pricing:target {
    display: block;
}

#how-it-works:target + .how-it-works-v2,
#pricing:target + .pricing {
    animation: fadeInSection 0.3s ease-in;
}

@keyframes fadeInSection {
    from {
        opacity: 0.95;
    }
    to {
        opacity: 1;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    font-family: var(--body-font);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* --- Navigation --- */
nav {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo {
    font-family: var(--headings-font);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo .orange { color: var(--brand-orange); }
.logo .green { color: var(--brand-green); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-grey);
    font-family: var(--ui-font);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-orange);
}

.btn-nav {
    background: var(--brand-orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    padding: 80px 5% 40px 5%;
    text-align: center;
    background-color: var(--white);
}

.hero-quote {
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(240, 247, 237, 0.5) 100%);
    border-left: 4px solid var(--brand-orange);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    text-align: left;
}

.quote-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.quote-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-family: var(--body-font);
    font-weight: 500;
}

.quote-source {
    font-size: 14px;
    color: var(--text-grey);
    margin: 0;
    font-family: var(--ui-font);
    font-weight: 500;
    opacity: 0.8;
}

.hero h1 {
    font-family: var(--headings-font);
    font-size: 52px;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero h1 .orange { color: var(--brand-orange); }

.hero > p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--text-grey);
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    font-family: var(--ui-font);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    padding: 14px 30px;
    text-decoration: none;
    font-family: var(--ui-font);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--brand-green);
    color: var(--white);
}

.hero-viz {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hero-viz img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

/* --- Intro Video Section --- */
.intro-video {
    padding: 100px 5% 80px 5%;
    background-color: var(--light-bg);
    text-align: center;
}

.intro-video h2 {
    font-family: var(--headings-font);
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: var(--brand-dark);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Loom video thumbnail styles */
.loom-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2d32 100%);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
}

.loom-video-thumbnail:hover {
    background: linear-gradient(135deg, #2a2d32 0%, var(--brand-dark) 100%);
    transform: scale(1.02);
}

.loom-video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.play-button-overlay {
    margin-bottom: 20px;
}

.play-button {
    font-size: 72px;
    line-height: 1;
    transition: transform 0.3s;
    display: inline-block;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.thumbnail-text {
    text-align: center;
}

.fallback-text {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--ui-font);
    margin-bottom: 8px;
}

.fallback-subtext {
    font-size: 14px;
    opacity: 0.8;
    font-family: var(--ui-font);
}

/* --- How It Works --- */
.how-it-works {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    text-align: left;
    padding: 0;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--brand-orange);
}

.step-header {
    padding: 25px 30px 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.step-number-badge {
    font-family: var(--headings-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background: var(--brand-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(244, 108, 36, 0.3);
    letter-spacing: 0;
}

.step-header h3 {
    font-family: var(--headings-font);
    font-size: 22px;
    margin: 0;
    text-transform: uppercase;
    color: var(--brand-dark);
    letter-spacing: 0.5px;
    flex: 1;
}

.step-image {
    padding: 30px 30px 20px 30px;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(240, 247, 237, 0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 180px;
}

.step-image img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.8);
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.step-content {
    padding: 25px 30px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-card p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .hero-quote {
        padding: 25px 25px;
        margin-bottom: 40px;
    }
    .quote-text {
        font-size: 18px;
    }
    .quote-icon {
        font-size: 28px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero > p {
        font-size: 18px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Problem/Solution Overlay --- */
.Madison-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 100px auto;
    position: relative;
    z-index: 10;
    gap: 0;
    padding: 0 5%;
}

.card-content {
    background: var(--light-green);
    padding: 60px 50px;
    flex: 1.2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--brand-green);
    border-radius: 12px 0 0 12px;
    position: relative;
}

.card-content .section-tag {
    text-align: left;
    margin-bottom: 15px;
    display: block;
}

.card-content h2 {
    text-align: left;
    font-size: 32px;
    color: var(--brand-green);
    margin-bottom: 25px;
    font-family: var(--headings-font);
    font-weight: 700;
    line-height: 1.2;
}

.content-text {
    text-align: left;
}

.content-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: var(--brand-dark);
    font-weight: 600;
}

.card-form {
    background: var(--brand-dark);
    padding: 60px 50px;
    flex: 0.9;
    color: var(--white);
    margin-left: -20px;
    margin-top: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-form h2 {
    color: var(--brand-orange);
    font-family: var(--headings-font);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.card-form p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.card-form input {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 14px 16px;
    color: white;
    margin-bottom: 18px;
    outline: none;
    font-family: var(--ui-font);
    font-size: 15px;
    transition: all 0.3s ease;
}

.card-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.card-form input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(244, 108, 36, 0.2);
}

.card-form button {
    width: 100%;
    background: var(--brand-orange);
    color: var(--white);
    border: none;
    padding: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    font-family: var(--ui-font);
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(244, 108, 36, 0.3);
}

.card-form button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 108, 36, 0.4);
}

.card-form button:disabled {
    background: #93c5fd;
    cursor: not-allowed;
    transform: none;
}

.hidden {
    display: none;
}

/* --- Message Styling --- */
.message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    display: none;
    font-size: 14px;
    font-family: var(--ui-font);
    text-align: center;
}

.message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
}

.message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
}

/* --- Features Section --- */
.features {
    background: var(--light-bg);
    padding: 100px 5%;
}

.section-tag {
    font-family: var(--ui-font);
    text-transform: uppercase;
    color: var(--brand-green);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.features h2 {
    font-family: var(--headings-font);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

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

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--brand-green);
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--headings-font);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 5%;
    text-align: center;
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.08);
    padding: 0;
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: var(--brand-green);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #25282d 100%);
    color: var(--white);
    border: 2px solid var(--brand-orange);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(244, 108, 36, 0.25);
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 24px 60px rgba(244, 108, 36, 0.35);
}

.price-card-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.price-card.featured .price-card-header {
    border-bottom-color: rgba(255,255,255,0.1);
    padding-top: 50px;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--brand-orange);
    color: var(--white);
    padding: 8px;
    font-family: var(--headings-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light-green);
    color: var(--brand-green);
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--ui-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card.featured .price-badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.price-card h3 {
    font-family: var(--headings-font);
    font-size: 22px;
    margin: 0;
    text-transform: uppercase;
    color: var(--brand-green);
    letter-spacing: 0.5px;
}

.price-card.featured h3 {
    color: var(--brand-orange);
    margin-top: 10px;
}

.price {
    padding: 25px 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-family: var(--headings-font);
    font-size: 52px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
}

.price-card.featured .price-amount {
    color: var(--white);
}

.price-period {
    font-size: 16px;
    font-family: var(--ui-font);
    color: var(--text-grey);
    font-weight: 500;
}

.price-card.featured .price-period {
    color: rgba(255,255,255,0.7);
}

.price-list {
    list-style: none;
    padding: 0 30px;
    text-align: left;
    margin: 0 0 30px 0;
    flex: 1;
}

.price-list li {
    margin-bottom: 14px;
    font-family: var(--ui-font);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    color: var(--text-dark);
}

.price-card.featured .price-list li {
    color: rgba(255,255,255,0.9);
}

.check-icon {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-card.featured .check-icon {
    color: var(--brand-orange);
}

.price-card .btn-price {
    margin: 0 30px 30px 30px;
    padding: 16px;
    border: 2px solid var(--brand-orange);
    text-decoration: none;
    color: var(--brand-orange);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: var(--ui-font);
    font-size: 14px;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
}

.price-card .btn-price:hover {
    background: var(--brand-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 108, 36, 0.3);
}

.price-card.featured .btn-price {
    background: var(--brand-orange);
    color: var(--white);
    border-color: var(--brand-orange);
}

.price-card.featured .btn-price:hover {
    background: #d35400;
    border-color: #d35400;
    box-shadow: 0 6px 16px rgba(244, 108, 36, 0.4);
}

/* --- Support Tiers Section --- */
.support-tiers {
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 50px 40px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
}

.support-tiers h3 {
    font-family: var(--headings-font);
    font-size: 24px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--brand-dark);
}

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

.support-tier {
    text-align: left;
}

.support-tier h4 {
    font-family: var(--ui-font);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-tier:nth-child(1) h4 {
    color: var(--brand-green);
}

.support-tier:nth-child(2) h4 {
    color: var(--brand-orange);
}

.support-tier:nth-child(3) h4 {
    color: var(--brand-green);
}

.support-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-tier ul li {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 8px;
    padding-left: 0;
}

.support-tier ul li:before {
    content: "• ";
    color: var(--brand-green);
    font-weight: bold;
    margin-right: 8px;
}

/* --- Footer --- */
footer {
    background: var(--brand-dark);
    color: var(--white);
    padding: 80px 5% 40px 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.footer-logo {
    font-family: var(--headings-font);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--ui-font);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    opacity: 0.6;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--brand-orange);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.5;
}

/* --- Page Header --- */
.page-header {
    padding: 120px 5% 60px 5%;
    text-align: center;
    background-color: var(--white);
}

.page-header h1 {
    font-family: var(--headings-font);
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.archive-link {
    display: inline-block;
    font-family: var(--ui-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.archive-link:hover {
    color: var(--brand-orange);
}

/* --- Tutorials Page --- */
.tutorials-section {
    padding: 60px 5%;
    background-color: var(--light-bg);
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tutorial-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tutorial-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--brand-dark);
}

.tutorial-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tutorial-content {
    padding: 30px;
}

.tutorial-content h3 {
    font-family: var(--headings-font);
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.tutorial-content p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 15px;
}

.tutorial-duration {
    display: inline-block;
    font-family: var(--ui-font);
    font-size: 12px;
    color: var(--brand-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Blog Page --- */
.blog-section {
    padding: 60px 5%;
    background-color: var(--white);
}

.blog-container {
    max-width: 680px;
    margin: 0 auto;
}

/* Substack-style blog posts - matching archive page exactly */
.blog-post-substack {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
}

.blog-post-substack:last-child {
    border-bottom: none;
}

.blog-post-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.blog-post-text {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 140px);
}

.blog-post-meta-substack {
    font-family: var(--ui-font);
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.blog-post-title-substack {
    font-family: var(--headings-font);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #1a1a1a;
    font-weight: 600;
}

.blog-post-title-substack a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-title-substack a:hover {
    color: var(--brand-orange);
}

.blog-post-excerpt-substack {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.blog-post-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.blog-post-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Month separator - matching Substack */
.blog-month-separator {
    font-family: var(--ui-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 48px 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--brand-green);
}

.blog-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-grey);
    font-size: 16px;
    font-family: var(--ui-font);
}

.blog-error {
    text-align: center;
    padding: 60px 20px;
    color: #991b1b;
    background: #fee2e2;
    border-radius: 8px;
    margin: 40px 0;
}

/* --- Legal Pages (Privacy, Terms) --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5% 60px 5%;
    min-height: calc(100vh - var(--nav-height));
}

.container header {
    margin-bottom: 60px;
    text-align: center;
}

.container header h1 {
    font-family: var(--headings-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container main {
    margin-bottom: 80px;
}

.container main section {
    line-height: 1.8;
}

.container main section h2 {
    font-family: var(--headings-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 48px 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container main section h2:first-child {
    margin-top: 0;
}

.container main section p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.container footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.container footer p {
    font-family: var(--ui-font);
    font-size: 14px;
    color: var(--text-grey);
    margin: 0;
}

@media (max-width: 900px) {
    .Madison-section { 
        flex-direction: column; 
        margin-top: 60px; 
        gap: 0;
    }
    .card-content {
        border-radius: 12px 12px 0 0;
        padding: 40px 30px;
    }
    .card-form { 
        margin-left: 0; 
        margin-top: 0;
        border-radius: 0 0 12px 12px;
        padding: 40px 30px;
    }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tutorials-grid { grid-template-columns: 1fr; }
    .blog-post-content-wrapper { 
        flex-direction: column; 
        gap: 16px;
    }
    .blog-post-text {
        max-width: 100%;
    }
    .blog-post-image-wrapper { 
        width: 100%; 
        height: 200px; 
        align-self: center;
    }
    .blog-post-title-substack { font-size: 18px; }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .price-card.featured:hover {
        transform: translateY(-8px);
    }
    .price-amount {
        font-size: 42px;
    }
    .container {
        padding: 60px 5% 40px 5%;
    }
    .container header h1 {
        font-size: 36px;
    }
    .container main section h2 {
        font-size: 20px;
        margin: 40px 0 12px 0;
    }
    .container main section p {
        font-size: 15px;
    }
}

/* --- How It Works V2 Section --- */
.how-it-works-v2 {
    padding: 80px 5% 100px 5%;
    background-color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 0;
}

/* Visual separator between Promise and How It Works sections */
.promise + #how-it-works.anchor-spacer + .how-it-works-v2::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-green), var(--white));
    pointer-events: none;
    z-index: 0;
}

.how-it-works-v2 h2 {
    font-family: var(--headings-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 20px 0;
    text-transform: none;
    letter-spacing: -0.5px;
    position: relative;
    padding-top: 20px;
    z-index: 1;
}

.how-it-works-v2 .section-tag {
    display: block;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.how-it-works-v2 .steps-row {
    position: relative;
    z-index: 1;
}

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

.step-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--brand-green);
}

.step-header {
    padding: 25px 25px 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.step-number-badge {
    font-family: var(--headings-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--brand-orange);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(244, 108, 36, 0.3);
    border: 2px solid var(--white);
}

.step-header h3 {
    font-family: var(--headings-font);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--brand-dark);
    letter-spacing: 0.5px;
    flex: 1;
}

.step-image-section {
    padding: 35px 30px 25px 30px;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(240, 247, 237, 0.4) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    position: relative;
    overflow: hidden; /* Contain zoomed image */
    cursor: zoom-in; /* Indicate zoom capability */
}

.step-image-section img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.9);
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
    transform-origin: center center; /* Zoom from center */
}

/* Zoom effect when hovering directly on the image section */
.step-image-section:hover img {
    transform: scale(1.8); /* Significant zoom for detail viewing */
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    cursor: zoom-out; /* Change cursor when zoomed */
}

/* Subtle zoom when hovering the entire card */
.step-item:hover .step-image-section:not(:hover) img {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.step-content {
    padding: 25px 30px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

@media (max-width: 900px) {
    #how-it-works.anchor-spacer,
    #pricing.anchor-spacer {
        top: -100px;
        margin-bottom: -100px;
    }
    
    .how-it-works-v2 {
        padding: 60px 5% 80px 5%;
    }
    
    .how-it-works-v2 h2 {
        font-size: 32px;
        padding-top: 15px;
    }
    
    .promise + #how-it-works.anchor-spacer + .how-it-works-v2::before {
        top: -30px;
        height: 30px;
    }
    
    .steps-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-image-section {
        min-height: 180px;
        padding: 30px 25px 20px 25px;
    }
    
    .step-image-section img {
        max-width: 200px;
    }
    
    /* Slightly less zoom on mobile for better UX */
    .step-image-section:hover img {
        transform: scale(1.5);
    }
}

/* --- V2 Messaging Sections --- */
.pain-banner {
    background: linear-gradient(135deg, rgba(244, 108, 36, 0.06) 0%, rgba(244, 108, 36, 0.02) 100%);
    padding: 40px 5%;
    text-align: center;
    border-bottom: 1px solid rgba(244, 108, 36, 0.15);
}

.pain-banner .quote {
    font-family: var(--body-font);
    font-size: 22px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pain-banner .attribution {
    font-size: 14px;
    color: var(--text-grey);
    opacity: 0.7;
    font-family: var(--ui-font);
}

.hero-v2 {
    padding: 60px 5% 70px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.hero-v2 h1 {
    font-family: var(--headings-font);
    font-size: 46px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 24px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-v2 .subheadline {
    font-size: 20px;
    color: var(--text-grey);
    margin: 0 auto 36px auto;
    max-width: 700px;
    line-height: 1.7;
}

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

/* Justification Section */
.justification {
    background: var(--white);
    padding: 70px 5%;
    border-bottom: 1px solid var(--border-light);
}

.justification-inner {
    max-width: 800px;
    margin: 0 auto;
}

.justification h2 {
    font-family: var(--headings-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 28px 0;
    letter-spacing: -0.5px;
}

.justification p {
    font-size: 18px;
    color: var(--text-grey);
    margin: 0 0 20px 0;
    line-height: 1.7;
}

.justification strong {
    color: var(--brand-dark);
    font-weight: 600;
}

.justification .highlight {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border-left: 4px solid var(--brand-orange);
    padding: 24px 28px;
    margin-top: 28px;
    border-radius: 0 8px 8px 0;
}

.justification .highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--brand-dark);
}

/* Demonstration Section */
.demonstration {
    background: var(--brand-dark);
    color: var(--white);
    padding: 70px 5%;
}

.demonstration h2 {
    font-family: var(--headings-font);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--white);
    text-align: center;
}

.demonstration .section-intro {
    text-align: center;
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.demo-grid {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.demo-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px;
}

.demo-query {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: var(--brand-orange);
    background: rgba(0,0,0,0.35);
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 16px;
    display: block;
    border-left: 3px solid var(--brand-orange);
    line-height: 1.5;
}

.demo-result {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.92;
}

.demo-result strong {
    color: var(--brand-green);
    font-weight: 600;
}

/* Confirmation Section */
.confirmation {
    background: var(--white);
    padding: 70px 5%;
    border-bottom: 1px solid var(--border-light);
}

.confirmation h2 {
    font-family: var(--headings-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 40px 0;
    text-align: center;
}

.confirmation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-list li {
    font-size: 17px;
    color: var(--text-grey);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.6;
}

.confirmation-list li:last-child {
    border-bottom: none;
}

.confirmation-list .check {
    color: var(--brand-green);
    font-size: 20px;
    flex-shrink: 0;
    font-weight: 700;
}

/* Promise Section */
.promise {
    background: var(--light-green);
    padding: 60px 5%;
    text-align: center;
    border-bottom: 1px solid rgba(87, 162, 58, 0.2);
    margin-bottom: 0;
    position: relative;
}

.promise::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-green), var(--white));
    pointer-events: none;
}

.promise h2 {
    font-family: var(--headings-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 20px 0;
}

.promise p {
    font-size: 18px;
    color: var(--text-grey);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.promise strong {
    color: var(--brand-dark);
}

/* Consolidated Proof Points */
.proof-section {
    padding: 70px 5%;
    background: var(--page-bg);
}

.proof-section h2 {
    font-family: var(--headings-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 50px 0;
    text-align: center;
}

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

.proof-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.proof-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-card .icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.proof-card h3 {
    font-family: var(--headings-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 12px 0;
}

.proof-card p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Video Section - Updated */
.video-section {
    padding: 70px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.video-section h2 {
    font-family: var(--headings-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 16px 0;
    text-align: center;
}

.video-section .section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.video-section .video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #d35400 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-family: var(--headings-font);
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.final-cta p {
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto 36px auto;
    opacity: 0.95;
    line-height: 1.6;
}

.final-cta .btn {
    display: inline-block;
    background: white;
    color: var(--brand-orange);
    padding: 18px 40px;
    font-family: var(--headings-font);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.final-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* --- Landing Page Specific Styles --- */
.pain-points {
    padding: 100px 5%;
    background-color: var(--white);
}

.pain-points h2 {
    font-family: var(--headings-font);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: none;
    letter-spacing: -0.5px;
    color: var(--brand-dark);
}

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

.pain-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pain-card .quote {
    font-style: italic;
    color: var(--text-grey);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: var(--body-font);
}

.pain-card .source {
    font-size: 13px;
    color: var(--text-grey);
    opacity: 0.7;
    font-family: var(--ui-font);
}

.solution {
    background: var(--brand-dark);
    color: var(--white);
    padding: 80px 5%;
    margin: 0;
    text-align: center;
}

.solution h2 {
    font-family: var(--headings-font);
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: var(--white);
    text-transform: none;
}

.solution .intro {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-family: var(--headings-font);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--brand-orange);
    text-transform: none;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.benefits {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.benefits h2 {
    font-family: var(--headings-font);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: none;
    letter-spacing: -0.5px;
    color: var(--brand-dark);
}

.benefit-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-icon {
    font-size: 48px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-family: var(--headings-font);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--brand-dark);
    text-transform: none;
}

.benefit-content p {
    font-size: 17px;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 5%;
    background: var(--white);
    margin: 0;
}

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

.stat-number {
    font-family: var(--headings-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-orange);
    margin: 0;
}

.stat-label {
    font-size: 16px;
    color: var(--text-grey);
    margin-top: 10px;
    font-family: var(--ui-font);
}

.final-cta .cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--brand-orange);
    padding: 18px 50px;
    font-family: var(--headings-font);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.landing-hero {
    padding: 100px 5% 60px 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.landing-hero h2 {
    font-family: var(--headings-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero .subheadline {
    font-size: 24px;
    color: var(--text-grey);
    margin: 0 0 40px 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Landing V2 Specific Styles */
.pain-lead {
    text-align: center;
    margin: 60px 0 50px 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(244, 108, 36, 0.05) 0%, rgba(244, 108, 36, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--brand-orange);
}

.pain-lead .big-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-family: var(--body-font);
    font-weight: 500;
}

.pain-lead .attribution {
    font-size: 14px;
    color: var(--text-grey);
    opacity: 0.8;
    font-family: var(--ui-font);
}

.landing-hero-v2 {
    padding: 60px 5% 50px 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.landing-hero-v2 h2 {
    font-family: var(--headings-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero-v2 .subheadline {
    font-size: 20px;
    color: var(--text-grey);
    margin: 0 auto 35px auto;
    max-width: 750px;
    line-height: 1.7;
}

/* Landing V2 Additional Styles */
.demo-example {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-example:last-child {
    margin-bottom: 0;
}

.proof-points {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.proof-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.proof-content h3 {
    font-family: var(--headings-font);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--brand-dark);
    text-transform: none;
}

.proof-content p {
    font-size: 17px;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.7;
}

/* Utility Classes for Common Inline Styles */
.footer-description {
    font-size: 14px;
    opacity: 0.6;
    line-height: 1.6;
}

.page-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-grey);
    font-size: 18px;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 5%;
}

@media (max-width: 768px) {
    .hero-v2 h1 { 
        font-size: 32px; 
    }
    .pain-banner .quote { 
        font-size: 18px; 
    }
    .justification h2, 
    .demonstration h2, 
    .confirmation h2 { 
        font-size: 26px; 
    }
    .steps-row { 
        grid-template-columns: 1fr; 
    }
    .proof-grid { 
        grid-template-columns: 1fr; 
    }
    .final-cta h2 { 
        font-size: 28px; 
    }
    .landing-hero h2 {
        font-size: 32px;
    }
    .landing-hero .subheadline {
        font-size: 18px;
    }
    .pain-points h2,
    .benefits h2 {
        font-size: 28px;
    }
    .solution h2,
    .final-cta h2 {
        font-size: 32px;
    }
    .benefit-item {
        flex-direction: column;
    }
    .pain-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .landing-hero-v2 h2 {
        font-size: 32px;
    }
    .landing-hero-v2 .subheadline {
        font-size: 18px;
    }
    .pain-lead .big-quote {
        font-size: 20px;
    }
}
