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

body {
    font-family: 'Noto Sans JP', 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #333;
    background-color: #FCFCFC;
}

/* FOOTER FIX - Critical Layout Styles */
#Wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #FCFCFC;
}

#Content {
    flex: 1;
    margin-top: 80px;
    padding: 40px 0;
    background-color: #FCFCFC;
}

/* Dashboard page specific content styling - DARKER GRADIENT */
.dashboard-page #Content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: auto;
    padding: 0;
}

#Footer {
    background-color: #222;
    color: #fff;
    flex-shrink: 0;
    margin-top: auto;
}

/* Enhanced Logo Styling */
.logo {
    display: flex;
    align-items: center;
    max-width: 150px;
    transition: all 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: translateY(-1px);
}

.logo img {
    width: 80px;
    height: auto;
    background: transparent;
    max-width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 120, 255, 0.15));
}

.logo img:hover {
    filter: drop-shadow(0 3px 12px rgba(0, 120, 255, 0.25)) brightness(1.05);
    transform: scale(1.01);
}

.logo-text {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0078ff;
    font-family: 'Roboto Slab', serif;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #005bb9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Slab', serif;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    line-height: 52px;
}

h2 {
    font-size: 36px;
    line-height: 46px;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

h4 {
    font-size: 20px;
    line-height: 28px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #0078ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #005bb9;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #222;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0078ff;
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #0078ff;
    color: #fff;
    border: 2px solid #0078ff;
}

.primary-btn:hover {
    background-color: #005bb9;
    border-color: #005bb9;
    color: #fff;
}

.secondary-btn {
    background-color: transparent;
    color: #0078ff;
    border: 2px solid #0078ff;
}

.secondary-btn:hover {
    background-color: #0078ff;
    color: #fff;
}

/* COMPACT HEADER STYLES */
#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 34, 45, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 120, 255, 0.1);
}

.header-wrapper {
    padding: 8px 0;
}

.header-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 0 20px;
}

#menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

#menu ul li {
    margin-left: 0;
}

#menu ul li a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
}

#menu ul li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

#menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0078ff, #00c6ff);
    transition: width 0.3s ease;
}

#menu ul li a:hover::after,
#menu ul li a.active::after {
    width: 100%;
}

.login-button a, .signup-button a {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

.login-button a {
    color: #0078ff;
    border: 2px solid #0078ff;
    background: transparent;
}

.login-button a:hover {
    background-color: #0078ff;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 255, 0.3);
}

.signup-button a {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 120, 255, 0.2);
}

.signup-button a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.4);
    background: linear-gradient(135deg, #005bb9 0%, #0099cc 100%);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    color: #222;
    margin-bottom: 20px;
}

.hero-content p {
    color: #666;
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

/* Features Section */
#features {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    color: #222;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
}

/* Pricing Section */
#pricing {
    background-color: #f5f7fa;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.card-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
}

.premium .card-header {
    background-color: #0078ff;
    color: #fff;
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
}

.card-content {
    padding: 30px;
}

.card-content ul {
    margin-bottom: 30px;
}

.card-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.card-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0078ff;
}

.card-content ul li.not-included {
    color: #999;
}

.card-content ul li.not-included:before {
    content: '✕';
    color: #999;
}

.card-content .btn {
    width: 100%;
}

/* Testimonials Section */
#testimonials {
    background-color: #fff;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    min-width: 350px;
    flex: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    margin-bottom: 0;
}

/* FAQ Section */
#faq {
    background-color: #f5f7fa;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.toggle-icon {
    font-size: 24px;
    font-weight: 700;
    color: #0078ff;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

#cta .primary-btn {
    background-color: #fff;
    color: #0078ff;
    border-color: #fff;
}

#cta .primary-btn:hover {
    background-color: transparent;
    color: #fff;
}

#cta .secondary-btn {
    border-color: #fff;
    color: #fff;
}

#cta .secondary-btn:hover {
    background-color: #fff;
    color: #0078ff;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-btn {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    min-width: 120px !important;
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(0, 120, 255, 0.5) !important;
    transform: translateY(-1px) !important;
}

.profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    flex-shrink: 0;
}

