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

:root {
    --primary-color: #468bdf;
    --primary-hover: #3a7bc8;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-blue: #468bdf;
    --border-color: #e5e7eb;
    --header-height: 72px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-white);
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo img {
    height: 26px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: space-between;
    margin-left: 60px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-link {
    font-size: 14px;
    color: #777a8c;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: color 0.2s;
    font-weight: 400;
    letter-spacing: 0;
}

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

.arrow-icon {
    width: 8px;
    height: 8px;
    transition: transform 0.2s;
    opacity: 0.5;
}

.nav-dropdown {
    position: relative;
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-primary);
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

/* Rich dropdown menu styles */
.dropdown-menu-rich {
    min-width: 280px;
}

.dropdown-menu-rich .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
}

.dropdown-menu-rich .dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-menu-rich .dropdown-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.dropdown-menu-rich .dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-menu-rich .dropdown-item strong {
    font-size: 15px;
    font-weight: 400;
    color: #43454f;
}

.dropdown-menu-rich .dropdown-item span {
    font-size: 13px;
    color: #777a8c;
    font-weight: 400;
}

.stock-link {
    position: relative;
}

.new-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 600;
}

.btn-primary {
    background: #468bdf;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #3a7bc8;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

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

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

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 1001;
    overflow-y: auto;
    padding: 20px;
}

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

/* 移动端导航顶部栏 */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mobile-nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.mobile-nav-lang .lang-icon {
    width: 20px;
    height: 20px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* 移动端导航按钮区 */
.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.mobile-nav-btn {
    display: block !important;
    padding: 16px 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    text-align: center !important;
    text-decoration: none !important;
    background: rgba(70, 139, 223, 0.1) !important;
    color: #468BDF !important;
    font-weight: 500 !important;
    border: none !important;
}

.mobile-nav-btn.primary {
    background: #468BDF !important;
    color: white !important;
}

/* 移动端导航菜单列表 */
.mobile-nav-menu {
    border-top: 1px solid var(--border-color);
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.mobile-menu-item .menu-title {
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-menu-item .menu-arrow {
    font-size: 14px;
    color: var(--text-secondary);
    transition: transform 0.3s;
    transform: rotate(90deg);
}

.mobile-menu-item.expanded .menu-arrow {
    transform: rotate(-90deg);
}

/* 子菜单 */
.mobile-submenu {
    display: none;
    padding-left: 16px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 14px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
}

.mobile-menu-item .new-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* 移动端导航邮箱订阅 */
.mobile-nav-subscribe {
    margin-top: 30px;
    padding-top: 20px;
}

.subscribe-input-wrap {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.subscribe-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
}

.subscribe-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
}

.subscribe-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px 24px;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.mobile-nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #43454f;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #43454f;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-nav-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: #468bdf;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
}

.mobile-nav-btn-outline {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: #f0f4fd;
    color: #468bdf;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
}

.mobile-nav-section {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: #43454f;
    margin-bottom: 12px;
}

.mobile-nav-section .mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    color: #777a8c;
}

/* Alert Banner */
.alert-banner {
    margin-top: var(--header-height);
    background: var(--bg-light);
    padding: 12px 24px;
}

.alert-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-icon {
    width: 16px;
    height: 16px;
}

.alert-link {
    font-size: 14px;
    color: var(--text-secondary);
}

.alert-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .alert-content {
        overflow: hidden;
    }
    .alert-link {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    padding: 80px 24px 60px;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 80px 60px;
    position: relative;
}

.hero-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #43454f;
}

.hero-subtitle {
    font-size: 21px;
    font-weight: 300;
    color: #777a8c;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-image {
    position: absolute;
    right: 60px;
    top: -8px;
    bottom: -10px;
    display: flex;
    align-items: center;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats-section {
    background: var(--bg-blue);
    padding: 60px 24px;
    color: white;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.stats-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 90px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    background: transparent;
}

.features-section .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    text-align: left;
    border-radius: 0;
}

.feature-card-alt {
    direction: rtl;
}

.feature-card-alt > * {
    direction: ltr;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-width: 320px;
    width: 100%;
}

.features-section .feature-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #191c1e;
}

.features-section .feature-desc {
    font-size: 21px;
    font-weight: 300;
    color: #777a8c;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.feature-stat-value {
    font-size: 32px;
    font-weight: 500;
    color: #468bdf;
}

.feature-stat-label {
    font-size: 17px;
    font-weight: 300;
    color: #777a8c;
}

