@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #050505;
    --surface-color: #0f0f0f;
    --surface-hover: #1a1a1a;
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #ec4899;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 25% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 150% 150%, 150% 150%, 40px 40px, 40px 40px;
    background-attachment: fixed;
    animation: move-background 30s ease-in-out infinite;
}

@keyframes move-background {
    0% {
        background-position: 0% 50%, 100% 50%, 0 0, 0 0;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 0 0, 0 0;
    }
    100% {
        background-position: 0% 50%, 100% 50%, 0 0, 0 0;
    }
}

/* --- Menu Section --- */
.menu {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.sticky {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 14px 5%;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo img {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

.menu-links {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-links li {
    position: relative;
}

.menu-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    position: relative;
}

.menu-links a i {
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.menu-links a:hover,
.menu-links a.active-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.menu-links a:hover i,
.menu-links a.active-link i {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.login-btn {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(139, 92, 246, 0.7) 100%) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.85) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5) !important;
}

.login-btn i {
    color: #fff !important;
    opacity: 1 !important;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger.active i::before {
    content: '\f00d';
}

/* --- Hero Section --- */
.container {
    display: flex;
    align-items: center;
    padding: 180px 5% 100px;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.left-side {
    flex: 1;
    z-index: 2;
}

.header-logo-main {
    width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
    display: none;
}

.left-side h1 {
    font-size: 84px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.tier-part {
    color: var(--text-main);
}

.pod-part {
    background: linear-gradient(90deg, #6366f1, #d946ef);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-side .subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 540px;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.75) 0%, rgba(139, 92, 246, 0.75) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.subscribe-button:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35);
    border-color: rgba(99, 102, 241, 0.5);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-badge i {
    color: #ec4899;
}



.secondary-button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px; /* Add some space between buttons */
}

.secondary-button:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35);
    border-color: var(--primary-color);
}



.right-side {
    flex: 1;
    position: relative;
}

.right-side iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.right-side::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    z-index: 1;
    opacity: 0.5;
}

/* --- Generic Section Styling --- */
section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
    letter-spacing: -1px;
}

section h2 span {
    color: var(--primary-color);
}

/* --- Features Section --- */
.features-section {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.feature-card:hover::before {
    left: 150%;
}

.feature-card i {
    font-size: 32px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Unique styling for each card */
.feature-card-1 {
    box-shadow: inset 0 0 40px rgba(255, 152, 0, 0.1);
}

.feature-card-1:hover {
    box-shadow: inset 0 0 50px rgba(255, 152, 0, 0.15), 0 10px 40px -10px rgba(255, 152, 0, 0.3);
    border-color: rgba(255, 152, 0, 0.5);
}

.feature-card-1 i {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 193, 7, 0.2) 100%);
    color: #ff9800;
}

.feature-card-1:hover i {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3) 0%, rgba(255, 193, 7, 0.3) 100%);
    transform: scale(1.1);
}

.feature-card-2 {
    box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.1);
}

.feature-card-2:hover {
    box-shadow: inset 0 0 50px rgba(99, 102, 241, 0.15), 0 10px 40px -10px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.feature-card-2 i {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #6366f1;
}

.feature-card-2:hover i {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    transform: scale(1.1);
}

.feature-card-3 {
    box-shadow: inset 0 0 40px rgba(236, 72, 153, 0.1);
}

.feature-card-3:hover {
    box-shadow: inset 0 0 50px rgba(236, 72, 153, 0.15), 0 10px 40px -10px rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.5);
}

.feature-card-3 i {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(219, 39, 119, 0.2) 100%);
    color: #ec4899;
}

.feature-card-3:hover i {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(219, 39, 119, 0.3) 100%);
    transform: scale(1.1);
}

/* Feature Card 4 - Safe Mockup Storage */
.feature-card-4 {
    box-shadow: inset 0 0 40px rgba(16, 185, 129, 0.1);
}

.feature-card-4:hover {
    box-shadow: inset 0 0 50px rgba(16, 185, 129, 0.15), 0 10px 40px -10px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-card-4 i {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #10b981;
}

.feature-card-4:hover i {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    transform: scale(1.1);
}

/* Feature Card 5 - AI Tools */
.feature-card-5 {
    box-shadow: inset 0 0 40px rgba(168, 85, 247, 0.1);
}

.feature-card-5:hover {
    box-shadow: inset 0 0 50px rgba(168, 85, 247, 0.15), 0 10px 40px -10px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
}

.feature-card-5 i {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    color: #a855f7;
}

.feature-card-5:hover i {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(147, 51, 234, 0.3) 100%);
    transform: scale(1.1);
}

/* Feature Card 6 - Etsy Tool */
.feature-card-6 {
    box-shadow: inset 0 0 40px rgba(241, 100, 30, 0.1);
}

