/* ================================================
   THE FOCUSED EXECUTIVE - Sales Page Styles
   ================================================ */

/* Sales Page Body Override */
body.sales-page {
    background-color: var(--bg-stone);

    /* Enforce Inter font */
    --font-headline: 'Inter', sans-serif;
    --font-subheading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-nav: 'Inter', sans-serif;

    --weight-headline: 700;
    --weight-subheading: 700;
    --weight-body: 400;
    --weight-nav: 500;
}

/* ================================================
   SALES HEADER (Sticky)
   ================================================ */
.sales-header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(46, 46, 66, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.sales-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sales-header .logo {
    color: var(--text-on-dark);
    font-size: 1rem;
}

.sales-header .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1rem;
    color: var(--text-on-dark);
}

.sales-header .nav-links a {
    color: var(--text-on-dark);
    transition: color 0.2s;
}

.sales-header .nav-links a:hover {
    color: var(--accent-yellow);
}

.sales-header .nav-btn {
    background-color: var(--cta-orange);
    color: var(--text-on-dark);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.2s, transform 0.2s;
}

.sales-header .nav-btn:hover {
    background-color: #b04600;
    transform: translateY(-1px);
    color: var(--text-on-dark);
}

/* ================================================
   EYEBROW TEXT
   ================================================ */
.eyebrow {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

/* ================================================
   SECTION HEADINGS
   ================================================ */
.section-heading {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 2.8rem;
    color: var(--text-on-light);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.1;
    text-transform: uppercase;
}

/* ================================================
   HERO SECTION
   ================================================ */
.sales-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--bg-studio) 0%, #1a1a2e 100%);
    color: var(--text-on-dark);
    text-align: center;
}

.sales-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.sales-hero h1 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);
}

.sales-hero h1 .highlight {
    color: var(--accent-yellow);
}

.hero-subtext {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================================================
   HERO VIDEO SECTION (Divider + Video Placeholder)
   ================================================ */
.hero-video-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-studio) 0%, #1a1a2e 100%);
}

.hero-divider {
    width: 120px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.video-placeholder {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-yellow);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.05) 0%, rgba(244, 208, 63, 0.02) 100%);
    pointer-events: none;
}

.video-placeholder-inner {
    text-align: center;
    z-index: 1;
}

.video-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(244, 208, 63, 0.15);
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent-yellow);
    margin: 0 auto 1rem;
    transition: transform 0.3s, background-color 0.3s;
}

.video-placeholder:hover .video-placeholder-icon {
    transform: scale(1.1);
    background: rgba(244, 208, 63, 0.25);
}

.video-placeholder-text {
    font-family: var(--font-headline);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ================================================
   PAIN SECTION
   ================================================ */
.pain-section {
    padding: 5rem 0;
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
}

.pain-statement {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(244, 208, 63, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-yellow);
}

.pain-statement p {
    font-size: 1.3rem;
    color: var(--text-on-dark);
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.pain-narrative {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.pain-narrative h2 {
    font-weight: var(--weight-subheading);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.pain-narrative p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ================================================
   DREAM SECTION
   ================================================ */
.dream-section {
    padding: 6rem 0;
    background-color: #fff;
}

.dream-section .section-heading {
    color: var(--text-on-light);
}

.dream-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dream-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background-color: var(--bg-stone);
    border-radius: var(--border-radius);
    transition: transform 0.2s;
}

.dream-item:hover {
    transform: translateX(10px);
}

.dream-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--cta-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.dream-item p {
    font-size: 1.2rem;
    color: var(--text-on-light);
    margin: 0;
    line-height: 1.5;
}

/* ================================================
   PROGRAM SECTION
   ================================================ */
.program-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-studio) 0%, #1a1a2e 100%);
    color: var(--text-on-dark);
    text-align: center;
}

.program-section .eyebrow {
    display: block;
}

.program-title {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 4rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.program-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.program-description {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.program-description p {
    font-size: 1.2rem;
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

/* Program Components - How It Works */
.program-components-heading {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 1.8rem;
    color: var(--text-on-dark);
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-components {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.component-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-yellow);
    color: var(--bg-studio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.2rem;
}

.component-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* ================================================
   CTA SECTIONS
   ================================================ */
.cta-section {
    padding: 5rem 0;
    background-color: var(--bg-stone);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 2.2rem;
    color: var(--text-on-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-on-light);
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.final-cta-note {
    font-size: 0.95rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.cta-section-alt {
    background-color: var(--accent-yellow);
}

.cta-box-alt {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box-alt h2 {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 2.5rem;
    color: var(--bg-studio);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-box-alt p {
    font-size: 1.3rem;
    color: var(--bg-studio);
    margin-bottom: 2rem;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-on-light);
    border: 2px solid var(--text-on-light);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: var(--text-on-light);
    color: #fff;
}

/* ================================================
   AUDIENCE SECTION
   ================================================ */
.audience-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.audience-column {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.audience-column h3 {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-light);
    text-transform: uppercase;
}

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

.audience-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-on-light);
    line-height: 1.5;
}

.audience-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.yes-list li::before {
    content: "✓";
    color: var(--cta-orange);
}

.no-list li::before {
    content: "✗";
    color: #c0392b;
}

/* ================================================
   TESTIMONIALS (Sales Page)
   ================================================ */
.testimonials-section-sales {
    padding: 6rem 0;
    background-color: var(--bg-studio);
}

.testimonials-grid-sales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 500px));
    gap: 2rem;
    justify-content: center;
}

.testimonial-card-sales {
    background-color: var(--bg-stone);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cta-orange);
    max-width: 500px;
    width: 100%;
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-on-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-attribution-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-attribution {
    font-size: 0.95rem;
    color: var(--cta-orange);
    font-weight: 600;
    margin: 0;
}

.credibility-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background-color: var(--bg-studio);
    border-radius: var(--border-radius);
    margin: 4rem auto 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.credibility-number {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--accent-yellow);
}

.credibility-icon {
    font-size: 2.5rem;
}

.credibility-label {
    font-size: 1rem;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-headline);
    font-weight: 500;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0 !important;
}

.faq-question {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 1.25rem;
    color: var(--text-on-light);
    margin-bottom: 0.8rem;
    cursor: default;
}

.faq-answer {
    font-size: 1.1rem;
    color: var(--text-on-light);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    padding-bottom: 0;
}

/* ================================================
   UNIQUENESS SECTION
   ================================================ */
.uniqueness-section {
    padding: 6rem 0;
    background-color: #fff;
}

.uniqueness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.uniqueness-item {
    padding: 2.5rem;
    background-color: var(--bg-stone);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s;
}

.uniqueness-item:hover {
    transform: translateY(-5px);
}

.uniqueness-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.uniqueness-item h3 {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-on-light);
    text-transform: uppercase;
}