.feature-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.feature-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-buy {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.price-label {
    color: var(--text-secondary);
}

.price-divider {
    color: var(--border-color);
}

.buy-link {
    color: var(--primary-color);
    font-weight: 500;
}

.buy-link:hover {
    text-decoration: underline;
}

/* Partners Section */
.partners-section {
    background: #f5f5f7;
    padding: 70px 24px;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    color: #191c1e;
}

.partners-grid {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    opacity: 0.5;
    margin-bottom: 20px;
}

.partner-link:hover {
    opacity: 1;
}

.partner-link img {
    width: 204px;
    height: 63px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 60px;
    max-width: 1168px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    color: #191c1e;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
}

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

.contact-title {
    font-size: 24px;
    font-weight: 400;
    color: #777a8c;
    display: block;
    margin-bottom: 8px;
}

.contact-link {
    font-size: 17px;
    font-weight: 400;
    color: #777a8c;
    display: block;
    margin-bottom: 12px;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-desc {
    font-size: 17px;
    font-weight: 300;
    color: #c4c9d9;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: #f6f8fb;
    padding: 0 24px;
    min-height: 200px;
}

.cta-container {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-title {
    font-size: 24px;
    font-weight: 400;
    color: #777a8c;
    margin-bottom: 24px;
}

.cta-btn {
    background: #468bdf;
    color: #fafcff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 8px;
    display: inline-block;
}

.cta-btn:hover {
    background: #3a7bc8;
}

.cta-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-image img {
    width: 456px;
    height: 200px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--bg-white);
    padding: 60px 24px 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 0;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--border-color);
}

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

.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-info a:hover {
    color: var(--primary-color);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.language-selector img {
    width: 16px;
    height: 16px;
}

.footer-subscribe {
    text-align: right;
}

.subscribe-form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.subscribe-form input {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    width: 200px;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.subscribe-form button {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.subscribe-form button:hover {
    background: var(--primary-hover);
}

.subscribe-form button img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer-subscribe p {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-disclaimer {
    background: var(--bg-light);
    padding: 20px 24px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card-alt {
        direction: ltr;
    }
    
    .feature-stats {
        justify-content: center;
    }
    
    .feature-buy {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-image {
        order: -1;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 20px 20px 40px;
        background: #fff;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        padding: 40px 20px !important;
        text-align: center !important;
    }
    
    .hero-content {
        order: 1 !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .hero-title {
        font-size: 24px !important;
        color: #468bdf !important;
        margin-bottom: 12px !important;
    }
    
    .hero-subtitle {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-image {
        order: 2 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-top: 20px !important;
    }
    
    .hero-image img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .features-section {
        padding: 40px 20px;
    }
    
    .features-section .feature-card {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 20px !important;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .features-section .feature-card.feature-card-alt {
        direction: ltr;
    }
    
    .features-section .feature-image {
        order: 1;
    }
    
    .features-section .feature-image img {
        max-width: 100%;
    }
    
    .features-section .feature-content {
        order: 2;
    }
    
    .features-section .feature-title {
        font-size: 24px !important;
        font-weight: 400;
        margin-bottom: 12px;
    }
    
    .features-section .feature-desc {
        font-size: 15px !important;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .features-section .feature-stats {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start;
        gap: 0;
    }
    
    .features-section .feature-stat {
        flex: 1;
    }
    
    .features-section .feature-stat-value {
        font-size: 28px;
    }
    
    .features-section .feature-stat-label {
        font-size: 14px;
    }
    
    .features-section .feature-stat-divider {
        width: 1px;
        height: 50px;
        margin: 0 20px;
        background: #e0e0e0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .partners-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important;
        justify-items: center;
    }
    
    .partner-link img {
        height: auto;
        max-height: 50px;
        max-width: 100%;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-section-title {
        text-align: left !important;
        font-size: 24px !important;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .contact-item {
        display: flex !important;
        flex-direction: row !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 16px;
    }
    
    .contact-icon {
        align-self: flex-start;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }
    
    .contact-info {
        text-align: left !important;
    }
    
    .contact-info .contact-title {
        font-size: 18px !important;
        text-align: left !important;
        display: block;
    }
    
    .contact-info .contact-link {
        font-size: 14px !important;
        text-align: left !important;
        display: block;
    }
    
    .contact-info .contact-desc {
        font-size: 13px !important;
        text-align: left !important;
    }
    
    .cta-section {
        display: none !important;
    }
    
    /* 移动端Footer：隐藏完整链接列表、社交图标、邮箱订阅 */
    .footer-links {
        display: none !important;
    }
    
    .footer-social {
        display: none !important;
    }
    
    .footer-subscribe {
        display: none !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px 0;
    }
    
    .footer-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
    }
    
    .footer-disclaimer {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form input {
        width: 160px;
    }
}

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

.hero-content,
.hero-image {
    animation: fadeInUp 0.6s ease-out;
}

/* Ensure visibility */
.stat-item,
.feature-card,
.contact-card,
.partner-link {
    opacity: 1 !important;
    transform: none !important;
}