.profile-name {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    text-align: left;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.profile-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    width: 260px;
    background: #242c38;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.profile-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Header */
.dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-badge {
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.premium {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.status-badge.free {
    background: rgba(108, 117, 125, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* Dropdown Items */
.dropdown-items {
    padding: 6px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(3px);
}

.item-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.item-text {
    flex: 1;
    font-weight: 500;
}

.item-badge {
    background: #0078ff;
    color: #fff;
    padding: 2px 5px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Special Item Styles */
.upgrade-item {
    background: rgba(0, 120, 255, 0.1);
    border: 1px solid rgba(0, 120, 255, 0.3);
}

.upgrade-item:hover {
    background: rgba(0, 120, 255, 0.2);
    border-color: rgba(0, 120, 255, 0.5);
}

.logout-item:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 14px;
}

/* NAVIGATION WITH SELECTIVE PERMANENT HIGHLIGHTS */
#menu ul li a {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

#menu ul li a.active {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

#menu ul li a:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
}

/* PERMANENT HIGHLIGHT: Free button (dashboard link) */
#menu ul li a[href="/dashboard"] {
    background-color: rgba(0, 120, 255, 0.15) !important;
    border: 1px solid rgba(0, 120, 255, 0.3) !important;
    color: #00c6ff !important;
    font-weight: 600 !important;
}

#menu ul li a[href="/dashboard"]:hover {
    background-color: rgba(0, 120, 255, 0.25) !important;
    border-color: rgba(0, 120, 255, 0.5) !important;
    color: #fff !important;
}

/* Login button - subtle styling */
.login-button a {
    border: 1px solid rgba(0, 120, 255, 0.4) !important;
    background: transparent !important;
    color: rgba(0, 120, 255, 0.9) !important;
    font-weight: 500 !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
}

.login-button a:hover {
    background-color: rgba(0, 120, 255, 0.1) !important;
    border-color: #0078ff !important;
    color: #0078ff !important;
}

/* PERMANENT HIGHLIGHT: Sign Up button */
.signup-button a {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    box-shadow: 0 2px 6px rgba(0, 120, 255, 0.3) !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
}

.signup-button a:hover {
    background: linear-gradient(135deg, #005bb9 0%, #0099cc 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 120, 255, 0.4) !important;
}

/* Footer */
.widgets_wrapper {
    padding: 70px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #0078ff;
}

.footer-column p {
    color: #aaa;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #0078ff;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0078ff;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.newsletter h4 {
    margin-top: 30px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter button {
    background-color: #0078ff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #005bb9;
}

.copyright {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    color: #aaa;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-wrapper .container {
        padding: 0 15px !important;
    }
    
    #menu ul {
        gap: 10px !important;
    }
    
    #menu ul li a {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 768px) {
    #Content {
        margin-top: 70px;
        padding: 20px 0;
    }
    
    .dashboard-page #Content {
        margin-top: 70px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 36px;
        line-height: 46px;
    }
    
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
    
    #menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    #hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .logo img {
        width: 60px;
    }
    
    .logo-text {
        font-size: 14px;
        margin-left: 6px;
    }
    
    .header-wrapper {
        padding: 6px 0;
    }
    
    .dropdown-menu {
        width: 240px;
        right: -15px;
    }
    
    .profile-name {
        display: none;
    }
    
    .profile-btn {
        min-width: auto !important;
        padding: 6px !important;
    }
    
    .dropdown-header {
        padding: 14px;
    }
    
    .user-name {
        font-size: 14px;
    }
    
    .user-email {
        font-size: 11px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    #menu ul {
        gap: 8px !important;
    }
    
    #menu ul li a {
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
    
    .login-button a,
    .signup-button a {
        padding: 5px 10px !important;
        font-size: 11px !important;
    }
}

/* popup-animations.css or add to your existing CSS */

.modal, .popup {
    animation: fadeIn 0.2s ease-out;
}

.modal.closing, .popup.closing {
    animation: fadeOut 0.2s ease-out;
}

.modal.hidden, .popup.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .logo img {
        width: 50px;
    }
    
    .logo-text {
        display: none;
    }
    
    .dropdown-menu {
        width: 220px;
        right: -25px;
    }
}
/* Pricing Cards Container - Centered Layout */
.pricing-cards.two-plans {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Individual Pricing Card */
.pricing-cards .pricing-card {
    flex: 0 1 400px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-cards .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Featured Card Styling */
.pricing-cards .pricing-card.featured {
    border: 2px solid #007bff;
    position: relative;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Card Header */
.pricing-card .card-header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-card .card-header h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.pricing-card .price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 15px 0;
}

.pricing-card .price .currency {
    font-size: 20px;
    margin-right: 2px;
}

.pricing-card .price .amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card .price .period {
    font-size: 16px;
    color: #666;
    align-self: flex-end;
    margin-left: 2px;
    margin-bottom: 8px;
}

.billing-info {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Card Features */
.card-features ul {
    list-style: none;
    padding: 20px 0;
}

.card-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.card-features .check,
.card-features .cross {
    margin-right: 10px;
    font-weight: bold;
}

.card-features .check {
    color: #28a745;
}

.card-features .cross {
    color: #dc3545;
}

/* Subscribe Button */
.subscribe-btn {
    width: 100%;
    padding: 12px 30px;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #007bff;
    color: white;
}

.subscribe-btn.featured-btn {
    background: #007bff;
    color: white;
}

.subscribe-btn.featured-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cards.two-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-cards .pricing-card {
        max-width: 100%;
    }
}


/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    #Header {
        background: rgba(34, 34, 34, 0.95);
    }
    
    .logo-text {
        color: #00c6ff;
    }
    
    #menu ul li a {
        color: #fff;
    }
}