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

body {
    background-color: #F9F9F9; /* Canvas White */
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(26, 26, 26, 0.015),
            rgba(26, 26, 26, 0.015) 1px,
            transparent 1px,
            transparent 15px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(26, 26, 26, 0.015),
            rgba(26, 26, 26, 0.015) 1px,
            transparent 1px,
            transparent 15px
        ); /* Subtle paper texture */
    color: #1A1A1A; /* Charcoal Ink */
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: 750px;
}

.container.subheadline-container {
    max-width: 900px;
}

.container.transformation-container {
    max-width: 900px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A; /* Charcoal Ink */
}

h1 {
    font-size: clamp(40px, 8vw, 74px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

strong {
    font-weight: 700;
    color: #5E8E3E; /* Darker green for readability */
}

/* Sophisticated Accent Styling - Refined Approach */
.accent-emphasis {
    color: #5E8E3E; /* Darker green for readability */
    font-style: italic;
    font-weight: inherit;
    position: relative;
    transition: all 0.3s ease;
}

/* Underline effect for extra sophistication */
.accent-emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #95BF47;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* Remove underline in headlines for cleaner look */
h1 .accent-emphasis::after,
h2 .accent-emphasis::after {
    display: none;
}

/* Special styling for headlines - subtle and sophisticated */
h1 .accent-emphasis,
h2 .accent-emphasis {
    font-style: normal;
    font-weight: inherit;
    letter-spacing: -0.01em;
    color: #95BF47; /* Keep headline accent the original, brighter green */
}

/* New subtle number accent for hero */
.accent-number {
    color: #95BF47;
    font-weight: 800;
    position: relative;
}

em {
    font-style: italic;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Patterns */
.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(26, 26, 26, 0.02) 0%, transparent 60%);
    z-index: 0;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, #EAEAEA 12%, transparent 12.5%, transparent 87%, #EAEAEA 87.5%, #EAEAEA),
        linear-gradient(150deg, #EAEAEA 12%, transparent 12.5%, transparent 87%, #EAEAEA 87.5%, #EAEAEA),
        linear-gradient(30deg, #EAEAEA 12%, transparent 12.5%, transparent 87%, #EAEAEA 87.5%, #EAEAEA),
        linear-gradient(150deg, #EAEAEA 12%, transparent 12.5%, transparent 87%, #EAEAEA 87.5%, #EAEAEA);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.5;
    z-index: 0;
}

.radial-gradient-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(149, 191, 71, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 26, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.dots-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(26, 26, 26, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Hero Section */
.hero {
    padding: 40px 0 120px; /* Reduced top padding from 60px */
    text-align: center;
    background: #F9F9F9; /* Canvas White */
    position: relative;
    overflow: visible;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero .container {
    width: 100%;
}

/* Blueprint framing for hero - removed top frame */
.hero-frame-top {
    display: none; /* Hide the top frame line */
}

.hero-frame-bottom {
    display: none; /* Also hide bottom frame since we have chevron */
}

.hero-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 30px; /* Reduced bottom margin from 40px */
    display: block;
    opacity: 0.9;
}

.intro {
    font-size: 17px;
    color: #757575; /* Mid Grey for secondary text */
    margin-bottom: 35px; /* Reduced from 50px */
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
}

.intro::after {
    content: '';
    position: absolute;
    bottom: -20px; /* Adjusted from -25px */
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15px; /* Reduced from 20px */
    background: linear-gradient(180deg, #EAEAEA, transparent);
}

.headline {
    margin-bottom: 15px; /* Reduced from 20px */
    padding-top: 20px;
    line-height: 1.1;
}

.subheadline {
    font-size: clamp(18px, 2.5vw, 24px); /* Reduced from 28px max */
    font-weight: 400;
    color: #1A1A1A; /* Charcoal Ink */
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-top: 20px; /* Reduced from 30px */
}

.subheadline em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

/* Section Divider */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 1;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.section-divider svg path {
    fill: #F1F1F1; /* Blueprint Grey for section transitions */
}

/* Hero section divider - add depth */
.hero .section-divider svg {
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05)); /* Add subtle shadow for depth */
}

/* Payoff section divider specific */
.payoff-section .section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 1;
}

.payoff-section .section-divider svg {
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05)); /* Add subtle shadow for visibility */
}

/* Specific override for payoff section leading to dark */
.payoff-section .section-divider svg path {
    fill: #F9F9F9; /* Canvas White to match empathy section */
}

/* Dark section divider override */
.problem-section + .section-divider svg path {
    fill: #1A1A1A; /* Match dark section background */
}

/* Payoff Section (New) */
.payoff-section {
    background: #F1F1F1; /* Blueprint Grey for subtle contrast */
    padding: 80px 0 120px; /* Reduced from 80px top, 160px bottom */
    text-align: left;
    position: relative;
    overflow: visible; /* Allow chevron to show */
    min-height: 400px; /* Ensure section has enough height */
}

.payoff-section > * {
    position: relative;
    z-index: 2; /* Ensure content is above chevron */
}

/* Override center alignment for h2 in payoff section */
.payoff-section h2 {
    text-align: left;
    /* All other h2 properties (size, weight, responsive behavior) are inherited from base h2 styles */
}

.payoff-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.payoff-lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px; /* Reduced from 30px */
    color: #1A1A1A;
}

.payoff-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px; /* Reduced from 25px */
    color: #1A1A1A;
}

