/* Therapy is Running - Shared Styles */

:root {
    --text-primary: #333;
    --text-secondary: #555;
    --bg-color: #f8f8f8;
    --accent-color: #007aff;
    --accent-hover: #0056b3;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration-color: rgba(0, 122, 255, 0.35);
}

a:hover {
    color: var(--accent-hover);
    text-decoration-color: rgba(0, 86, 179, 0.5);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: var(--accent-hover);
    color: white;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-hover);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Content Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.grid-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.grid-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How it works */
.how-it-works-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.how-it-works-item p {
    flex-grow: 1;
    color: var(--text-secondary);
    line-height: 1.6;
}

.how-it-works-item .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* Is this for you? */
#is-for-you {
    background-color: #fff;
}

/* Final CTA */
#final-cta {
    background-color: #fff;
}

#final-cta .container {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 20px;
}

#final-cta h2 {
    font-size: 2.8rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}