.uniqueness-item p {
    font-size: 1.1rem;
    color: var(--text-on-light);
    line-height: 1.5;
}

/* ================================================
   PRICING SECTION (3-Tier Layout)
   ================================================ */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

.pricing-section .section-heading {
    margin-bottom: 3rem;
}

.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card-v2 {
    background-color: #fff !important;
    /* Force white background */
    color: var(--text-on-light);
    /* Start with correct text color */
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    /* Prevent iOS/Dark Mode color inversion */
    color-scheme: light;
}

.pricing-card-v2 p,
.pricing-card-v2 li,
.pricing-card-v2 h3,
.pricing-card-v2 span {
    color: var(--text-on-light);
    /* Enforce text visibility */
}

/* Ensure darker subtexts are still readable */
.pricing-card-v2 .tier-type,
.pricing-card-v2 .tier-description,
.pricing-card-v2 .price-term {
    color: #4a4a4a;
    /* Dark gray for "muted" text on white card */
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-v2.featured-v2 {
    border: 3px solid var(--accent-yellow);
}

.pricing-card-v2.premium-v2 {
    background-color: #f7f5f2 !important;
    /* Hardcode stone color for safety */
    border: 1px solid #d0d0d0;
}

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-studio);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 3px solid var(--accent-yellow);
}

.pricing-header-v2 {
    margin-bottom: 1.5rem;
}

.tier-name {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-on-light);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.tier-type {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.price-v2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text-on-light);
    line-height: 1;
}

.pricing-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.pricing-features-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--text-on-light);
}

.plus-label-item {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem !important;
    padding-top: 0.5rem;
    border-top: 1px solid #e0e0e0;
}

.plus-label-item .plus-label {
    display: block;
}

.plus-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-on-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0;
}

.check-v2 {
    color: #2e7d32;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1em;
}

.tier-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.btn-tier {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    background-color: var(--bg-studio);
    color: #fff;
    border: 2px solid var(--bg-studio);
}

.btn-tier:hover {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-tier-primary {
    background-color: var(--bg-studio);
    color: #fff;
    border-color: var(--bg-studio);
}

.btn-tier-primary:hover {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
}

.pricing-cta-wrapper {
    text-align: center;
    margin: 3rem auto 2rem;
}

.pricing-footer-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 1.6;
}


/* ================================================
   URGENCY SECTION
   ================================================ */
.urgency-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

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

.urgency-content>h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--text-on-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.urgency-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.urgency-icon {
    font-size: 2rem;
}

.urgency-item p {
    font-size: 1.1rem;
    color: var(--text-on-light);
}

.fit-check-box {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.fit-check-intro {
    font-size: 1.3rem;
    color: var(--text-on-light);
    margin-bottom: 2rem;
}

.fit-check-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
    padding: 4rem 0 6rem;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-floating);
}

