/* EPIC VPN - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* CSS Variables */
:root {
    --primary-color: #ff8c1a;
    --primary-light: #ffb347;
    --secondary-color: #232323;
    --dark-bg: #181818;
    --text-primary: #f0f0f0;
    --text-secondary: #e0a96d;
    --accent-gradient: linear-gradient(90deg, #ffb347 0%, #ff8c1a 100%);
    --bg-gradient: linear-gradient(135deg, #232323 0%, #181818 100%);
    --shadow-primary: 0 4px 24px rgba(255, 140, 26, 0.15);
    --shadow-secondary: 0 8px 40px rgba(0, 0, 0, 0.13);
    --border-radius: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-gradient);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.loading-logo i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 140, 26, 0.2);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Background Effects */
body::before,
body::after {
    content: '';
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

body::before {
    width: 700px;
    height: 700px;
    left: -250px;
    top: -200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    animation-delay: -10s;
}

body::after {
    width: 600px;
    height: 600px;
    right: -200px;
    bottom: -150px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 140, 26, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(24, 24, 24, 0.98);
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 2rem;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    opacity: 0.7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle.active {
    color: var(--primary-color);
}

.nav-links.mobile-hidden {
    display: flex;
}

.nav-links.mobile-open {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(24, 24, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 140, 26, 0.2);
    box-shadow: var(--shadow-primary);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    text-align: center;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    opacity: 0.8;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    opacity: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--dark-bg);
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 140, 26, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.25rem;
    border-radius: 60px;
}

.btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    min-width: 50px;
    opacity: 0.7;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    opacity: 1;
    transform: translateY(-1px);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle at 50% 30%, rgba(255, 140, 26, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.25; transform: translateX(-50%) scale(1.05); }
}

/* =========================
   HERO SECTION FIX
   ========================= */
   .hero-content {
    position: relative;
    z-index: 2; /* текст всегда выше иконок */
    text-align: center;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    word-wrap: break-word;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 4px 32px rgba(255, 140, 26, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 24px rgba(255, 140, 26, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.6rem;   /* уменьшаем заголовок */
        margin-top: 3.5rem;   /* опускаем чуть ниже */
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-floating {
        display: none; /* убираем плавающие иконки на мобильных */
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Floating Elements */
.hero-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* Features Section */
.features {
    padding: 8rem 2rem 6rem;
    background: var(--bg-gradient);
    position: relative;
    z-index: 1;
    margin-top: -2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5rem;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 4rem 2.5rem;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    transition: var(--transition);
    box-shadow: var(--shadow-secondary);
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 140, 26, 0.25);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 12px rgba(255, 140, 26, 0.2));
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    text-shadow: 0 2px 12px rgba(255, 140, 26, 0.1);
    line-height: 1.6;
}

/* Feature Hover Effect */
.feature-hover {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-secondary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    z-index: 1;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 24px 80px rgba(255, 140, 26, 0.3);
    border-color: var(--primary-color);
}

.plan-card:hover::before {
    opacity: 0.05;
}

.plan-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 16px 60px rgba(255, 140, 26, 0.2);
}

.plan-card.popular::before {
    content: "Самый популярный";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent-gradient);
    color: var(--dark-bg);
    font-size: 0.875rem;
    font-weight: 900;
    padding: 0.75rem;
    letter-spacing: 1px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    box-shadow: var(--shadow-primary);
    z-index: 10;
}

.plan-card.premium {
    border-color: var(--primary-color);
    box-shadow: 0 20px 80px rgba(255, 140, 26, 0.3);
    background: linear-gradient(135deg, var(--secondary-color) 40%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.plan-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.1;
    z-index: -1;
}

.plan-card.premium::after {
    content: "Premium";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: var(--dark-bg);
    font-size: 0.875rem;
    font-weight: 900;
    padding: 0.75rem;
    letter-spacing: 1px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

/* Фикс для Premium Year блока */
.plan-card.premium .plan-title {
    margin-top: 1.5em; /* опускаем текст заголовка ниже бейджа */
}

@media (max-width: 768px) {
    .plan-card.premium .plan-title {
        margin-top: 2em; /* на мобильных ещё больше отступ */
    }
}

.plan-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 2px 12px rgba(255, 140, 26, 0.2);
}

.plan-price span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-savings {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    text-shadow: 0 2px 8px rgba(255, 140, 26, 0.1);
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    color: var(--text-primary);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    opacity: 0.95;
    color: var(--text-secondary);
}

/* EPIC CASH Section */
.epic-cash {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.epic-cash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 26, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.epic-cash-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.epic-cash-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
   
}

.epic-cash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(255, 215, 0, 0.4)) drop-shadow(0 2px 10px rgba(192, 192, 192, 0.3));
}