.emphasis-inline {
    color: #5E8E3E; /* Amber accent */
    font-weight: 600;
}

.payoff-highlight {
    background: linear-gradient(135deg, rgba(253, 187, 45, 0.08) 0%, rgba(253, 187, 45, 0.02) 100%);
    border-left: 3px solid #FDBB2D;
    padding: 25px; /* Reduced from 30px */
    margin: 30px auto; /* Reduced from 40px */
    border-radius: 8px;
    text-align: left; /* Changed from center to left */
    max-width: 700px; /* Limit width for better readability */
}

.payoff-conclusion {
    font-size: 22px;
    margin-top: 30px; /* Reduced from 40px */
    margin-bottom: 0;
}

.payoff-conclusion strong {
    color: #1A1A1A; /* Changed from green to Charcoal Ink */
    font-weight: 700;
}

.subtle-underline-emphasis {
    text-decoration: underline;
    text-decoration-color: rgba(253, 187, 45, 0.4); /* Amber with transparency */
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-style: solid;
    font-weight: 600;
}


/* Empathy Section */
.empathy-section {
    background: #F9F9F9; /* Canvas White */
    border-bottom: 1px solid #EAEAEA; /* Light Grey border */
    position: relative;
    padding-top: 50px; /* Adjusted for tighter flow from payoff section */
}

.lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #5E8E3E; /* Darker green for readability */
}

.story-flow p {
    margin-bottom: 30px;
}

.story-opener {
    font-size: 20px;
    line-height: 1.8;
}

.pause {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    padding-left: 20px;
}

.pause::before {
    content: '—';
    position: absolute;
    left: 0;
    opacity: 0.5;
    color: #757575; /* Mid Grey */
}

.underline-subtle {
    text-decoration: underline;
    text-decoration-color: rgba(26, 26, 26, 0.3);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.late-night-moment {
    position: relative;
    padding-left: 30px;
    margin: 40px 0;
}

.late-night-moment::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, #EAEAEA, transparent);
}

.late-night-moment p {
    opacity: 0.85;
}

.late-night-moment p:first-child {
    margin-bottom: 20px;
}

.inner-voice {
    font-style: italic;
    margin-top: 0;
}

.late-night-moment em {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
}

.pattern-reveal {
    margin-top: 50px;
    position: relative;
    padding-top: 50px;
}