.about-content h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-on-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ================================================
   FOOTER
   ================================================ */
.sales-footer {
    padding: 4rem 0;
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-contact {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-contact a {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.sales-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sales-footer .footer-links a {
    color: var(--text-on-dark);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.sales-footer .footer-links a:hover {
    color: var(--accent-yellow);
}

.sales-footer .copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */
@media (max-width: 1024px) {
    .sales-hero h1 {
        font-size: 3.2rem;
    }

    .pain-narrative h2 {
        font-size: 2.4rem;
    }

    .pain-grid,
    .program-pillars,
    .testimonials-grid-sales {
        grid-template-columns: 1fr;
    }

    .pricing-grid-three {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .uniqueness-grid,
    .objections-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .about-image {
        display: flex;
        justify-content: center;
    }

    .credibility-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .urgency-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-card-v2 {
        padding: 2rem 1.5rem;
    }

    /* More space for badge on featured card */
    .pricing-card-v2.featured-v2 {
        padding-top: 2.5rem;
    }

    .tier-name {
        font-size: 1.8rem;
    }

    .price-v2 {
        font-size: 1.8rem;
    }

    /* Improved text contrast for pricing cards on mobile */
    .tier-type {
        color: var(--text-on-light);
        font-size: 1rem;
        line-height: 1.5;
    }

    .tier-description {
        color: var(--text-on-light);
        font-size: 0.95rem;
    }

    .pricing-features-v2 li {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
    }

    .pricing-features-v2 li {
        hanging-punctuation: none;
    }

    .pricing-footer-note {
        color: var(--text-muted);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .sales-header {
        padding: 0.8rem 0;
    }

    .sales-header .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .sales-header .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .sales-hero {
        padding: 8rem 0 4rem;
    }

    .sales-hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtext {
        font-size: 1.15rem;
    }

    .pain-narrative h2 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .program-title {
        font-size: 2.5rem;
    }

    .cta-box,
    .fit-check-box {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .audience-column,
    .objection-item,
    .uniqueness-item {
        padding: 2rem 1.5rem;
    }

    /* Pricing card improvements for tablets/small screens */
    .pricing-card-v2 {
        padding: 1.75rem 1.25rem;
    }

    /* More space for badge on featured card */
    .pricing-card-v2.featured-v2 {
        padding-top: 2.5rem;
    }

    .tier-name {
        font-size: 1.7rem;
        margin-bottom: 0.5rem;
    }

    .tier-type {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .price-v2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .pricing-features-v2 {
        margin-bottom: 1.25rem;
    }

    .pricing-features-v2 li {
        font-size: 0.95rem;
        gap: 0.5rem;
        margin-bottom: 0.65rem;
    }

    .btn-tier {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .badge-recommended {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .sales-header .logo {
        font-size: 0.85rem;
    }

    .sales-header .nav-links a:not(.nav-btn) {
        display: none;
    }

    .sales-hero h1 {
        font-size: 2rem;
    }

    .pain-narrative h2 {
        font-size: 1.6rem;
    }

    .section-heading {
        font-size: 1.7rem;
    }

    .program-title {
        font-size: 2rem;
    }

    /* Pricing section mobile-specific adjustments */
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-section .section-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-grid-three {
        gap: 1.25rem;
    }

    .pricing-card-v2 {
        padding: 1.5rem 1rem;
    }

    /* More space for badge on featured card */
    .pricing-card-v2.featured-v2 {
        padding-top: 2.25rem;
    }

    .tier-name {
        font-size: 1.6rem;
    }

    .tier-type {
        font-size: 0.9rem;
    }

    .price-v2 {
        font-size: 1.3rem;
    }

    .tier-description {
        font-size: 0.875rem;
    }

    .pricing-footer-note {
        font-size: 0.9rem;
        margin-top: 2rem;
    }
}

/* ================================================
   SCROLL ANIMATIONS (Subtle)
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pain-item,
.dream-item,
.pillar,
.testimonial-card-sales,
.objection-item,
.uniqueness-item,
.pricing-card-v2 {
    animation: fadeInUp 0.6s ease-out both;
}

.pain-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pain-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pain-item:nth-child(3) {
    animation-delay: 0.3s;
}

.dream-item:nth-child(1) {
    animation-delay: 0.1s;
}

.dream-item:nth-child(2) {
    animation-delay: 0.15s;
}

.dream-item:nth-child(3) {
    animation-delay: 0.2s;
}

.dream-item:nth-child(4) {
    animation-delay: 0.25s;
}

.dream-item:nth-child(5) {
    animation-delay: 0.3s;
}

.pillar:nth-child(1) {
    animation-delay: 0.1s;
}

.pillar:nth-child(2) {
    animation-delay: 0.2s;
}

.pillar:nth-child(3) {
    animation-delay: 0.3s;
}