@import url('./common.css');

/* Landing Page Specific Styles */
body {
    font-family: "Inter", sans-serif;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1f2e 50%, var(--accent-color) 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10001;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.nav-logo i {
    color: #ff6b6b;
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced glow effect for primary buttons */
.btn-primary.btn-large {
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3),
                0 0 40px rgba(255, 107, 107, 0.15);
    transition: all 0.3s ease;
}

.btn-primary.btn-large:hover {
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.5),
                0 0 60px rgba(255, 107, 107, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-gray);
    color: var(--text-white);
    transition: all 0.3s ease;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Hero Demo */
.hero-demo {
    position: relative;
}

.demo-container {
    background: var(--menu-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-dots {
    display: flex;
    gap: 0.5rem;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
}

.demo-dots span:first-child {
    background: #ff6b6b;
}

.demo-title {
    color: var(--text-white);
    font-weight: 600;
}

.demo-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toastmasters Focus Section */
.toastmasters-focus {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toastmasters-focus h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.toastmasters-focus .lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.tm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.tm-badge i {
    font-size: 1.1rem;
}

.tm-specific-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.tm-specific-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.tm-specific-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
}

.tm-specific-item i {
    color: #4ecdc4;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tm-specific-item strong {
    display: block;
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tm-specific-item p {
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.tm-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.trust-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.hero-tm-emphasis strong {
    color: #ff6b6b;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

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

.feature-card {
    background: var(--menu-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.demo-wrapper {
    background: var(--menu-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-tab {
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 1rem 1.5rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.demo-tab.active {
    color: var(--text-white);
    background: rgba(255, 107, 107, 0.1);
    border-bottom: 2px solid #ff6b6b;
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
}

/* Demo Content Styles */
.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.schedule-header h3 {
    color: var(--text-white);
    margin: 0;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.schedule-table {
    background: var(--tertiary-color);
    border-radius: 12px;
    overflow: hidden;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row.header {
    background: rgba(255, 107, 107, 0.1);
    font-weight: 600;
}

.col-role, .col-meeting, .col-assignment {
    padding: 1rem;
    color: var(--text-white);
}

.col-role {
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.col-assignment {
    color: var(--text-gray);
}

/* Role Assignment Demo */
.role-assignment-demo h3 {
    color: var(--text-white);
    margin-bottom: 2rem;
}

.demo-roles-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.available-roles h4, .meeting-slots h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.role-item {
    background: var(--tertiary-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: grab;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.role-item:hover {
    background: rgba(255, 107, 107, 0.1);
}

.slot {
    background: var(--tertiary-color);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slot-label {
    font-weight: 600;
    color: var(--text-white);
}

.slot-content {
    color: var(--text-gray);
    font-style: italic;
}

/* Member Management Demo */
.member-management-demo h3 {
    color: var(--text-white);
    margin-bottom: 2rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: var(--tertiary-color);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.member-info h4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
}

.member-info p {
    color: var(--text-gray);
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.member-stats {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.member-actions {
    margin-left: auto;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: rgba(15, 20, 35, 0.5);
}

.comparison-table {
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-row.header .comparison-cell {
    padding: 1.25rem 1.5rem;
}

.comparison-cell {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    font-weight: 700;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .comparison-cell {
        padding: 0.75rem 0.5rem;
    }
}

/* Footer */
.footer {
    background: var(--background-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #ff6b6b;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact i {
    color: #ff6b6b;
    font-size: 1rem;
}

.footer-contact a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #4ecdc4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-white);
}

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

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0b0f19;
    background-color: #0b0f19;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    padding: 2rem;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0b0f19;
    z-index: -1;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link,
.mobile-nav .btn-primary {
    font-size: 1.25rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.mobile-nav .nav-link:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.05);
}

.mobile-nav .btn-primary {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Hero Demo */
    .hero-demo {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .demo-container {
        padding: 1rem;
    }
    
    /* Toastmasters Focus Section */
    .toastmasters-focus {
        padding: 3rem 0;
    }
    
    .toastmasters-focus h2 {
        font-size: 1.8rem;
    }
    
    .toastmasters-focus .lead {
        font-size: 1rem;
    }
    
    .tm-specific-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .tm-trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    /* Features Section */
    .features {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Demo Section */
    .demo-section {
        padding: 4rem 0;
    }
    
    .demo-wrapper {
        padding: 1.5rem;
    }
    
    .demo-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .demo-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Schedule Demo */
    .schedule-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-row {
        min-width: 500px;
        grid-template-columns: 120px repeat(3, 1fr);
    }
    
    .col-role, .col-meeting, .col-assignment {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Role Assignment Demo */
    .demo-roles-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .role-item {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .slot {
        min-height: 80px;
        padding: 1rem;
    }
    
    /* Member Management Demo */
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .member-actions {
        margin-left: 0;
    }
    
    /* CTA Section */
    .cta {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .demo-wrapper {
        padding: 1rem;
    }
    
    .schedule-row {
        min-width: 400px;
        grid-template-columns: 100px repeat(3, 1fr);
    }
    
    .col-role, .col-meeting, .col-assignment {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-secondary, .btn-large, .btn-small {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .member-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .role-item:hover {
        background: var(--tertiary-color);
    }
}