.pattern-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(149, 191, 71, 0.3), transparent);
}

.not-alone {
    font-size: 22px;
    font-weight: 600;
    color: #5E8E3E; /* Darker green for readability */
    margin-bottom: 20px;
}

.pattern-statement {
    opacity: 0.9;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(149, 191, 71, 0.05) 0%, rgba(149, 191, 71, 0.02) 100%);
    border-left: 4px solid #95BF47;
    border-right: 1px solid rgba(149, 191, 71, 0.2);
    border-top: 1px solid rgba(149, 191, 71, 0.2);
    border-bottom: 1px solid rgba(149, 191, 71, 0.2);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(149, 191, 71, 0.05) 0%, transparent 70%);
}

.highlight-box p {
    margin: 0;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

/* Problem Section - Dark Mode Inversion */
.problem-section {
    background: #1A1A1A; /* Deep Charcoal */
    border-top: 1px solid rgba(253, 187, 45, 0.2);
    border-bottom: 1px solid rgba(253, 187, 45, 0.2);
    position: relative;
}

.problem-section > * {
    position: relative;
    z-index: 1;
}

.problem-section h2 {
    color: #F5F5F5; /* Soft White */
}

.problem-section p {
    color: #F5F5F5; /* Soft White */
}

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

.section-lead {
    font-size: 24px;
    margin-top: -10px;
    color: #1A1A1A; /* Charcoal Ink for light backgrounds */
}

/* Only in the dark problem section should it be white */
.problem-section .section-lead {
    color: #F5F5F5 !important; /* Soft White for dark background */
}

.problem-section .section-lead strong {
    color: #95BF47; /* Bright green for emphasis */
}

.problem-columns {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.problem-content-left {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.problem-image-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.leaky-bucket-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    opacity: 0.9;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.problem-content-right:hover .leaky-bucket-image {
    transform: scale(1.03) rotate(-2deg);
    opacity: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

.problem-content-right:hover .image-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}

.problem-footer {
    max-width: 900px;
    margin: 0 auto;
}

.leak-metaphor {
    background: #2A2A2A; /* Dark Grey for layering effect */
    border: 1px solid rgba(253, 187, 45, 0.3);
    padding: 50px;
    margin: 50px 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.leak-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(253, 187, 45, 0.02) 10px,
        rgba(253, 187, 45, 0.02) 20px
    );
    z-index: 0;
}

.leak-metaphor p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: #F5F5F5; /* Soft White */
}

.problem-conclusion {
    font-size: 20px;
    margin-top: 40px;
    color: #F5F5F5; /* Soft White */
}

.problem-conclusion strong {
    color: #95bf47; /* Bright green for contrast on dark background */
}

/* Case Studies Section */
.case-studies-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.03) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.03) 1px,
            transparent 1px,
            transparent 20px
        );
    z-index: 0;
}

.case-studies-section .section-header, .case-studies-section .case-studies-grid {
    position: relative;
    z-index: 1;
}

