/* Unbridled Retirement Styles */

:root {
    --navy: #061b31;
    --gold: #c4975f;
    --cream: #faf8f5;
    --gray-dark: #2c3e50;
    --gray-mid: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    background: linear-gradient(135deg, var(--navy) 0%, #0a2742 50%, #0d3255 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1200&q=90') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 6rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.logo {
    width: 100px;
    height: 60px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.brand-tagline {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-headline {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.cta-primary:hover {
    background: #d4a76f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 151, 95, 0.3);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559209172-c10c6048d50f?w=1200&q=90') center/cover;
    opacity: 0.4;
    z-index: 1;
}

/* Problem Section */
.problem-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-mid);
    font-weight: 300;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.problem-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-mid);
}

.problem-card em {
    font-style: italic;
    color: var(--navy);
}

/* Strategy Section */
.strategy-section {
    padding: 7rem 2rem;
    background: var(--white);
}

.strategy-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.display-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-mid);
    font-style: italic;
}

.strategy-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.strategy-column {
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.strategy-column.floor {
    background: linear-gradient(135deg, var(--navy) 0%, #0a2742 100%);
    color: var(--white);
}

.strategy-column.upside {
    background: var(--cream);
    color: var(--navy);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.strategy-column.upside .column-header {
    border-bottom-color: var(--gold);
}

.column-header h3 {
    font-size: 2rem;
}

.percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.icon {
    font-size: 2.5rem;
}

.column-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.source-list {
    list-style: none;
    padding: 0;
}

.source-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
}

.strategy-column.upside .source-list li {
    border-bottom-color: rgba(6, 27, 49, 0.1);
}

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

.source-list strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.strategy-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a76f 100%);
    color: var(--navy);
    border-radius: 4px;
}

.stat-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--navy);
    opacity: 0.85;
}

/* Process Section */
.process-section {
    padding: 7rem 2rem;
    background: var(--gray-light);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.process-step p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-mid);
}

/* Proof Section */
.proof-section {
    padding: 7rem 2rem;
    background: var(--navy);
    color: var(--white);
}

.proof-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.proof-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(196, 151, 95, 0.2);
}

.proof-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.proof-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.highlight {
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
}

/* Audience Section */
.audience-section {
    padding: 7rem 2rem;
    background: var(--cream);
}

.audience-section .display-title {
    text-align: center;
    margin-bottom: 4rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.audience-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.audience-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-mid);
}

/* CTA Section */
.cta-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #0a2742 100%);
    color: var(--white);
}

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

.cta-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-details {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.75);
}

.cta-button-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.cta-button-large:hover {
    background: #d4a76f;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(196, 151, 95, 0.4);
}

.cta-disclaimer {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Footer */
.footer {
    padding: 4rem 2rem 3rem;
    background: var(--gray-dark);
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--gold);
    margin-top: 1rem;
}

.footer-legal {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-legal p {
    margin-bottom: 1rem;
}

.footer-legal strong {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
    
    .display-title {
        font-size: 3.5rem;
    }
    
    .strategy-visual {
        grid-template-columns: 1fr;
    }
    
    .strategy-result {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .display-title {
        font-size: 2.75rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.15;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .proof-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}