/* === CSS VARIABLES === */
:root {
    --primary: #5061ff;
    --secondary: #ada5db;
    --dark: #1c1a27;
    --accent: #6bbaa3;
    --white: #ffffff;
    --primary-hover: #4050dd;
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1400px;
}

/* === RESET & BASE === */
.homepage * { margin: 0; padding: 0; box-sizing: border-box; }

.homepage {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fafafa;
}

.homepage img { max-width: 100%; height: auto; }
.homepage a { text-decoration: none; color: inherit; }

/* === UTILITY CLASSES === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* === TYPOGRAPHY === */
.h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.h2 { font-size: clamp(32px, 4vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
.subtitle { font-size: clamp(18px, 2.5vw, 22px); font-weight: 400; opacity: 0.9; margin-bottom: 32px; line-height: 1.6; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; border-radius: var(--border-radius);
    font-size: 17px; font-weight: 600; border: none; cursor: pointer;
    transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white) !important; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(80, 97, 255, 0.3); }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: var(--white); box-shadow: 0 8px 16px rgba(107, 186, 163, 0.3); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); background: var(--white); color: var(--primary); }
.section-gradient .btn-white { background: var(--white); color: var(--primary); border: 2px solid var(--white); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.section-gradient .btn-white:hover { background: rgba(255, 255, 255, 0.95); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); }
.cta-group { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* === NAVBAR === */
.navbar { width: 100%; background: var(--white); position: fixed; top: 0; left: 0; z-index: 9999; box-shadow: 0 2px 10px rgba(80,97,255,0.07); isolation: isolate;}
.navbar-container { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 70px; position: relative; }
.navbar-logo { font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: -1px; display: flex; align-items: center; }
.navbar-mobile-actions { display: none; align-items: center; gap: 8px; }
.navbar-login-mobile { display: none; }
.navbar-menu { list-style: none; display: flex; gap: 36px; align-items: center; margin: 0; }
.navbar-menu li a { color: var(--dark); font-weight: 500; font-size: 16px; transition: color .2s;}
.navbar-menu li a:hover, .navbar-menu li a:focus { color: var(--primary);}
.navbar-login-btn { border:1.5px solid var(--primary); padding:7px 20px; border-radius:8px; color:var(--primary); background: none; font-weight: 600; transition: var(--transition);}
.navbar-menu li a.navbar-login-btn:hover {background: var(--primary) !important; color: var(--white) !important;}
.navbar-download-btn { display: none; border:1.5px solid var(--primary); padding:7px 20px; border-radius:8px; color:var(--primary) !important; background: none; font-weight: 600; transition: var(--transition);}
.navbar-menu li a.navbar-download-btn:hover {background: var(--primary) !important; color: var(--white) !important;}
.navbar-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--primary); cursor: pointer;}

