/**
 * Unified Interface Styles
 * Based on senna-tutor-combined.html design
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.sfpe-unified-interface {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0D353E;
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Animated mesh gradient background - reduced height */
.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Reduced to keep tutors above fold */
    background: 
        radial-gradient(at 40% 20%, #1b5059 0px, transparent 50%),
        radial-gradient(at 80% 0%, #164147 0px, transparent 50%),
        radial-gradient(at 0% 50%, #0A2A32 0px, transparent 50%),
        radial-gradient(at 80% 50%, #102B30 0px, transparent 50%),
        radial-gradient(at 0% 100%, #1b5059 0px, transparent 50%),
        radial-gradient(at 80% 100%, #164147 0px, transparent 50%);
    animation: meshMove 20s ease infinite;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    33% { transform: translate(30px, -30px) scale(1.1); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    66% { transform: translate(-20px, 20px) scale(0.9); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.header {
    width: 100%;
    padding: 2rem 1rem 1rem; /* Reduced padding to move content up */
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.senna-logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #6CFFC4 0%, #1b5059 50%, #6CFFC4 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-sweep 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(108, 255, 196, 0.3));
    position: relative;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes gradient-sweep {
    0% { 
        background-position: 0% center;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    50% {
        background-position: 100% center;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    100% { 
        background-position: 0% center;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.subtitle {
    color: #6CFFC4;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem; /* Reduced padding */
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(90deg, rgba(16, 43, 48, 0.95) 0%, rgba(13, 53, 62, 0.95) 100%);
    border: 1px solid #1b5059;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 255, 196, 0.1), transparent);
    animation: trustBarShine 3s ease-in-out infinite;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes trustBarShine {
    0% { left: -100%; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    100% { left: 100%; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.trust-bar-icon {
    width: 24px;
    height: 24px;
    fill: #6CFFC4;
    flex-shrink: 0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.trust-bar-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.trust-bar-highlight {
    color: #6CFFC4;
    font-weight: 600;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.rotating-message {
    display: inline-flex;
    position: relative;
    width: auto;
    min-width: 300px;
    height: 1.3em;
    overflow: hidden;
    text-align: left;
    align-items: center;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.rotating-message span {
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    animation: rotateMessage 9s infinite;
    display: inline-flex;
    align-items: center;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.rotating-message span:nth-child(1) { animation-delay: 0s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
.rotating-message span:nth-child(2) { animation-delay: 3s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
.rotating-message span:nth-child(3) { animation-delay: 6s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes rotateMessage {
    0%, 27% { opacity: 0; transform: translateY(20px); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    33%, 60% { opacity: 1; transform: translateY(0); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    66%, 100% { opacity: 0; transform: translateY(-20px); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Quick Access Section */
.quick-access {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.quick-access-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #E0E0E0 0%, #FFFFFF 25%, #C0C0C0 50%, #FFFFFF 75%, #E0E0E0 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silver-shine 4s linear infinite;
    white-space: nowrap;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes silver-shine {
    0% { background-position: 0% center; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    100% { background-position: 200% center; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.quick-access-subtitle {
    color: #6CFFC4;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Tutors Grid */
.tutors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    perspective: 1000px;
    margin-top: 2rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Large screen adjustments */
@media screen and (min-width: 1400px) {
    .tutors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        max-width: 1600px;
        margin: 2rem auto 0;
    }
}

.tutor-card {
    position: relative;
    background: linear-gradient(135deg, #102B30 0%, #0A2329 100%);
    border: 2px solid #1b5059;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0s;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(108, 255, 196, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Tutor Mini Preview */
.tutor-mini-preview {
    position: absolute;
    width: 320px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    border: 2px solid #6cffc4;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(108, 255, 196, 0.1),
        0 0 30px rgba(108, 255, 196, 0.2);
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.tutor-mini-preview .preview-arrow {
    position: absolute;
    left: -8px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #6cffc4;
}

.tutor-mini-preview .preview-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(108, 255, 196, 0.2);
}

.tutor-mini-preview .preview-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #6cffc4;
}

.tutor-mini-preview .preview-info h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.tutor-mini-preview .preview-status {
    color: #6cffc4;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.tutor-mini-preview .preview-content {
    padding: 20px;
}

.tutor-mini-preview .preview-greeting {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
}

.tutor-mini-preview .preview-highlights h5 {
    color: #6cffc4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tutor-mini-preview .preview-highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tutor-mini-preview .preview-highlights li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tutor-mini-preview .preview-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(108, 255, 196, 0.2);
}

.tutor-mini-preview .preview-stats span {
    color: #b0c4de;
    font-size: 13px;
}

.tutor-mini-preview .preview-stats strong {
    color: #6cffc4;
}

.tutor-mini-preview .preview-actions {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 14px 14px;
}

.tutor-mini-preview .preview-start-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #6cffc4 0%, #4fb39c 100%);
    color: #0a1f23;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tutor-mini-preview .preview-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 255, 196, 0.4);
}

/* Email Form Overlay */
.sfpe-email-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sfpe-email-form-container {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    border: 2px solid #6cffc4;
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(108, 255, 196, 0.1),
        0 0 50px rgba(108, 255, 196, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.sfpe-email-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.sfpe-email-form-header h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sfpe-email-form-header p {
    color: #b0c4de;
    font-size: 16px;
    line-height: 1.5;
}

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

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

.sfpe-email-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(108, 255, 196, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sfpe-email-input:focus {
    outline: none;
    border-color: #6cffc4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(108, 255, 196, 0.3);
}

.sfpe-email-input.error {
    border-color: #ff6b6b;
}

.sfpe-email-error {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

.sfpe-checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.sfpe-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.sfpe-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.sfpe-submit-btn {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6cffc4 0%, #4fb39c 100%);
    color: #0a1f23;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sfpe-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 255, 196, 0.4);
}

.sfpe-cancel-btn {
    padding: 14px 24px;
    background: transparent;
    color: #b0c4de;
    border: 2px solid rgba(176, 196, 222, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sfpe-cancel-btn:hover {
    border-color: #b0c4de;
    color: #fff;
}

.sfpe-form-footer {
    text-align: center;
    margin-top: 20px;
}

.sfpe-form-footer p {
    color: #b0c4de;
    font-size: 13px;
}

/* Form Toggle Buttons */
.sfpe-form-toggle {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.sfpe-toggle-btn {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    color: #b0c4de;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sfpe-toggle-btn:hover {
    color: #fff;
}

.sfpe-toggle-btn.active {
    background: rgba(108, 255, 196, 0.2);
    color: #6cffc4;
    box-shadow: 0 0 10px rgba(108, 255, 196, 0.3);
}

/* Password field specific styles */
.sfpe-password-error {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

/* Responsive */
@media (max-width: 480px) {
    .sfpe-email-form-container {
        padding: 30px 20px;
    }
    
    .sfpe-form-actions {
        flex-direction: column;
    }
    
    .sfpe-cancel-btn {
        order: 2;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Action Button Container */
.tutor-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30; /* Increased z-index */
    width: 85%;
    max-width: 280px;
    pointer-events: auto;
    isolation: isolate; /* Create stacking context */
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-card:nth-child(1) { animation-delay: 0.1s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
.tutor-card:nth-child(2) { animation-delay: 0.2s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
.tutor-card:nth-child(3) { animation-delay: 0.3s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
.tutor-card:nth-child(4) { animation-delay: 0.4s; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(108, 255, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1;
    border-radius: 20px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 40px 80px rgba(108, 255, 196, 0.15),
        inset 0 1px 0 rgba(108, 255, 196, 0.2);
    border-color: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-card:hover::before {
    opacity: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.card-inner {
    position: relative;
    z-index: 2;
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.card-image {
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    filter: brightness(1);
    transition: filter 0.15s ease, transform 0.15s ease;
    border-radius: 20px 20px 0 0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-card:hover .card-image {
    filter: brightness(1.1);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.15s ease;
    z-index: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-card:hover .card-image::before {
    background: rgba(0, 0, 0, 0.05);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #102B30);
    z-index: 2;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.expertise-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 3;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Online Indicator */
.online-indicator {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(108, 255, 196, 0.3);
    z-index: 3;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #6CFFC4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.online-text {
    font-size: 0.75rem;
    color: #6CFFC4;
    font-weight: 500;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.expertise-badge {
    background: rgba(108, 255, 196, 0.1);
    backdrop-filter: blur(10px);
    color: #6CFFC4;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid #6CFFC444;
    font-weight: 500;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.card-content {
    padding: 1.5rem 2rem;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-info {
    text-align: center;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-role {
    font-size: 1.1rem;
    color: #6CFFC4;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.role-icon {
    width: 24px;
    height: 24px;
    fill: #6CFFC4;
    filter: drop-shadow(0 0 10px rgba(108, 255, 196, 0.5));
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Info Icon */
.info-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    z-index: 3;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(108, 255, 196, 0.5);
    transform: scale(1.05);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-icon svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
    transition: fill 0.3s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-icon:hover svg {
    fill: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Action Button Styles */
.action-button {
    background: linear-gradient(135deg, #1b5059, #2a6a73);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 10;
    pointer-events: auto;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.action-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(108, 255, 196, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.action-button:hover {
    background: linear-gradient(135deg, #6CFFC4, #4ACC9F);
    color: #0D353E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 255, 196, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.action-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.action-button span {
    position: relative;
    z-index: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.action-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Chat Panel */
.chat-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(13, 53, 62, 0.98) 0%, rgba(10, 35, 41, 0.98) 100%);
    border-left: 1px solid #1b5059;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.chat-panel.active {
    transform: translateX(0);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.chat-panel-header {
    padding: 1.5rem;
    border-bottom: 1px solid #1b5059;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 43, 48, 0.8);
    backdrop-filter: blur(10px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.chat-panel-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.chat-panel-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.chat-panel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Resource Library Styles */
.resource-categories {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #1b5059;
    overflow-x: auto;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.category-tab {
    background: rgba(108, 255, 196, 0.1);
    border: 1px solid rgba(108, 255, 196, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #6CFFC4;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.category-tab.active {
    background: rgba(108, 255, 196, 0.2);
    border-color: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-item {
    background: rgba(27, 80, 89, 0.3);
    border: 1px solid #1b5059;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-item:hover {
    background: rgba(27, 80, 89, 0.5);
    border-color: #6CFFC4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 255, 196, 0.1), transparent);
    transition: left 0.6s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-item:hover::before {
    left: 100%;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-icon {
    width: 36px;
    height: 36px;
    background: rgba(108, 255, 196, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-icon svg {
    width: 20px;
    height: 20px;
    fill: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-meta {
    flex: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-title {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-type {
    font-size: 0.75rem;
    color: #6CFFC4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-description {
    font-size: 0.85rem;
    color: #FFFFFFCC;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #FFFFFF99;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-stats {
    display: flex;
    gap: 1rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 255, 196, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-badge img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Quick Action Bar */
.quick-action-bar {
    padding: 1rem 1.5rem;
    border-top: 1px solid #1b5059;
    background: rgba(16, 43, 48, 0.8);
    backdrop-filter: blur(10px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.quick-action-input {
    width: 100%;
    background: rgba(13, 53, 62, 0.5);
    border: 1px solid #1b5059;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.quick-action-input:focus {
    outline: none;
    border-color: #6CFFC4;
    background: rgba(13, 53, 62, 0.8);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.quick-action-input::placeholder {
    color: #FFFFFF66;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Try AI Button */
.try-ai-button {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, #6CFFC4, #4ACC9F);
    color: #0D353E;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(108, 255, 196, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    50% { transform: scale(1.05); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.try-ai-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 255, 196, 0.4);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.try-ai-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Session Restore Prompt */
.session-restore-prompt {
    position: fixed;
    bottom: 320px; /* Positioned above welcome greeting */
    right: 2rem;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.98) 0%, rgba(255, 152, 0, 0.98) 100%);
    border: 2px solid rgba(255, 183, 77, 0.6);
    border-radius: 16px;
    padding: 1rem;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 201;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-prompt.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-btn.primary {
    background: rgba(255, 255, 255, 0.95);
    color: #FF9800;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-btn.primary:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Welcome Greeting */
.welcome-greeting {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(13, 53, 62, 0.98) 0%, rgba(16, 43, 48, 0.98) 100%);
    border: 2px solid rgba(108, 255, 196, 0.5);
    border-radius: 16px;
    padding: 1.2rem;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-greeting.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

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

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #6CFFC4;
    flex-shrink: 0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-info {
    flex: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-name {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-role {
    font-size: 0.8rem;
    color: #6CFFC4;
    opacity: 0.9;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-message {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-cta {
    background: linear-gradient(135deg, #6CFFC4, #4ACC9F);
    color: #0D353E;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
    text-align: center;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 255, 196, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-resources {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-resource-btn {
    background: rgba(27, 80, 89, 0.4);
    border: 1px solid rgba(108, 255, 196, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 100%;
    text-align: left;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-resource-btn:hover {
    background: rgba(27, 80, 89, 0.6);
    border-color: #6CFFC4;
    transform: translateX(5px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-resource-btn svg {
    flex-shrink: 0;
    fill: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.resource-desc {
    font-size: 0.75rem;
    color: #6CFFC4;
    opacity: 0.9;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    50% { transform: translateX(-50%) translateY(-10px); }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.scroll-text {
    font-size: 0.8rem;
    color: #6CFFC4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Z-Index Management System */
:root {
    --z-index-background: -1;
    --z-index-default: 1;
    --z-index-header: 10;
    --z-index-tutor-card: 20;
    --z-index-dashboard: 40;
    --z-index-xp-display: 50;
    --z-index-chat-panel: 100;
    --z-index-welcome-greeting: 200;
    --z-index-session-restore: 201;
    --z-index-achievement: 300;
    --z-index-modal: 1000;
    --z-index-overlay: 9999;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Apply z-index updates */
.mesh-gradient {
    z-index: var(--z-index-background);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.header {
    z-index: var(--z-index-header);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.tutor-actions {
    z-index: var(--z-index-tutor-card);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.chat-panel {
    z-index: var(--z-index-modal);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.welcome-greeting {
    z-index: var(--z-index-welcome-greeting);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.session-restore-prompt {
    z-index: var(--z-index-session-restore);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.sfpe-achievement-notification {
    z-index: var(--z-index-achievement);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-popup-overlay {
    z-index: var(--z-index-overlay);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .card-inner {
        height: 400px;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .trust-bar {
        padding: 0.8rem 1.2rem;
        flex-wrap: wrap;
        text-align: center;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .trust-bar-text {
        font-size: 0.9rem;
        flex-wrap: wrap;
        white-space: normal;
        text-align: center;
        width: 100%;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .rotating-message {
        min-width: auto;
        width: 100%;
        display: block;
        text-align: center;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .rotating-message span {
        white-space: normal;
        text-align: center;
        width: 100%;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .quick-access-title {
        font-size: 1.2rem;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .chat-panel {
        width: 100%;
        height: 70vh;
        position: fixed;
        bottom: 0;
        right: 0;
        top: auto;
        border-left: none;
        border-top: 1px solid #1b5059;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .resource-categories {
        flex-wrap: wrap;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .category-tab {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .resource-item {
        padding: 1rem;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .try-ai-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .session-restore-prompt {
        bottom: 200px;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
    
    .welcome-greeting {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1400px) {
    .tutors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

/* Info Popup Overlay */
.info-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 53, 62, 0.98) 0%, rgba(16, 43, 48, 0.98) 100%);
    border: 2px solid rgba(108, 255, 196, 0.5);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    transform: scale(0.9);
    transition: all 0.15s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(108, 255, 196, 0.2) inset;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-popup-overlay.active .info-box {
    transform: scale(1);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #6CFFC4;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box-close svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box-title {
    color: #6CFFC4;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box ul {
    list-style: none;
    font-size: 0.85rem;
    color: #FFFFFFCC;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box li {
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

.info-box li::before {
    content: '▸';
    color: #6CFFC4;
    font-weight: bold;
    margin-top: 2px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .senna-logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    /* Mobile trust bar */
    .trust-bar {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .trust-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-bar-text {
        font-size: 0.9rem;
    }
    
    .rotating-message {
        min-width: 200px;
    }
    
    /* Stack tutors vertically on mobile */
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .tutor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .card-inner {
        height: 400px;
    }
    
    /* Larger touch targets */
    .action-button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .tutor-actions {
        width: 90%;
        max-width: 320px;
    }
    
    /* Simplified quick access */
    .quick-access {
        margin-bottom: 2rem;
    }
    
    .quick-access-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quick-access-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer stack */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .trust-bar-text {
        font-size: 0.8rem;
    }
    
    .tutor-card {
        max-width: 100%;
    }
    
    .mesh-gradient {
        height: 40vh;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}
/* Fix tutor action button text cutoff - Added by fix script */
.tutor-actions .action-button {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 12px 16px;
    min-height: auto;
    height: auto;
}

.tutor-actions .action-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.4;
    word-break: break-word;
}

.tutor-actions .action-icon {
    flex-shrink: 0;
}

/* Ensure proper spacing on all screen sizes */
@media (max-width: 1200px) {
    .tutor-actions .action-button {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .tutor-actions .action-button {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .tutor-actions .action-button span {
        gap: 6px;
    }
}