.feature-card-6:hover {
    box-shadow: inset 0 0 50px rgba(241, 100, 30, 0.15), 0 10px 40px -10px rgba(241, 100, 30, 0.3);
    border-color: rgba(241, 100, 30, 0.5);
}

.feature-card-6 i {
    background: linear-gradient(135deg, rgba(241, 100, 30, 0.2) 0%, rgba(245, 138, 82, 0.2) 100%);
    color: #F1641E;
}

.feature-card-6:hover i {
    background: linear-gradient(135deg, rgba(241, 100, 30, 0.3) 0%, rgba(245, 138, 82, 0.3) 100%);
    transform: scale(1.1);
}

/* --- Pricing Section --- */
.pricing-section .pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    background: var(--surface-color);
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
}

.pricing-section .toggle-label {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
}

.pricing-section .switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.pricing-section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.pricing-section .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.pricing-section .discount-badge {
    background: var(--accent-gradient);
    color: white;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.plan:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.plan:nth-child(2) {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--glass-bg) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.plan:nth-child(2) .plan-header h3 {
    color: var(--primary-color);
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.billing-cycle {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features .feature-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #d1d5db;
}

.plan-features .feature-item i {
    font-size: 14px;
    width: 20px;
}

.plan-features .feature-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.plan-features .feature-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-yes {
    color: #2ecc71;
}

.feature-no {
    color: #ef4444;
}

.choose-plan-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}

.plan:hover .choose-plan-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.plan:nth-child(2) .choose-plan-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.plan:nth-child(2):hover .choose-plan-btn {
    background: var(--primary-hover);
    color: #fff;
}

/* --- Use Cases Section --- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}

.use-case-card i {
    font-size: 48px;
    color: #fff;
    z-index: 2;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.use-case-card:hover i {
    transform: scale(1.1);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 1;
}

.use-case-card:hover::before {
    left: 150%;
}

.use-case-card span {
    z-index: 2;
}

.use-case-card::after {
    display: none; /* Remove old pattern */
}

/* --- Card Specific Colors --- */
.use-case-etsy {
    box-shadow: inset 0 0 40px rgba(241, 100, 30, 0.15);
}

.use-case-etsy:hover {
    box-shadow: inset 0 0 50px rgba(241, 100, 30, 0.2), 0 10px 40px -10px rgba(241, 100, 30, 0.3);
    border-color: rgba(241, 100, 30, 0.5);
}

.use-case-etsy i {
    background: linear-gradient(135deg, rgba(241, 100, 30, 0.2) 0%, rgba(245, 138, 82, 0.2) 100%);
    color: #F1641E;
}

.use-case-mayzing {
    box-shadow: inset 0 0 40px rgba(168, 85, 247, 0.15);
}

.use-case-mayzing:hover {
    box-shadow: inset 0 0 50px rgba(168, 85, 247, 0.2), 0 10px 40px -10px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
}

.use-case-mayzing i {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    color: #a855f7;
}

.use-case-pod {
    box-shadow: inset 0 0 40px rgba(59, 130, 246, 0.15);
}

.use-case-pod:hover {
    box-shadow: inset 0 0 50px rgba(59, 130, 246, 0.2), 0 10px 40px -10px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.use-case-pod i {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #6366f1;
}

.use-case-shopify {
    box-shadow: inset 0 0 40px rgba(34, 197, 94, 0.15);
}

.use-case-shopify:hover {
    box-shadow: inset 0 0 50px rgba(34, 197, 94, 0.2), 0 10px 40px -10px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
}

.use-case-shopify i {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: #22c55e;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: var(--glass-bg);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.faq-question {
    padding: 24px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question .fa-plus {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question .fa-plus {
    transform: rotate(45deg);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-question-content i {
    color: var(--primary-color);
    font-size: 18px;
}

.faq-answer {
    padding: 0 24px 24px 68px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease-in-out, padding 0.3s ease;
}

.faq-item[open] .faq-answer {
    max-height: 1000px; /* large enough for content */
    opacity: 1;
    transition: max-height 1s ease-in-out, opacity 0.5s ease-in-out 0.2s, padding 0.3s ease;
}

.faq-question {
    position: relative;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--glass-bg);
    background-image: linear-gradient(145deg, rgba(99, 102, 241, 0.05), transparent 40%);
    padding: 80px 5%;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 80px auto 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 17px;
}

.cta-section .subscribe-button {
    background: #fff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* --- Footer Section --- */
.footer {
    background: #000;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer .logo {
    font-size: 28px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        border-radius: 0;
        border: none;
        padding: 0;
    }

    .menu-links.active {
        right: 0;
    }

    .menu-links a {
        font-size: 18px;
        padding: 15px 30px;
    }

    .login-btn {
        display: none;
        /* Hide on mobile nav, it's inside the slide-out menu */
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .container {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .left-side h1 {
        font-size: 48px;
    }

    .left-side .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .left-side h1 {
        font-size: 40px;
    }

    section h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}