.epic-cash h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.epic-cash p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* About Us Section */
.about-us {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 26, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.about-us-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-us h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.about-us p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 5rem 2rem 2.5rem;
    background: linear-gradient(90deg, var(--dark-bg) 60%, var(--secondary-color) 100%);
    color: var(--text-secondary);
    font-size: 1rem;
    border-top: 1.5px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3.5rem;
    border-bottom: 1.5px solid var(--secondary-color);
    padding-bottom: 2rem;
    text-align: center;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    text-align: center;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--primary-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Responsive Design - Enhanced Mobile Optimization */
/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .nav-content {
        padding: 0 1.5rem;
    }
    
    .features-grid {
        gap: 2rem;
    }
    
    .pricing-plans {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
}

/* Tablets Portrait */
@media (max-width: 900px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.25rem;
        line-height: 1.5;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .pricing-plans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .mission-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Tablets and Large Phones */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
    
    .nav-links.mobile-hidden {
        display: none;
    }
    
    .hero {
        padding: 0 1rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
    }
    
    .features {
        padding: 6rem 1rem 4rem;
    }
    
    .pricing {
        padding: 4rem 1rem;
    }
    
    .cta {
        padding: 4rem 1rem;
    }
    
    .about-us {
        padding: 4rem 1rem;
    }
    
    .about-us h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .about-us p {
        font-size: 1.125rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    /* FAQ Page */
    .faq-header {
        padding: 6rem 1rem 3rem;
        margin-top: 70px;
    }
    
    .faq-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .faq-content {
        padding: 3rem 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* About Page */
    .about-header {
        padding: 6rem 1rem 3rem;
        margin-top: 70px;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .mission-section,
    .values-section,
    .story-section,
    .team-section {
        padding: 4rem 1rem;
    }
    
    .mission-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Medium Phones */
@media (max-width: 600px) {
    .hero {
        padding: 0 1rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.125rem;
        min-height: 48px;
    }
    
    .feature-card {
        padding: 2.5rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* FAQ Page */
    .faq-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .faq-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .faq-cta h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* About Page */
    .about-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .mission-text h2,
    .story-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .values-section h2,
    .team-section h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .about-us h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .about-us p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero {
        padding: 0 0.75rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .feature-card {
        padding: 2rem 1.25rem;
        margin: 0 0.25rem;
    }
    
    .plan-card {
        padding: 1.75rem 1.25rem;
        margin: 0 0.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .features {
        padding: 5rem 0.75rem 3rem;
    }
    
    .pricing {
        padding: 3rem 0.75rem;
    }
    
    .cta {
        padding: 3rem 0.75rem;
    }
    
    .about-us {
        padding: 3rem 0.75rem;
    }
    
    .about-us h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .about-us p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .footer {
        padding: 2rem 0.75rem 1.5rem;
    }
    
    /* FAQ Page */
    .faq-header {
        padding: 5rem 0.75rem 2.5rem;
    }
    
    .faq-header h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .faq-content {
        padding: 2.5rem 0.75rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* About Page */
    .about-header {
        padding: 4rem 0.5rem 2rem;
    }
    
    .about-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .mission-section,
    .values-section,
    .story-section,
    .team-section {
        padding: 2.5rem 0.5rem;
    }
    
    .mission-icon {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .value-card {
        padding: 1.75rem 1rem;
    }
    
    .team-member {
        padding: 1.25rem 1rem;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero {
        padding: 0 0.5rem;
        min-height: 55vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-height: 40px;
        max-width: 260px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .feature-card {
        padding: 1.75rem 1rem;
        margin: 0 0.125rem;
    }
    
    .plan-card {
        padding: 1.5rem 1rem;
        margin: 0 0.125rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .features {
        padding: 4rem 0.5rem 2.5rem;
    }
    
    .pricing {
        padding: 2.5rem 0.5rem;
    }
    
    .cta {
        padding: 2.5rem 0.5rem;
    }
    
    .footer {
        padding: 1.5rem 0.5rem 1rem;
    }
    
    /* FAQ Page */
    .faq-header {
        padding: 4rem 0.5rem 2rem;
    }
    
    .faq-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .faq-content {
        padding: 2rem 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* About Page */
    .about-header {
        padding: 4rem 0.5rem 2rem;
    }
    
    .about-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .mission-section,
    .values-section,
    .story-section,
    .team-section {
        padding: 2.5rem 0.5rem;
    }
    
    .mission-icon {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .value-card {
        padding: 1.75rem 1rem;
    }
    
    .team-member {
        padding: 1.25rem 1rem;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Landscape Orientation for Small Phones */
@media (max-width: 600px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-btns {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-btns .btn {
        width: auto;
        max-width: none;
    }
    
    .features {
        padding: 4rem 1rem 2rem;
    }
    
    .pricing {
        padding: 2rem 1rem;
    }
    
    .cta {
        padding: 2rem 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn,
    .feature-card,
    .plan-card {
        border-width: 0.5px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f0f0f0;
        --text-secondary: #e0a96d;
        --dark-bg: #0a0a0a;
        --secondary-color: #1a1a1a;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* FAQ Page Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    padding: 8rem 2rem 4rem;
    background: var(--bg-gradient);
    text-align: center;
    margin-top: 80px;
}

.faq-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 140, 26, 0.05);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 140, 26, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    padding: 0 2rem 1rem 4rem;
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-color);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--primary-light);
}

.faq-cta {
    padding: 4rem 2rem;
    background: var(--bg-gradient);
    text-align: center;
}

.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Responsive - Now handled in main responsive system */

/* About Page Styles */
.about-header {
    padding: 8rem 2rem 4rem;
    background: var(--bg-gradient);
    text-align: center;
    margin-top: 80px;
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.mission-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-icon {
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--dark-bg);
    box-shadow: var(--shadow-primary);
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.values-section > .container > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.story-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.story-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    text-align: center;
}

.team-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-section > .container > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.team-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--dark-bg);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

.stats-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(255, 140, 26, 0.2);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-cta {
    padding: 4rem 2rem;
    background: var(--bg-gradient);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Responsive */

/* Mobile-First Enhancements */
/* Prevent text overflow and improve readability */
.hero h1,
.hero p,
.section-title,
.section-subtitle,
.feature-card h3,
.feature-card p,
.plan-card h3,
.plan-card p,
.faq-question h3,
.faq-answer p,
.faq-answer li,
.about-header h1,
.about-header p,
.mission-text h2,
.mission-text p,
.values-section h2,
.values-section > .container > p,
.value-card h3,
.value-card p,
.story-text h2,
.story-text p,
.team-section h2,
.team-section > .container > p,
.team-member h3,
.team-member p,
.stats-section h2,
.about-cta h2,
.about-cta p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Touch-friendly buttons and interactive elements */
.btn,
.btn-large,
.feature-card,
.plan-card,
.faq-question,
.nav-links a,
.footer a {
    min-height: 44px; /* iOS recommended minimum */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Improve spacing for mobile */
.feature-card,
.plan-card,
.faq-item,
.value-card,
.team-member {
    margin-bottom: 1rem;
}

/* Better grid layouts for mobile */
.features-grid,
.pricing-plans,
.values-grid,
.team-grid,
.stats-grid {
    gap: 1rem;
}

/* Improved mobile navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile menu improvements */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.mobile-open {
        transform: translateY(0);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        opacity: 1;
        background: rgba(255, 140, 26, 0.1);
        color: var(--primary-color);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Improve form elements on mobile */
input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
}

/* Better image handling on mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Improve card shadows and borders on mobile */
.feature-card,
.plan-card,
.value-card,
.team-member {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Better spacing for mobile lists */
ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Improve mobile typography */
p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Better mobile spacing */
.container {
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
}

/* Improve mobile performance */
.feature-card,
.plan-card,
.value-card,
.team-member {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Better mobile animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card:hover,
    .plan-card:hover,
    .value-card:hover,
    .team-member:hover {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
    }
}

/* Mobile-specific improvements for FAQ */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

/* Mobile improvements for pricing cards */
.plan-card {
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

/* Mobile improvements for team cards */
.team-member {
    text-align: center;
}

.member-avatar {
    margin: 0 auto 1rem;
}

/* Mobile improvements for stats */
.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile improvements for CTA sections */
.cta,
.about-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile improvements for footer */
.footer-content {
    text-align: center;
}

.footer-content > div {
    margin-bottom: 2rem;
}

/* Mobile improvements for language switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.language-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.language-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* Mobile improvements for floating elements */
.hero-floating {
    display: none;
}

@media (min-width: 769px) {
    .hero-floating {
        display: block;
    }
}

/* Mobile improvements for loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    padding: 2rem;
}

.loading-logo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
}

@media (max-width: 480px) {
    .loading-logo {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .loading-spinner {
        width: 30px;
        height: 30px;
    }
}

/* Mobile improvements for scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile improvements for smooth scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .fade-in {
        transition: none;
    }
}

/* Mobile improvements for focus states */
.btn:focus,
.feature-card:focus,
.plan-card:focus,
.faq-question:focus,
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile improvements for selection */
::selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* Mobile improvements for scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Mobile improvements for print */
@media print {
    .navbar,
    .hero-btns,
    .cta,
    .footer,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero,
    .features,
    .pricing {
        padding: 1rem 0;
    }
    
    .feature-card,
    .plan-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* Logo responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 0.7rem;
    }
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

@media (max-width: 600px) {
    .nav-actions .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-height: 32px;
    }
}

@media (max-width: 480px) {
    .nav-actions .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-height: 30px;
    }
}

@media (max-width: 360px) {
    .nav-actions .btn {
        padding: 4px 8px;
        font-size: 0.65rem;
        min-height: 28px;
    }
}




 
/* EPIC logo fix */
.epic-cash-container {display:flex;justify-content:center;align-items:center;text-align:center;padding:40px 20px;}
.epic-cash-logo {max-width:200px;height:auto;}
