:root {
    /* Brand Color Palette */
    --brand-coral: #DAA7AB;
    --brand-blue: #78B3DE;
    --brand-dark: #28303E;
    --brand-slate: #536374;
    --brand-gray: #B3B3B3;
    --brand-light-gray: #E4E4E4;
    --brand-lightest: #F6F8F9;
    
    /* Semantic Colors */
    --primary-color: #28303E;
    --accent-color: #78B3DE;
    --accent-warm: #DAA7AB;
    --success-color: #22C55E;
    
    /* Text Colors */
    --text-primary: #28303E;
    --text-secondary: #536374;
    --text-light: #B3B3B3;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-lightest: #F6F8F9;
    --bg-light: #E4E4E4;
    --bg-gray: #B3B3B3;
    
    /* Border and Shadow Colors */
    --border-color: #E4E4E4;
    --border-light: rgba(218, 167, 171, 0.2);
    --shadow-sm: 0 1px 2px rgba(40, 48, 62, 0.05);
    --shadow-md: 0 4px 6px rgba(40, 48, 62, 0.07);
    --shadow-lg: 0 10px 15px rgba(40, 48, 62, 0.1);
    --shadow-xl: 0 20px 25px rgba(40, 48, 62, 0.1);
    
    /* Layout */
    --max-width: 1200px;
    --narrow-width: 720px;
    --transition: all 0.2s ease;
    --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Simplified Navigation */
.navbar-simple {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar-simple .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 24px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.logo-simple {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-cta {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

/* Minimalist Hero Section */
.hero-minimal {
    padding: 10rem 0 6rem;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hero-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 48, 62, 0.6);
    z-index: 1;
}

.hero-minimal .container-narrow {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.4;
    color: white;
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 500;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    margin-bottom: 4rem;
}

.btn-main {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-main:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-main.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-trust {
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-trust p {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.trust-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logos span {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

/* Section Styling */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}


/* Play Practice Perform Journey */
.ppp-journey {
    padding: 4rem 0 2rem;
    background: var(--brand-blue);
    position: relative;
}

.ppp-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.ppp-main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ppp-subtitle {
    font-size: 1.125rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.ppp-journey .section-label {
    color: white;
    opacity: 0.8;
    font-weight: 700;
}

.ppp-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ppp-stage-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ppp-arrow {
    font-size: 2rem;
    color: var(--accent-warm);
    font-weight: 300;
}

.ppp-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.ppp-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: white;
    opacity: 0.95;
    margin: 0;
}

.ppp-stage {
    flex: 1;
    max-width: 280px;
    text-align: center;
    animation: bounceIn 0.6s ease;
}

.ppp-stage:nth-child(1) { animation-delay: 0.1s; }
.ppp-stage:nth-child(3) { animation-delay: 0.2s; }
.ppp-stage:nth-child(5) { animation-delay: 0.3s; }

@keyframes bounceIn {
    0% { opacity: 0; transform: translateY(30px); }
    60% { opacity: 1; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stage-bubble {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
}

.stage-bubble:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.play-stage .stage-bubble {
    border: 3px solid var(--accent-color);
}

.practice-stage .stage-bubble {
    border: 3px solid var(--accent-warm);
}

.perform-stage .stage-bubble {
    border: 3px solid var(--brand-slate);
}

.stage-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.stage-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.stage-description {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.stage-details {
    text-align: center;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}

.tag:hover {
    transform: scale(1.05);
}

.tag-play {
    background: var(--accent-color);
}

.tag-practice {
    background: var(--accent-warm);
}

.tag-perform {
    background: var(--brand-slate);
}

.stage-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Squiggly Arrows */
.squiggly-arrow {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.arrow-svg {
    width: 100%;
    height: 100%;
    animation: arrowFloat 3s ease-in-out infinite;
}

.arrow-1 .arrow-svg {
    animation-delay: 0.5s;
}

.arrow-2 .arrow-svg {
    animation-delay: 1s;
}

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


/* Support Stages */
.support-stages {
    padding: 2rem 0 6rem;
    background: var(--bg-lightest);
}

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

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

.stage-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.stage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.stage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Founder Letter Section */
.founder-letter-section {
    padding: 6rem 0 4rem;
    background: var(--bg-white);
}

.founder-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem 3rem 4rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    background: var(--bg-white);
    position: relative;
}

.founder-photos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-white);
    background: var(--bg-white);
}

.founder-intro {
    margin-bottom: 2rem;
}

.founder-intro p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.founder-intro strong {
    font-weight: 700;
}

.founder-story {
    text-align: left;
    margin-bottom: 2.5rem;
}

.founder-story p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.founder-story p:last-child {
    margin-bottom: 0;
}

.founder-signatures {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
}

.signature {
    height: 40px;
    width: auto;
    opacity: 0.7;
}

/* Scrolling Logos Section */
.scrolling-logos-section {
    padding: 2rem 0 4rem;
    background: var(--bg-white);
    overflow: hidden;
}

.logos-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track::before,
.logos-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-track::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-white) 0%, transparent 100%);
}

.logos-track::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-white) 100%);
}

.logos-slide {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 40s linear infinite;
    align-items: center;
}

.logo-item {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.8;
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* Services Section */
.services-minimal {
    padding: 6rem 0;
    background: var(--bg-white);
}

.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-minimal {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.service-minimal:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-minimal.featured {
    background: var(--text-primary);
    color: white;
    transform: scale(1.05);
}

.service-minimal.featured p,
.service-minimal.featured .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-emoji {
    font-size: 1.5rem;
}

.service-minimal h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.service-minimal p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-minimal.featured .service-list li::before {
    color: white;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-minimal.featured .service-price {
    color: white;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials Letters Section */
.testimonials-letters {
    padding: 6rem 0;
    background: var(--brand-coral);
}

.testimonials-letters .section-label {
    color: white;
    opacity: 0.9;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 
                 -1px -1px 0 rgba(0, 0, 0, 0.1),
                 1px -1px 0 rgba(0, 0, 0, 0.1),
                 -1px 1px 0 rgba(0, 0, 0, 0.1),
                 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.testimonials-letters .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
                 -1px -1px 0 rgba(0, 0, 0, 0.15),
                 1px -1px 0 rgba(0, 0, 0, 0.15),
                 -1px 1px 0 rgba(0, 0, 0, 0.15),
                 1px 1px 0 rgba(0, 0, 0, 0.15);
}

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

.testimonial-letter-card {
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.testimonial-letter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-photo {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.photo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    border: 3px solid var(--bg-white);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-white);
    background: var(--bg-white);
}

.testimonial-content {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    flex: 1;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-story {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-impact {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-signature {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    min-height: 80px;
}

.signature-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.signature-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-lightest);
    border-radius: 8px;
    overflow: hidden;
    border-left: 3px solid var(--accent-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--border-color);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

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

/* CTA Section */
.cta-final {
    padding: 6rem 0;
    background: var(--bg-lightest);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-single {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--brand-slate) 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--brand-coral) 100%);
    border: 2px solid var(--accent-warm);
}

.newsletter-btn {
    background: white;
    color: var(--accent-warm);
}

.newsletter-btn:hover {
    background: var(--bg-lightest);
    color: var(--primary-color);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-promise {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Footer */
.footer-minimal {
    padding: 4rem 0 2rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.footer-middle {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-middle p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-credit {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit:hover {
    color: var(--accent-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-minimal {
        padding: 8rem 0 4rem;
        background-attachment: scroll;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-main {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .services-grid-minimal,
    .testimonials-grid,
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .ppp-journey {
        padding: 3rem 0 1rem;
    }
    
    .ppp-header {
        margin-bottom: 2rem;
    }
    
    .ppp-stages {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ppp-stage-title {
        font-size: 1.75rem;
    }
    
    .ppp-arrow {
        font-size: 1.5rem;
    }
    
    .ppp-description p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .support-stages {
        padding: 1rem 0 4rem;
    }
    
    .squiggly-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .trust-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-minimal.featured {
        transform: scale(1);
    }
    
    .founder-card {
        padding: 4rem 2rem 3rem;
        margin: 0 1rem;
    }
    
    .founder-photos {
        gap: 0.5rem;
    }
    
    .founder-avatar {
        width: 70px;
        height: 70px;
    }
    
    .founder-signatures {
        justify-content: center;
        gap: 1rem;
    }
    
    .signature {
        height: 35px;
    }
    
    .logos-slide {
        animation: scroll-logos 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-main {
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .logos-slide {
        animation: scroll-logos 15s linear infinite;
    }
}

/* Print Styles */
@media print {
    .navbar-simple,
    .nav-cta,
    .hero-actions,
    .cta-final {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container,
    .container-narrow {
        max-width: 100%;
    }
}