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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    color: #334155;
}

/* Navigation Bar */
.navbar {
    background: #3b82f6;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Mobile Hamburger Menu */
.hamburger-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hamburger-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.navbar.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #3b82f6;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 0;
    display: block !important;
}

.navbar.mobile-menu.active {
    left: 0;
}

.navbar.mobile-menu .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1.5rem 1.5rem;
    gap: 0;
    max-width: none;
    margin: 0;
    overflow: visible;
    display: flex !important;
}

.navbar.mobile-menu .nav-item {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    min-height: auto;
    justify-content: flex-start;
    display: flex !important;
}

.navbar.mobile-menu .nav-item:last-child {
    border-bottom: none;
}

.navbar.mobile-menu .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    padding-left: 0.5rem;
}

/* Main Content */
.main-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Logo Section */
.logo-section {
    animation: fadeInUp 0.8s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Login Card */
.login-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 0.8s ease 0.2s both;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.login-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #94a3b8;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:active {
    transform: translateY(0);
}

.register-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.register-link:hover {
    color: #2563eb;
    transform: translateX(2px);
}

.register-btn {
    width: 100%;
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.register-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.register-btn:active {
    transform: translateY(0);
}

.portal-btn {
    width: 100%;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

.portal-btn:hover::before {
    left: 100%;
}

/* What is FIAPP Page Styles */
.what-is-content {
    background: #f1f5f9;
    min-height: 100vh;
    padding-top: 2rem;
}

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

.what-is-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

.what-is-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
}

.what-is-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.what-is-description {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.what-is-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.what-is-features li {
    color: #334155;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.what-is-features li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.what-is-summary {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.discover-btn {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discover-btn:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.discover-btn:active {
    transform: translateY(0);
}

/* Contact Information Section */
.contact-info-section {
    margin-top: 1rem;
    text-align: center;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.contact-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}

.contact-value {
    font-weight: 500;
    color: #3b82f6;
    font-size: 0.9rem;
    text-align: right;
}

/* FAQ Page Styles */
.faq-content {
    background: #f1f5f9;
    min-height: 100vh;
    padding-top: 2rem;
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Plans Page Styles */
.plans-content {
    background: #f1f5f9;
    min-height: 100vh;
    padding-top: 2rem;
}

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

.plans-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

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

.plan-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    text-align: center;
    position: relative;
}

.plan-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.plan-card-featured {
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.plan-daily-price {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    color: #334155;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1rem;
}

.plan-features li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.plan-button-default {
    background: #f1f5f9;
    color: #64748b;
}

.plan-button-default:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-1px);
}

.plan-button-featured {
    background: #3b82f6;
    color: white;
}

.plan-button-featured:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block !important;
    }
    
    .navbar:not(.mobile-menu) {
        display: none !important;
    }
    
    .main-content {
        padding-top: 4rem;
    }
    
    .faq-content,
    .plans-content,
    .what-is-content,
    .support-content {
        padding-top: 4rem;
    }
    
    .nav-container {
        gap: 0.8rem;
        justify-content: flex-start;
        padding: 0 1rem;
        overflow-x: auto;
    }
    
    .nav-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        min-width: max-content;
    }
    
    .main-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .login-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .login-btn, .register-btn, .portal-btn {
        padding: 1rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    /* FAQ Mobile Optimization */
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        min-height: 60px;
    }
    
    .faq-question span:first-child {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        min-width: 32px;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem;
        max-height: 400px;
    }
    
    /* Plans Mobile Optimization */
    .plans-container {
        padding: 0 1rem;
    }
    
    .plans-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-button {
        min-height: 48px;
        font-size: 0.95rem;
    }
    
    /* What is FIAPP Mobile */
    .what-is-container {
        padding: 0 1rem;
    }
    
    .what-is-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .what-is-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .discover-btn {
        min-height: 48px;
        width: 100%;
    }
    
    /* Support Mobile Optimization */
    .support-container {
        padding: 0 1rem;
    }
    
    .support-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    
    .nav-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        border-radius: 6px;
    }
    
    .main-content {
        padding: 1rem 0.75rem;
        gap: 1.25rem;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .login-card {
        padding: 1.5rem 1.25rem;
        margin: 0 0.25rem;
        border-radius: 16px;
    }
    
    .login-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .login-btn, .register-btn, .portal-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    /* FAQ Extra Small Mobile */
    .faq-container {
        padding: 0 0.75rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
        min-height: 56px;
    }
    
    .faq-question span:first-child {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-icon {
        font-size: 1.1rem;
        min-width: 28px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.875rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Plans Extra Small Mobile */
    .plans-container {
        padding: 0 0.75rem;
    }
    
    .plans-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .plan-card {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-price {
        font-size: 2.25rem;
    }
    
    .plan-button {
        min-height: 44px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* What is FIAPP Extra Small */
    .what-is-container {
        padding: 0 0.75rem;
    }
    
    .what-is-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .what-is-card {
        padding: 1.25rem;
        margin: 0;
        border-radius: 10px;
    }
    
    .what-is-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .what-is-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .what-is-summary {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
    
    .discover-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Support Extra Small Mobile */
    .support-container {
        padding: 0 0.75rem;
    }
    
    .support-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-item {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .footer-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    .login-btn:hover,
    .register-btn:hover,
    .portal-btn:hover {
        transform: none;
    }
    
    .plan-card:hover {
        transform: none;
    }
    
    .faq-item:hover {
        transform: none;
    }
    
    .what-is-card:hover {
        transform: none;
    }
    
    .contact-info-item:hover {
        transform: none;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .main-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .login-card {
        max-width: 450px;
        padding: 1.5rem;
    }
    
    .faq-container,
    .plans-container,
    .what-is-container,
    .support-container {
        padding: 0 1rem;
    }
}

/* Footer Text */
.footer-text {
    text-align: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.footer-text p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-text p a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-text p a:hover {
    color: #2563eb;
    text-decoration: underline;
}

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