.case-studies-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-studies-section .section-subheadline {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.case-study-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #95bf47 0%, #7da03a 100%);
    border-radius: 12px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-pulse {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.case-study-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.case-problem {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-problem strong {
    color: #1a1a1a;
    font-weight: 600;
}

.reveal-box {
    background: #f8f9fa;
    border-left: 3px solid #95bf47;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 0 8px 8px 0;
}

.reveal-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5e8e3e;
    margin-bottom: 8px;
}

.reveal-content {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

.reveal-content strong {
    color: #5e8e3e;
    font-weight: 700;
    font-size: 18px;
}

.leak-impact {
    background: linear-gradient(135deg, rgba(149, 191, 71, 0.05) 0%, rgba(149, 191, 71, 0.02) 100%);
    border: 1px solid rgba(149, 191, 71, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.impact-text {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}

.impact-text strong {
    color: #5e8e3e;
    font-weight: 700;
}

.impact-label {
    display: block;
    margin-bottom: 8px;
}

.impact-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #5e8e3e;
    margin: 8px 0;
}

.impact-suffix {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-study-card {
        padding: 30px;
        flex-direction: column;
    }
    
    .impact-amount {
        font-size: 28px;
    }
}

/* Skincare Card Styling */
.skincare-card .case-icon {
    background: linear-gradient(135deg, #f7b5cd 0%, #e89bb5 100%);
}

.skincare-card .reveal-box {
    border-left-color: #e89bb5;
}

.skincare-card .reveal-label {
    color: #d4789d;
}

.skincare-card .reveal-content strong {
    color: #d4789d;
}

.skincare-card .leak-impact {
    background: linear-gradient(135deg, rgba(247, 181, 205, 0.08) 0%, rgba(232, 155, 181, 0.04) 100%);
    border: 1px solid rgba(232, 155, 181, 0.3);
}

.skincare-card .impact-amount {
    color: #d4789d;
}

.skincare-card .impact-text strong {
    color: #d4789d;
}

/* Fitness Card Styling */
.fitness-card .case-icon {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.fitness-card .reveal-box {
    border-left-color: #4a90e2;
}

.fitness-card .reveal-label {
    color: #357abd;
}

.fitness-card .reveal-content strong {
    color: #357abd;
}

.fitness-card .leak-impact {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(53, 122, 189, 0.04) 100%);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.fitness-card .impact-amount {
    color: #357abd;
}

.fitness-card .impact-text strong {
    color: #357abd;
}

/* Transformation Section */
.transformation-section {
    background: linear-gradient(180deg, #F9F9F9 0%, #F1F1F1 100%); /* Canvas White to Blueprint Grey */
    text-align: center;
    border-bottom: 1px solid rgba(149, 191, 71, 0.1);
    position: relative;
    padding: 80px 0;
}

.transformation-section > * {
    position: relative;
    z-index: 1;
}

.transformation-section h2 {
    font-size: clamp(30px, 6vw, 56px);
    margin-bottom: 40px;
    opacity: 0.95;
}

.what-if-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    position: relative;
}

.what-if-question {
    padding: 50px 0;
    position: relative;
    transition: all 0.4s ease;
}

.what-if-question:not(:last-child) {
    border-bottom: 1px solid #EAEAEA; /* Light Grey border */
}

.what-if-question p {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.85;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.what-if-question:hover p {
    opacity: 1;
    transform: scale(1.02);
}

.question-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(149, 191, 71, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.what-if-question:hover .question-marker {
    opacity: 1;
    width: 400px;
    height: 400px;
}

.emphasis {
    color: #5E8E3E; /* Darker green for readability */
    font-weight: 600;
    position: relative;
}

.emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #95BF47, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-if-question:hover .emphasis::after {
    transform: scaleX(1);
}

.transformation-footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(149, 191, 71, 0.2);
}

.transformation-footer p {
    font-size: 28px;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.6;
}

.reality-statement {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #1A1A1A;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reality-statement strong {
    color: #95BF47; /* Emerald Green for emphasis */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

/* Solution Section */
.solution-section {
    background: #F9F9F9; /* Canvas White */
    position: relative;
    border-bottom: 1px solid #EAEAEA; /* Light Grey border */
}

.solution-section > * {
    position: relative;
    z-index: 1;
}

.benefits-wrapper h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, #F1F1F1 0%, #EAEAEA 100%); /* Darker gradient for depth */
    border: 1px solid #E0E0E0; /* Slightly darker border */
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Added subtle shadow for depth */
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #95BF47, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-card:hover::before {
    transform: translateX(100%);
}

.benefit-card:hover {
    border-color: #95BF47;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); /* Reduced green glow, more shadow */
}

.benefit-icon {
    font-size: 56px;
    font-weight: 900;
    color: #95BF47;
    margin-bottom: 30px;
    opacity: 0.7; /* Reduced opacity to make it less glowy */
}

.benefit-card h4 {
    color: #1A1A1A; /* Ensure heading is dark */
    margin-bottom: 15px;
}

.benefit-card p {
    color: #757575; /* Mid grey for text to add depth */
}

.solution-image-container {
    max-width: 900px;
    width: 100%;
    margin: 60px auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.solution-image {
    width: 100%;
    height: auto;
    display: block;
}

.solution-footer {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 2px solid #95BF47;
    border-bottom: 2px solid #95BF47;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 -2px 20px rgba(149, 191, 71, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.05);
}

.guarantee-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.guarantee-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
}

.guarantee-promise {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

.guarantee-promise .highlight-amount {
    color: #95bf47;
    font-weight: 700;
}

.guarantee-conclusion {
    font-size: 16px;
    color: #666;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(180deg, #F9F9F9 0%, #F1F1F1 100%); /* Canvas White to Blueprint Grey */
    border-bottom: 1px solid #EAEAEA; /* Light Grey border */
    text-align: center;
}

.vision-story {
    max-width: 900px;
    margin: 0 auto;
}

.vision-story p {
    margin-bottom: 30px;
    font-size: 20px;
}

.vision-conclusion {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #EAEAEA; /* Light Grey border */
}

/* CTA Section */
.cta-section {
    background: #F9F9F9; /* Canvas White */
    padding: 120px 0;
    position: relative;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

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

.choice-card {
    padding: 50px;
    border-radius: 16px;
    border: 2px solid transparent;
    border-top-width: 4px; /* Thicker top border for emphasis */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #FFFFFF; /* Pure white background */
}

.choice-bad {
    border-color: rgba(253, 187, 45, 0.3);
    border-top-color: #FDBB2D; /* Amber top border */
}

.choice-good {
    border-color: rgba(149, 191, 71, 0.3);
    border-top-color: #95BF47; /* Emerald Green top border */
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.choice-card:hover::before {
    opacity: 0.5;
}

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

.choice-card h3 {
    margin-bottom: 20px;
}

.choice-bad h3 {
    color: #FDBB2D; /* Amber for caution */
}

.choice-good h3 {
    color: #5E8E3E; /* Darker green for readability */
}

.cta-wrapper {
    text-align: center;
    margin-top: 80px;
}

/* Button Styles */
.primary-cta {
    background: #95BF47;
    color: #FFFFFF; /* White text */
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.primary-cta:hover {
    background-color: #82ab3f; /* Darker shade of green for hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.primary-cta.pulse {
    animation: pulse 2s infinite;
}

/* Personal Note */
.personal-note {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 60px;
    background: linear-gradient(135deg, #F1F1F1 0%, transparent 100%); /* Blueprint Grey gradient */
    border: 1px solid #EAEAEA; /* Light Grey border */
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
}

.personal-note::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 80px;
    color: rgba(149, 191, 71, 0.08);
    font-weight: 900;
    z-index: 0;
    line-height: 1;
}

.note-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.note-content p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: #1A1A1A; /* Charcoal Ink */
}

.note-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-shrink: 0;
}

.author-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(149, 191, 71, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.author-photo:hover {
    border-color: rgba(149, 191, 71, 0.4);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.signature {
    text-align: center;
    font-weight: 600;
    margin: 0;
    color: #5E8E3E; /* Darker green for readability */
    font-size: 22px;
    font-style: normal;
    letter-spacing: -0.5px;
}

/* Personal Note Responsive */
@media (max-width: 768px) {
    .personal-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding: 50px 30px;
    }
    
    .personal-note::before {
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 50px;
    }
    
    .note-content {
        padding-top: 20px;
    }
    
    .note-content p {
        font-size: 16px;
    }
    
    .author-photo {
        width: 120px;
        height: 120px;
    }
    
    .signature {
        font-size: 20px;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(149, 191, 71, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(149, 191, 71, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(149, 191, 71, 0);
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes amountGlow {
    0% {
        text-shadow: 0 0 20px rgba(253, 187, 45, 0.3);
    }
    100% {
        text-shadow: 0 0 35px rgba(253, 187, 45, 0.4);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intermediate Responsive Design */
@media (max-width: 1100px) {
    .problem-columns {
        gap: 40px;
    }
    
    .problem-content-left {
        padding-right: 10px;
    }
    
    .problem-content-right {
        padding: 0 10px;
    }
    
    .leaky-bucket-image {
        max-width: 350px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 50px 0 100px; /* Reduced bottom padding for smaller chevron */
    }
    
    .section-divider {
        height: 40px; /* Reduced from 50px for shallower angle */
    }
    
    .section-divider svg {
        height: 40px; /* Match the container height */
    }
    
    .hero-logo {
        width: 100px;
        margin-bottom: 30px;
    }
    
    h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    .intro {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .subheadline {
        font-size: 22px;
    }
    
    .lead {
        font-size: 20px;
    }
    
    .story-opener {
        font-size: 18px;
    }
    
    .late-night-moment {
        padding-left: 20px;
        margin: 30px 0;
    }
    
    .late-night-moment em {
        font-size: 17px;
    }
    
    .inner-voice {
        margin-top: 15px;
    }
    
    .not-alone {
        font-size: 20px;
    }
    
    .pause {
        margin-top: 15px;
    }
    
    .pattern-reveal {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .section-lead {
        font-size: 18px;
    }
    
    /* Payoff Section Responsive */
    .payoff-section {
        padding: 60px 0 80px; /* Adjusted for smaller chevron */
    }
    
    .payoff-lead {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .payoff-content p {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .payoff-highlight {
        padding: 20px;
        margin: 25px auto;
    }
    
    .payoff-conclusion {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .benefit-cards,
    .choices-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-columns {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .problem-content-left {
        padding-right: 0;
        display: block;
    }
    
    .problem-footer {
        padding: 0 20px;
    }
    
    .problem-image-container {
        margin: 40px 0;
    }
    
    .leaky-bucket-image {
        max-width: 300px;
    }
    
    .leak-metaphor {
        padding: 35px 25px;
        margin: 40px 0;
    }
    
    .problem-conclusion {
        font-size: 18px;
        margin-top: 30px;
        line-height: 1.6;
    }
    
    .solution-image-container {
        margin: 40px auto;
    }
    
    .guarantee-box {
        padding: 40px 20px;
    }
    
    .guarantee-intro,
    .guarantee-conclusion {
        font-size: 16px;
    }
    
    .guarantee-promise {
        font-size: 18px;
    }
    
    .highlight-amount {
        font-size: 28px;
    }
    
    .primary-cta {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .vision-story p,
    .story-flow p {
        font-size: 16px;
    }
    
    .transformation-section {
        padding: 80px 0;
    }
    
    .transformation-section h2 {
        margin-bottom: 60px;
    }
    
    .what-if-question {
        padding: 40px 20px;
    }
    
    .what-if-question p {
        font-size: 18px;
    }
    
    .transformation-footer {
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .transformation-footer p {
        font-size: 24px;
    }
    
    .reality-statement {
        font-size: 26px !important;
    }
    
    p {
        font-size: 16px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for contrast on light theme */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #F9F9F9; /* Canvas White */
    border-radius: 16px;
    border: 1px solid rgba(149, 191, 71, 0.3);
    max-width: 700px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(149, 191, 71, 0.2);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 36px;
    font-weight: 300;
    color: #1A1A1A; /* Charcoal Ink */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #F1F1F1; /* Blueprint Grey */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background-color: #95BF47;
    color: #F9F9F9; /* Canvas White */
    transform: rotate(90deg);
}

.calendly-container {
    padding: 20px;
    background-color: #F9F9F9; /* Canvas White */
    border-radius: 16px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .calendly-container {
        padding: 15px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        margin: 10px;
        border-radius: 12px;
    }
    
    .calendly-container {
        padding: 10px;
    }
    
    .calendly-inline-widget {
        min-width: 280px !important;
        height: 650px !important;
    }
}

/* Footer Styles */
.footer {
    background-color: #F1F1F1; /* Blueprint Grey */
    border-top: 1px solid #EAEAEA; /* Light Grey border */
    padding: 60px 0;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 16px;
    color: #757575; /* Mid Grey */
    font-weight: 400;
}

/* Footer email contact */
.footer-contact {
    margin: 0;
    font-size: 15px;
    color: #757575; /* Mid Grey */
    font-weight: 400;
}

.email-link {
    color: #1A1A1A; /* Charcoal Ink */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #95BF47;
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

.email-link:hover {
    color: #5E8E3E; /* Darker green for readability */
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #757575; /* Mid Grey */
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: #5E8E3E; /* Darker green for readability */
}

.social-link span {
    transition: color 0.3s ease;
}

.x-icon,
.globe-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover .x-icon {
    transform: scale(1.15) rotate(-5deg);
}

.social-link:hover .globe-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 40px 0 80px; /* Adjusted for smaller chevron */
    }
    
    .section-divider {
        height: 30px; /* Even shallower angle for small mobile */
    }
    
    .section-divider svg {
        height: 30px; /* Match the container height */
    }
    
    .hero-logo {
        width: 80px;
        margin-bottom: 30px;
    }
    
    .intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .solution-image-container {
        margin: 30px auto;
    }
    
    .leak-metaphor {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .problem-conclusion {
        font-size: 17px;
        margin-top: 25px;
        text-align: left;
    }
    
    .problem-footer {
        padding: 0 15px;
    }
    
    .problem-image-container {
        margin: 30px 0;
    }
    
    .leaky-bucket-image {
        max-width: 300px;
    }
    
    .image-glow {
        width: 90%;
        height: 90%;
    }
    
    .guarantee-box {
        padding: 30px 15px;
    }
    
    .guarantee-box h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .guarantee-intro,
    .guarantee-conclusion {
        font-size: 14px;
    }
    
    .guarantee-promise {
        font-size: 16px;
    }
    
    .highlight-amount {
        font-size: 26px;
    }
    
    .primary-cta {
        font-size: 16px;
        padding: 18px 24px;
        width: 100%;
    }
    
    p {
        font-size: 15px;
    }
    
    .story-opener {
        font-size: 16px;
    }
    
    .late-night-moment {
        padding-left: 15px;
    }
    
    .late-night-moment em {
        font-size: 16px;
    }
    
    .inner-voice {
        margin-top: 12px;
    }
    
    .not-alone {
        font-size: 18px;
    }
    
    .pattern-reveal {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .vision-story p,
    .story-flow p {
        font-size: 15px;
    }
    
    /* Payoff Section Responsive */
    .payoff-section {
        padding: 60px 0 60px; /* Adjusted for smaller chevron on mobile */
    }
    
    .payoff-lead {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .payoff-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .payoff-highlight {
        padding: 18px 15px;
        margin: 20px auto;
    }
    
    .payoff-conclusion {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .transformation-section {
        padding: 60px 0;
    }
    
    .transformation-section h2 {
        margin-bottom: 40px;
    }
    
    .what-if-question {
        padding: 30px 15px;
    }
    
    .what-if-question p {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .transformation-footer {
        margin-top: 40px;
    }
    
    .transformation-footer p {
        font-size: 20px;
    }
    
    .reality-statement {
        font-size: 22px !important;
    }
    
    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        gap: 16px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .copyright,
    .social-link {
        font-size: 14px;
    }
    
    .footer-contact {
        font-size: 14px;
    }
    
    .x-icon,
    .globe-icon {
        width: 20px;
        height: 20px;
    }
} 