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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #fff;
}

.logo span {
    color: #888;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-cta {
    background: #fff;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,255,255,0.2);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #fff;
    color: #0a0a0a;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.15);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #888 0%, #fff 50%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: #888;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 60px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.service-block h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.service-lead {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-details h3,
.service-why h3 {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-details ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-details li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #ccc;
    font-size: 15px;
}

.service-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #666;
}

.service-why p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
}

.service-block-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visual-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px 40px;
    text-align: center;
}

.visual-stat .number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 4px;
}

.visual-stat .label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partnership Section */
.partnership-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.tier-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.tier-card.featured {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #0a0a0a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tier-header {
    margin-bottom: 24px;
}

.tier-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 14px;
    color: #888;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.tier-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #aaa;
    font-size: 14px;
}

.tier-card li:last-child {
    border-bottom: none;
}

.tier-card .btn-primary,
.tier-card .btn-outline {
    width: 100%;
}

.annual-packages {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.annual-packages h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.annual-packages > p {
    color: #888;
    margin-bottom: 24px;
}

.packages-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.package {
    padding: 16px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 14px;
    color: #aaa;
}

.package strong {
    color: #fff;
}

/* About Page */
.about-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 18px;
    color: #888;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.story-text p {
    color: #888;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text p strong {
    color: #fff;
}

.story-timeline {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
}

.timeline-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-item p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .role {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Community Page */
.community-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.community-hero .eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.community-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.community-hero p {
    font-size: 18px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.community-stats-large {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.stat-card h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-card p {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.program-card {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}

.program-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.program-card p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Page */
.contact-hero {
    padding: 160px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
}

.contact-content {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
}

.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.contact-info {
    padding-top: 20px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-item p,
.info-item a {
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
}

.info-item a:hover {
    color: #fff;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.calendar-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-section p {
    color: #888;
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #888;
    font-size: 14px;
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .service-block {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    
    .service-block-visual {
        order: -1;
    }
    
    .visual-stats {
        flex-direction: row;
        width: 100%;
    }
    
    .visual-stat {
        flex: 1;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .packages-row {
        flex-direction: column;
        gap: 16px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #888;
}

.mobile-menu li:last-child a {
    border-bottom: none;
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: block; pointer-events: none; }
    .mobile-menu.active { pointer-events: auto; }
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.download-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 60px;
    align-items: center;
}

.download-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-content p {
    color: #888;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
}

.download-highlights {
    list-style: none;
    padding: 0;
}

.download-highlights li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #ccc;
    font-size: 15px;
}

.download-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.download-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px;
}

.download-form .form-group {
    margin-bottom: 20px;
}

.download-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
}

.download-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.download-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
}

.download-form input::placeholder {
    color: #666;
}

.download-form .btn-primary {
    width: 100%;
    margin-top: 8px;
    padding: 16px 28px;
    font-size: 16px;
}

/* Thank You Page */
.thank-you-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 500px;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 32px;
}

.thank-you-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.thank-you-content > p {
    color: #888;
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.next-steps {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.next-steps h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.next-steps p {
    color: #888;
    margin-bottom: 24px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

/* Responsive - Download Section */
@media (max-width: 768px) {
    .download-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }
    
    .download-content h2 {
        font-size: 26px;
    }
    
    .thank-you-content h1 {
        font-size: 36px;
    }
}

/* Nav Secondary Link */
.nav-link-secondary {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    margin-right: 24px;
    transition: color 0.3s ease;
}

.nav-link-secondary:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .nav-link-secondary {
        display: none;
    }
}