/* === HERO SECTION === */
.hero {
    background: 
        radial-gradient(at 18% 99%, #1c1a27 0px, transparent 50%),
        radial-gradient(at 97% 14%, #1a1825 0px, transparent 50%),
        radial-gradient(at 80% 100%, #2a2638 0px, transparent 50%),
        radial-gradient(at 0% 0%, #1c1a27 0px, transparent 50%),
        radial-gradient(at 40% 50%, #5061ff44 0px, transparent 50%),
        radial-gradient(at 80% 50%, #6bbaa333 0px, transparent 50%),
        linear-gradient(135deg, #0f0e1a 0%, #1c1a27 100%);
    background-size: 200% 200%;
    animation: ambient-move 20s ease-in-out infinite alternate;
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 1;
    margin-top: 70px;
}

@keyframes ambient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-grid {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.hero-intro {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-main-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-side {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-side-inner {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.hero-side-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(99, 102, 241, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.hero-musician .hero-side-glow {
    background: radial-gradient(
        circle at center,
        rgba(107, 186, 163, 0.15) 0%,
        transparent 70%
    );
}

.hero-side:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-side:hover .hero-side-glow {
    opacity: 1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-orchestra:hover {
    border-color: var(--primary);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.3),
        0 0 0 1px var(--primary) inset;
}

.hero-musician:hover {
    border-color: var(--accent);
    box-shadow: 
        0 20px 60px rgba(107, 186, 163, 0.3),
        0 0 0 1px var(--accent) inset;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), #667eea);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: slideInLeft 0.6s ease-out;
}

.hero-badge-musician {
    background: linear-gradient(135deg, var(--accent), #8ed4bc);
    box-shadow: 0 4px 15px rgba(107, 186, 163, 0.4);
    animation: slideInRight 0.6s ease-out;
}

.hero-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero-icon-large i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.hero-musician .hero-icon-large {
    background: linear-gradient(135deg, rgba(107, 186, 163, 0.1), rgba(107, 186, 163, 0.05));
    border-color: rgba(107, 186, 163, 0.2);
}

.hero-musician .hero-icon-large i {
    color: var(--accent);
}

.hero-side:hover .hero-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.hero-side:hover .hero-icon-large i {
    transform: scale(1.1);
}

.hero-side-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-side-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.hero-benefits li:hover {
    padding-left: 0.5rem;
    color: white;
}

.hero-benefits li:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #8ed4bc);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-orchestra .benefit-icon {
    background: linear-gradient(135deg, var(--primary), #667eea);
}

.benefit-icon i {
    color: white;
    font-size: 0.75rem;
}

.hero-benefits li:hover .benefit-icon {
    transform: scale(1.15) rotate(360deg);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-side .hero-btn {
    width: 100%;
    justify-content: center;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn span {
    position: relative;
    z-index: 1;
}

.hero-btn i {
    position: relative;
    z-index: 1;
}

.hero-btn i:last-child {
    transition: transform 0.3s ease;
}

.hero-btn:hover i:last-child {
    transform: translateX(5px);
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px -5px rgba(80, 97, 255, 0.5);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -5px rgba(80, 97, 255, 0.6);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -5px rgba(107, 186, 163, 0.4);
    color: var(--white);
}

.hero-side-trust {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-orchestra .trust-item i {
    color: var(--primary);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-scroll:hover { opacity: 1; }

@keyframes scroll-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.hero-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.hero-floating-icon {
    position: absolute;
    font-size: 48px;
    opacity: 0.06;
    animation: icon-float 12s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.hero-floating-icon:nth-child(2) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-floating-icon:nth-child(3) { top: 25%; right: 12%; animation-delay: -4s; font-size: 36px;}
.hero-floating-icon:nth-child(4) { bottom: 25%; left: 12%; animation-delay: -8s; }
.hero-floating-icon:nth-child(5) { bottom: 35%; right: 8%; animation-delay: -12s; font-size: 40px;}

@keyframes icon-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, -20px) rotate(15deg); }
}

/* === SECTIONS === */
.section { padding: 80px 0; position: relative; z-index: 2; background-color: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--white); }
.section-gradient { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); }
.section-subtle { background: linear-gradient(180deg, rgba(173, 165, 219, 0.08), rgba(255, 255, 255, 1)); }

/* === FEATURES & VIDEO === */
.features-container { overflow-x: auto; padding-bottom: 16px; margin-bottom: 32px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--primary) var(--secondary); }
.features-container::-webkit-scrollbar { height: 6px; }
.features-container::-webkit-scrollbar-track { background: rgba(173, 165, 219, 0.2); border-radius: 10px; }
.features-container::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.features-row { display: flex; gap: 24px; min-width: min-content; }
.feature-card { background: var(--white); border: 1px solid var(--secondary); border-radius: var(--border-radius-lg); padding: 32px; transition: var(--transition); min-width: 280px; max-width: 320px; flex: 1; }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); margin-bottom: 20px; }
.feature-title { font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.feature-text { color: var(--dark); opacity: 0.85; line-height: 1.6; font-size: 15px; }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 48px auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === PRICING === */
.pricing-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; border-bottom: 1px solid rgba(173, 165, 219, 0.2); padding-bottom: 0; }
.pricing-tab { padding: 16px 32px; cursor: pointer; border-bottom: 3px solid transparent; font-weight: 600; font-size: 17px; transition: var(--transition); color: var(--dark); opacity: 0.5; }
.pricing-tab.active { border-bottom-color: var(--primary); color: var(--primary); opacity: 1; }
.pricing-tab:hover { opacity: 1; }
.pricing-period-menu { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; background: rgba(173, 165, 219, 0.08); padding: 8px; border-radius: 12px; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-period-btn { padding: 12px 32px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 15px; transition: var(--transition); color: var(--dark); opacity: 0.6; background: transparent; border: none; }
.pricing-period-btn.active { background: var(--primary); color: var(--white); opacity: 1; box-shadow: 0 4px 12px rgba(80, 97, 255, 0.3); }
.pricing-period-btn:hover { opacity: 1; }
.pricing-content-section { display: none; }
.pricing-content-section.active { display: block; }
.pricing-cards-wrapper { display: flex; justify-content: center; gap: 28px; max-width: 1300px; margin: 0 auto; flex-wrap: wrap; }
.pricing-plan-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; position: relative; width: 100%; max-width: 280px; transition: var(--transition); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; }
.pricing-plan-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }

.pricing-plan-card.plus {
    border: 2px solid var(--accent);
    transform: scale(1.02);
    z-index: 1;
}
.pricing-plan-card.plus:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-top-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; z-index: 2; }
.pricing-card-header { padding: 48px 32px 32px 32px; text-align: center; background: linear-gradient(180deg, rgba(173, 165, 219, 0.03), transparent); }
.pricing-plan-card.plus .pricing-card-header { background: linear-gradient(180deg, rgba(107, 186, 163, 0.08), transparent); }
.pricing-plan-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-amount { font-size: 52px; font-weight: 800; line-height: 1; color: var(--dark); margin-bottom: 8px; }
.pricing-plan-card.free .pricing-amount { color: #6b7280; }
.pricing-plan-card.basic .pricing-amount { color: var(--secondary); }
.pricing-plan-card.plus .pricing-amount { color: var(--accent); }
.pricing-plan-card.pro .pricing-amount { color: var(--primary); }
.pricing-period-label { font-size: 14px; color: var(--dark); opacity: 0.6; font-weight: 500; }
.pricing-features-list { padding: 0 32px 32px 32px; flex-grow: 1; }
.pricing-feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 14px; line-height: 1.5; }
.pricing-feature-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.pricing-feature-icon.included { color: var(--accent); }
.pricing-feature-icon.excluded { color: #e5e7eb; }
.pricing-feature-text { color: var(--dark); }
.pricing-feature-item.excluded .pricing-feature-text { opacity: 0.4; }
.pricing-card-cta { padding: 0 32px 32px 32px; }
.pricing-cta-btn { width: 100%; padding: 16px; border-radius: 10px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-plan-card.free .pricing-cta-btn { background: #f3f4f6; color: #6b7280; border: 2px solid #e5e7eb; }
.pricing-plan-card.free .pricing-cta-btn:hover { background: #e5e7eb; transform: translateY(-2px); }
.pricing-plan-card.basic .pricing-cta-btn { background: linear-gradient(135deg, var(--secondary), #9088c9); color: var(--white); }
.pricing-plan-card.basic .pricing-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(173, 165, 219, 0.4); }
.pricing-plan-card.plus .pricing-cta-btn { background: linear-gradient(135deg, var(--accent), #5aa089); color: var(--white); box-shadow: 0 4px 12px rgba(107, 186, 163, 0.3); }
.pricing-plan-card.plus .pricing-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107, 186, 163, 0.4); }
.pricing-plan-card.pro .pricing-cta-btn { background: linear-gradient(135deg, var(--primary), #4050dd); color: var(--white); }
.pricing-plan-card.pro .pricing-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(80, 97, 255, 0.4); }

/* === FOOTER === */
.footer { background: var(--dark); color: var(--white); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 320px; }
.footer-logo { 
    font-size: 26px; 
    font-weight: 800; 
    margin-bottom: 16px; 
    color: var(--primary);
}
.footer-tagline { opacity: 0.75; margin-bottom: 24px; line-height: 1.6; font-size: 15px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; background: rgba(80, 97, 255, 0.1); color: var(--primary); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-section h4 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { opacity: 0.75; transition: var(--transition); font-size: 15px; }
.footer-links a:hover { opacity: 1; color: var(--primary); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; opacity: 0.65; }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.scroll-hint { text-align: center; margin-top: 16px; font-size: 14px; opacity: 0.6; display: none; }

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .pricing-cards-wrapper { max-width: 900px; }
    .pricing-plan-card { max-width: 260px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) { 
    .scroll-hint { display: block; } 
}

@media (max-width: 900px) { 
    .navbar-menu { gap:18px; } 
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 60px 0; }
    .hero { padding: 120px 0 80px; min-height: auto; margin-top: 70px; }
    .hero-main-title {
        font-size: 2rem;
    }
    .hero-main-subtitle {
        font-size: 1.125rem;
    }
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-side:hover {
        transform: translateY(-5px) scale(1.01);
    }
    .hero-intro {
        margin-bottom: 3rem;
    }
    .hero-side-inner {
        padding: 2rem;
    }
    .hero-side-title {
        font-size: 1.75rem;
    }
    .hero-icon-large {
        width: 60px;
        height: 60px;
    }
    .hero-icon-large i {
        font-size: 2rem;
    }
    .hero-benefits li {
        font-size: 0.9375rem;
    }
    .hero-side-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-scroll, .hero-floating-icon { display: none; }
    .pricing-cards-wrapper { flex-direction: column; align-items: center; }
    .pricing-plan-card { max-width: 100%; transform: none !important; }
    .pricing-period-menu { flex-direction: column; width: 100%; }
    .pricing-period-btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    .navbar-container {padding:0 12px;}
    .navbar-menu { 
      position: absolute; top:100%; left:0; width:100%; background: var(--white); flex-direction: column; align-items: flex-start; padding:28px 0 12px 24px; gap: 28px;
      box-shadow:0 10px 35px rgba(0,0,0,0.07); transition: .3s; transform: translateY(-100%); pointer-events: none; opacity: 0; z-index: -1;
    }
    .navbar-menu.active { transform: translateY(0); pointer-events: auto; opacity: 1; }
    .navbar-menu .navbar-login-btn { display: none; }
    .navbar-login-mobile { 
      display: block; 
      border: 1.5px solid var(--primary); 
      padding: 7px 20px; 
      border-radius: 8px; 
      color: var(--primary); 
      background: none; 
      font-weight: 600; 
      font-size: 16px;
      transition: var(--transition);
      text-decoration: none;
      margin-right: 8px;
    }
    .navbar-login-mobile:hover {
      background: var(--primary);
      color: var(--white);
    }
    .navbar-mobile-actions { display: flex; margin-right: 12px; }
    .navbar-toggle { display:block; }
    .navbar-download-btn { display: block; margin-top: -28px; }
}
