/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #3c3c3c;
    background-color: #ffffff;
    background-image:
        linear-gradient(0deg, rgba(254, 200, 43, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(60, 60, 60, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(254, 200, 43, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(60, 60, 60, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(254, 200, 43, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(60, 60, 60, 0.03) 1px, transparent 1px);
    background-position: 0 20px, 0 80px, 0 140px, 0 200px, 0 260px, 0 320px;
    background-repeat: repeat-x;
    background-size: 100% 300px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #3c3c3c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #3c3c3c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fec82b;
}

.nav-link.cta-button {
    background-color: #fec82b;
    color: #3c3c3c;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.nav-link.cta-button:hover {
    background-color: #e6b625;
    color: #3c3c3c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fec82b 0%, #f4c430 100%);
    color: #3c3c3c;
    text-align: center;
    padding: 8rem 0 6rem 0;
    margin-top: 70px;
}

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

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #3c3c3c;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3c3c3c;
    border: 2px solid #3c3c3c;
}

.btn-secondary:hover {
    background-color: #3c3c3c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #fec82b;
}

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

/* Grid layouts */
.problem-grid,
.solution-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item,
.solution-item,
.pricing-item,
.cta-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-item:hover,
.solution-item:hover,
.pricing-item:hover,
.cta-item:hover {
    transform: translateY(-5px);
}

.problem-item {
    background-color: #ffeaa7;
    border-left: 4px solid #fec82b;
}

.solution-item {
    background-color: #e8f5e8;
    border-left: 4px solid #27ae60;
}

/* Market stats */
.market-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fec82b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #fec82b;
    z-index: 1;
}

.timeline-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 3px solid #fec82b;
    flex: 1;
    margin: 0 1rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fec82b;
    margin-bottom: 0.5rem;
}

.traction-note {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
    color: #666;
}

/* Special sections */
.spark {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(244, 196, 48, 0.6) 100%),
        url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.spark .section-title {
    color: #ffffff;
}

.spark .section-title::after {
    background-color: #fec82b;
}

.spark-text {
    font-size: 1.4rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.advantage {
    background-color: #f8f9fa;
    color: #3c3c3c;
}

/* Comparison grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.competitor {
    border: 3px solid #ddd;
}

.pulsecoach {
    border: 3px solid #fec82b;
    background: linear-gradient(135deg, #fec82b 0%, #f4c430 100%);
    color: #3c3c3c;
}

.comparison-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-focus {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Technology process */
.technology {
    background: linear-gradient(135deg, #3c3c3c 0%, #2a2a2a 100%);
    color: #ffffff;
}

.technology .section-title {
    color: #ffffff;
}

.technology .section-title::after {
    background-color: #fec82b;
}

.tech-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background-color: rgba(254, 200, 43, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #fec82b;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #fec82b;
    color: #3c3c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.step-title {
    color: #fec82b;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.5;
}

.investment {
    background: linear-gradient(135deg, #2c3e50 0%, #3c3c3c 100%);
    color: #ffffff;
}

.investment .section-title {
    color: #ffffff;
}

.investment .section-title::after {
    background-color: #fec82b;
}

.investment-item {
    background-color: rgba(254, 200, 43, 0.1);
    border: 2px solid #fec82b;
}

.investment-title {
    color: #fec82b;
}

.cta {
    background-color: #f8f9fa;
    text-align: center;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-link {
    color: #fec82b;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.closing {
    background: linear-gradient(135deg, #fec82b 0%, #f4c430 100%);
    color: #3c3c3c;
    text-align: center;
}

.closing-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #3c3c3c;
    color: #ffffff;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.footer-contact a {
    color: #fec82b;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .timeline::before {
        display: none;
    }

    .timeline-item {
        margin: 0;
    }

    .market-stats {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 4rem 0;
    }

    .section {
        padding: 2rem 0;
    }

    .problem-grid,
    .solution-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid,
    .tech-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
