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

body {
    background-color: #F9F9F9;
    color: #1A1A1A;
    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: 900px;
}

.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;
}

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(32px, 5vw, 48px);
    font-weight: 800;
    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: 900;
    position: relative;
}

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

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

/* 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%;
}

/* Add animated background elements */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(149, 191, 71, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 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;
    animation: logoFloat 3s ease-in-out infinite;
}

.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;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.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;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Add emphasis to key parts of headline */
.headline strong {
    color: inherit; /* Use same color as parent */
    font-weight: 900; /* Make it bolder instead of colored */
}

/* Green accent for specific words */
.accent-green {
    color: #95BF47;
    font-weight: 900; /* Keep the same weight as the rest */
}

/* Amber accent for specific words */
.accent-amber {
    color: #FF9500;
    font-weight: 900; /* Keep the same weight as the rest */
}

.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 */
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Better underline styling */
.subheadline u {
    text-decoration: none;
    position: relative;
    font-weight: 500; /* Slightly bolder for emphasis */
}

.subheadline u::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1A1A1A;
    opacity: 0.3;
}

/* Add visual separator between sections */

/* Improve payoff section visual hierarchy */
.payoff-lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1A1A1A;
    position: relative;
    padding-bottom: 20px;
}

.payoff-lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #95BF47;
}

/* Remove the arrow from payoff content p */
.payoff-content p:before {
    content: none;
}

.payoff-content p {
    padding-left: 0;
}

/* Add visual interest to payoff conclusion */
.payoff-conclusion {
    margin-top: 40px;
    margin-bottom: 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(253, 187, 45, 0.08) 0%, transparent 100%);
    border-left: 4px solid #FDBB2D;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payoff-conclusion p {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
}

.payoff-conclusion strong {
    color: #1A1A1A;
    font-weight: 700;
}

.payoff-conclusion em {
    font-style: italic;
    font-weight: 600;
}

/* Animate the problem section image */
@keyframes leak {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-2deg); }
    75% { transform: translateY(5px) rotate(2deg); }
}

.leaky-bucket-image {
    animation: leak 4s ease-in-out infinite;
}

/* Add number animations to unit economics */
.economics-card li strong {
    display: inline-block;
    transition: transform 0.3s ease;
}

.economics-card:hover li strong {
    transform: scale(1.1);
}

/* Add pulse effect to result lines */
@keyframes resultPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.result-bad {
    animation: resultPulse 2s ease-in-out infinite;
}

.result-good {
    animation: resultPulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* Add icon to phases */
.benefit-icon {
    position: relative;
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: #95BF47;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon::after {
    opacity: 1;
    transform: scale(1);
}

/* Add entrance animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Improve section transitions */
section {
    opacity: 1;
}

/* Add scroll-triggered animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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; /* Default: Blueprint Grey for section transitions */
}

/* Specific override for payoff section leading to dark */
.payoff-section .section-divider svg path {
    fill: #1A1A1A; /* Dark to match the problem section */
}

/* 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;
    filter: drop-shadow(0 -4px 6px rgba(0, 0, 0, 0.15)); /* Moved shadow to container */
}

.payoff-section .section-divider svg {
    /* Styles are now inherited or default, filter removed */
}

/* 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; /* Bottom padding for chevron */
    text-align: left;
    position: relative;
    overflow: visible;
    min-height: 400px;
}

.payoff-section > * {
    position: relative;
    z-index: 2;
}

/* Override center alignment for h2 in payoff section */
.payoff-section h2 {
    text-align: left;
}

.payoff-intro {
    font-size: 28px;
    font-weight: 600;
    color: #95BF47;
    margin-bottom: 40px;
    text-align: left;
}

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

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

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

.payoff-conclusion {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(253, 187, 45, 0.08) 0%, transparent 100%);
    border-left: 4px solid #FDBB2D;
    border-radius: 8px;
}

.payoff-conclusion strong {
    color: #1A1A1A;
    font-weight: 700;
}




/* 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-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.problem-section h2 {
    color: #ffffff;
}

.problem-section .section-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #a0a0a0;
}

.problem-section .section-lead strong {
    color: #FFFFFF;
}

.problem-content-left p {
    color: #e7e7e7;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.problem-conclusion {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
}

.problem-conclusion strong {
    color: #95bf47;
}

.problem-columns {
    display: grid;
    grid-template-columns: 55% 45%;
    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: 450px;
    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: 40px;
    margin: 30px 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 {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #e7e7e7;
}

.leak-metaphor strong {
    color: #FFFFFF;
    font-weight: 700;
}

.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;
}

.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(2, 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;
    }
    
    .impact-amount {
        font-size: 28px;
    }
}

/* Unit Economics Section */
.unit-economics-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.unit-economics-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.unit-economics-section .section-lead {
    font-size: 18px;
    color: #888;
    margin-bottom: 0;
}

.economics-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.economics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-state {
    border-top: 3px solid #e74c3c;
}

.future-state {
    border-top: 3px solid #95bf47;
}

.economics-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.economics-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.economics-card li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    gap: 20px;
}

.economics-card li:last-of-type {
    border-bottom: none;
}

.metric-label {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.result-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.result-bad {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.result-good {
    background: rgba(149, 191, 71, 0.1);
    border: 1px solid rgba(149, 191, 71, 0.2);
}

.result-box .result-number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin: 4px 0;
}

.result-bad .result-number {
    color: #e74c3c;
}

.result-good .result-number {
    color: #95bf47;
}

.economics-footer {
    text-align: center;
    margin-top: 50px;
}

.economics-footer p {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .economics-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .economics-card {
        padding: 28px;
    }
    
    .unit-economics-section h2 {
        font-size: 36px;
    }
    
    .economics-card h3 {
        font-size: 16px;
    }
    
    .metric-value {
        font-size: 18px;
    }
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.transformation-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.2;
}

.transformation-statements {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.transformation-statement {
    font-size: 24px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-statement strong {
    color: #5e8e3e;
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.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);
}

/* Subtle background pattern */
.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(149, 191, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(149, 191, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Removed the ::after accent line */

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

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

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

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

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

/* Decorative elements */
.guarantee-box .guarantee-intro::before,
.guarantee-box .guarantee-intro::after {
    content: '"';
    font-size: 48px;
    color: rgba(149, 191, 71, 0.2);
    position: absolute;
    font-family: Georgia, serif;
}

.guarantee-box .guarantee-intro::before {
    top: -20px;
    left: -40px;
}

.guarantee-box .guarantee-intro::after {
    bottom: -20px;
    right: -40px;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .transformation-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .transformation-statement {
        font-size: 20px;
        gap: 40px;
    }
    
    .guarantee-box {
        padding: 40px 30px;
    }
    
    .guarantee-box h2 {
        font-size: 28px;
    }
    
    .guarantee-promise {
        font-size: 18px;
        padding: 20px;
    }
    
    .guarantee-promise strong {
        font-size: 20px;
    }
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Blueprint Section */
.blueprint-wrapper {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 3px solid #95bf47;
    border-bottom: 3px solid #95bf47;
}

.blueprint-wrapper h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.blueprint-image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.blueprint-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

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

.solution-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.solution-section .section-lead {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Method Content Card */
.method-content-wrapper {
    max-width: 800px;
    margin: 0 auto 80px;
}

.method-content-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    text-align: left;
}

.method-callout {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.method-how {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.method-explanation {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Benefits Section */
.benefits-wrapper {
    margin-top: 80px;
}

.benefits-wrapper h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #95bf47 0%, #7da03a 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Grid pattern background */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(149, 191, 71, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(149, 191, 71, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

@media (max-width: 968px) {
    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-section h2 {
        font-size: 36px;
    }
    
    .method-content-card {
        padding: 30px;
    }
    
    .benefit-card {
        padding: 30px;
    }
}

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

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #F9F9F9;
}

.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(231, 76, 60, 0.3);
    border-top-color: #e74c3c;
}

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

.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-bad:hover {
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
}

.choice-good:hover {
    border-color: rgba(149, 191, 71, 0.5);
    box-shadow: 0 20px 40px rgba(149, 191, 71, 0.15);
}

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

.choice-bad h3 {
    color: #e74c3c;
}

.choice-good h3 {
    color: #5e8e3e;
}

.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: 400px;
    }
}

/* 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: 350px;
    }
    
    .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;
}

.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);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.open {
    border-color: #95bf47;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question span {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.5;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: #95bf47;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 10px 24px 20px 24px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 36px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

/* Investment Section */
.investment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.investment-intro {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
}

/* Honesty Dropdown */
.honesty-dropdown {
    margin: 40px 0;
}

.honesty-toggle {
    width: 100%;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #666;
}

.honesty-toggle:hover {
    border-color: #95bf47;
    background: #f8f9fa;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    stroke: #666;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.honesty-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.honesty-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 16px;
}

.honesty-dropdown.open .honesty-content {
    max-height: 200px;
}

.honesty-content p {
    padding: 20px;
    background: #f8f9fa;
    border-left: 3px solid #95bf47;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Investment Details Table */
.investment-details {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
}

.detail-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
    padding: 20px;
    background: #f8f9fa;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5e8e3e;
    display: flex;
    align-items: center;
}

.detail-value {
    padding: 20px;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.investment-cta {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    margin: 40px 0 30px;
    line-height: 1.8;
}

.ps-note {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: 30px;
}

/* Personal Note */
.personal-note {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
}

.personal-note::before {
    content: '"';
    position: absolute;
    top: 35px;
    left: 160px;
    font-size: 60px;
    color: #95bf47;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.note-content {
    flex: 1;
}

.quote-text {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-style: italic;
    padding-top: 30px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.author-title {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Global Heading Styles */
h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* Section-specific H2 overrides where needed */
.hero h1 {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .subheadline {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    line-height: 1.4;
}

.transformation-statement {
    font-size: 24px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-statement strong {
    color: #5e8e3e;
    font-weight: 600;
}

/* Ensure consistent heading styles in all sections */
.section-header h2,
.problem-section h2,
.case-studies-section h2,
.unit-economics-section h2,
.transformation-section h2,
.guarantee-section h2,
.cta-section h2,
.investment-section h2,
.faq-section h2,
.options-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

/* Dark background sections - must come after the above */
.problem-section h2,
.unit-economics-section h2 {
    color: #ffffff !important;
}

/* Smaller headings */
.case-study-header h3,
.choice-card h3,
.benefits-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Dark background h3 overrides */
.economics-card h3 {
    color: #ffffff !important;
}

/* Special cases */
.guarantee-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
}

/* Mobile responsive headings */
@media (max-width: 768px) {
    h2,
    .section-header h2,
    .problem-section h2,
    .case-studies-section h2,
    .unit-economics-section h2,
    .transformation-section h2,
    .guarantee-section h2,
    .cta-section h2,
    .investment-section h2,
    .faq-section h2 {
        font-size: 36px;
    }
    
    h3,
    .case-study-header h3,
    .choice-card h3,
    .economics-card h3 {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .guarantee-box h2 {
        font-size: 28px;
    }
    
    .transformation-statement {
        font-size: 20px;
    }
    
    .personal-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .personal-note::before {
        left: 30px;
        top: 20px;
        font-size: 50px;
    }
    
    .author-photo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    h2,
    .section-header h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subheadline {
        font-size: 18px;
    }
} 

/* 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;
} 

/* Benefits Section H3 */
.benefits-wrapper h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

/* Unit Economics Section Lead */
.unit-economics-section .section-lead {
    font-size: 24px;
    font-weight: 600;
    color: #a0a0a0;
    margin-bottom: 0;
}

/* Choice cards styling */
.choice-bad h3 {
    color: #e74c3c;
}

.choice-good h3 {
    color: #5e8e3e;
}

/* Add chevron transition after CTA section */
.cta-section {
    background: #F9F9F9;
    padding: 40px 0 80px;
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #F9F9F9;
}

/* Section divider chevron - matching hero style */
.cta-section .section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    overflow: hidden;
    z-index: 1;
}

.cta-section .section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.cta-section .section-divider path {
    fill: #ffffff;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .benefits-wrapper h3 {
        font-size: 28px;
    }

    .blueprint-wrapper h3 {
        font-size: 28px;
    }
    
    .unit-economics-section .section-lead {
        font-size: 20px;
    }
    
    .cta-section {
        padding: 40px 0 60px;
    }
    
    .cta-section .section-divider {
        height: 30px;
    }
    
    .cta-section .section-divider svg {
        height: 30px;
    }
    
    /* Guarantee Section Mobile */
    .guarantee-section {
        padding: 60px 0;
    }
    
    .guarantee-box {
        padding: 40px 30px;
        border-radius: 16px;
        margin: 0 20px;
    }
    
    .guarantee-box h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .guarantee-intro {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .guarantee-promise {
        font-size: 18px;
        margin-bottom: 24px;
        padding: 0;
    }
    
    .guarantee-conclusion {
        font-size: 14px;
    }
    
    /* Hide decorative quotes on mobile */
    .guarantee-box .guarantee-intro::before,
    .guarantee-box .guarantee-intro::after {
        display: none;
    }
}

@media (max-width: 768px) {
    h2,
    .section-header h2,
    .problem-section h2,
    .case-studies-section h2,
    .unit-economics-section h2,
    .transformation-section h2,
    .guarantee-section h2,
    .cta-section h2,
    .investment-section h2,
    .faq-section h2 {
        font-size: 36px;
    }

    .blueprint-wrapper {
        padding: 60px 0;
    }

    .blueprint-wrapper h3 {
        font-size: 28px;
    }

    .blueprint-image-container {
        padding: 0 50px;
    }
    
    h3,
    .case-study-header h3,
    .choice-card h3,
    .economics-card h3 {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .guarantee-box h2 {
        font-size: 28px;
    }
    
    .transformation-statement {
        font-size: 20px;
    }
    
    .personal-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .personal-note::before {
        left: 30px;
        top: 20px;
        font-size: 50px;
    }
    
    .author-photo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    h2,
    .section-header h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subheadline {
        font-size: 18px;
    }
} 

/* Site Header */
.site-header {
    padding: 20px 0;
    background: #F9F9F9;
    position: relative;
    z-index: 100;
}

.site-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}

/* Hero Section with Calculator */
.hero-calculator {
    padding: 60px 0 120px;
    text-align: center;
    background: #F9F9F9;
    position: relative;
    overflow: visible;
}

.hero-calculator .headline {
    font-size: clamp(40px, 8vw, 74px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-calculator .subheadline {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.accent-green {
    color: #95bf47;
}

.accent-red {
    color: #e74c3c;
}

.calculator-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.calculator-form label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-align: left;
}

.calculator-form .input-group {
    position: relative;
    margin-bottom: 24px;
}

.calculator-form .currency-prefix {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 600;
    color: #757575;
}

.calculator-form .ad-spend-input {
    width: 100%;
    padding: 18px 20px 18px 45px;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #F9F9F9;
    color: #1A1A1A;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.calculator-form .ad-spend-input:focus {
    outline: none;
    border-color: #95BF47;
    background: white;
}

.calculator-form .ad-spend-input::placeholder {
    color: #a0a0a0;
    font-weight: 400;
}

.calculator-form .calculate-btn {
    width: 100%;
    background: #95BF47;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: normal;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.calculator-form .calculate-btn:hover {
    background-color: #82ab3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    line-height: 1.3;
}

/* Proof Section */
.proof-section {
    padding: 100px 0;
    background: #F1F1F1;
}

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

.proof-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #5e8e3e;
    margin-bottom: 20px;
}

.proof-lead {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.proof-lead strong {
    color: #1a1a1a;
    font-weight: 700;
}

.proof-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.proof-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.proof-card .card-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.before-card .card-label {
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.after-card .card-label {
    color: #95bf47;
    border: 2px solid #95bf47;
}

.proof-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 30px;
    text-align: center;
}

.proof-card .metrics {
    margin-bottom: 30px;
    flex-grow: 1;
}

.proof-card .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.proof-card .metric:last-child {
    border-bottom: none;
}

.proof-card .metric-label {
    font-size: 14px;
    color: #757575;
}

.proof-card .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.proof-card .metric-value.bad {
    color: #e74c3c;
}

.proof-card .metric-value.good {
    color: #95bf47;
}

.proof-card .result-line {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
}

.proof-card .result-line.negative {
    background: rgba(231, 76, 60, 0.08);
}

.proof-card .result-line.positive {
    background: rgba(149, 191, 71, 0.08);
}

.proof-card .result-label {
    font-size: 14px;
    color: #757575;
    display: block;
    margin-bottom: 4px;
}

.proof-card .result-amount {
    font-size: 32px;
    font-weight: 900;
    display: block;
}

.result-line.negative .result-amount {
    color: #e74c3c;
}

.result-line.positive .result-amount {
    color: #95bf47;
}

/* Services Section - Asymmetrical Cards */
.services-section {
    padding: 100px 0;
    background: white;
}

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

.service-cards {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card.primary-card {
    border: 2px solid #95BF47;
    box-shadow: 0 10px 40px rgba(149, 191, 71, 0.15);
    transform: scale(1.05);
}

.service-card.primary-card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 50px rgba(149, 191, 71, 0.2);
}

.start-here-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #95BF47;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(149, 191, 71, 0.3);
}

.service-card.secondary-card {
    border-top: 4px solid #FF9500;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.service-card.secondary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 149, 0, 0.15);
}

.service-card.tertiary-card {
    border-top: 4px solid #a0a0a0;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.primary-service-btn, .secondary-link, .tertiary-link {
    margin-top: auto;
}

.primary-service-btn {
    display: block;
    background: #95BF47;
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: normal;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.primary-service-btn:hover {
    background: #82ab3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.secondary-link {
    display: inline-block;
    color: #FF9500;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-link:hover {
    color: #e68600;
    transform: translateX(5px);
}

.tertiary-link {
    display: inline-block;
    color: #757575;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tertiary-link:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Credibility Section */
.credibility-section {
    padding: 100px 0;
    background: #F9F9F9;
}

.credibility-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.founder-photo {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.founder-story {
    flex: 1;
}

.founder-story h2 {
    font-size: 42px;
    text-align: left;
    margin-bottom: 30px;
}

.founder-story p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.founder-signature {
    margin-top: 30px;
}

.founder-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.founder-title {
    font-size: 16px;
    color: #757575;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta-tagline {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 500;
}

.final-cta-section .ps-note {
    max-width: 700px;
    margin: 40px auto 0;
    font-size: 16px;
    color: #666;
    font-style: italic;
    line-height: 1.7;
}

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

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .proof-cards {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card.primary-card {
        transform: scale(1);
    }
    
    .credibility-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .founder-story h2 {
        text-align: center;
    }

    .proof-section .section-header, .founder-story {
        text-align: left;
    }

    .founder-story h2 {
        text-align: left;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 32px;
    }

    .site-logo {
        width: 100px;
    }

    .hero-calculator {
        padding: 40px 0 80px;
    }

    .hero-calculator .headline {
        font-size: 42px;
    }
    
    .hero-calculator .subheadline {
        font-size: 18px;
    }

    .proof-section, .services-section, .credibility-section, .final-cta-section {
        padding: 60px 0;
    }
    
    .calculator-form-wrapper {
        padding: 30px 20px;
    }

    .proof-card {
        padding: 20px;
    }
    
    .founder-story h2 {
        font-size: 36px;
    }

    .proof-lead {
        font-size: 18px;
    }

    .founder-story p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-calculator {
        padding: 30px 0 80px;
    }
    
    .hero-calculator .headline {
        font-size: 32px;
    }
    
    .proof-card .result-amount {
        font-size: 28px;
    }
    
    .start-here-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
} 