:root {
    --bg-color: #050508;
    --text-main: #f0f2f5;
    --text-muted: #7c8fa6;
    --accent-primary: #4f46e5;
    --accent-secondary: #ec4899;
    --accent-tertiary: #8b5cf6;
    --card-bg: rgba(15, 15, 22, 0.45);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(255, 255, 255, 0.14);
    --font-sans: 'Inter', sans-serif;
    --font-display: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Ambient Background */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-tertiary);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    background: rgba(10, 10, 15, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.7rem 1.6rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

$css
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    mix-blend-mode: screen; /* Makes the black background completely transparent! */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.1px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-secondary);
    color: white;
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 700;
    height: 20px;
    min-width: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.mobile-only {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s;
    z-index: 99;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mobile-menu.open {
    max-height: 400px;
    padding: 1rem 0;
}

.mobile-link {
    padding: 1rem 2rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-primary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.2px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    backdrop-filter: blur(10px);
    letter-spacing: 0.2px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 4rem;
    text-align: center;
    flex-direction: column;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.6rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
    line-height: 1.75;
    font-family: var(--font-sans);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-graphic {
    display: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.el-1 {
    width: 100px; height: 100px;
    top: 10%; right: 10%;
    animation-delay: 0s;
}

.el-2 {
    width: 80px; height: 80px;
    bottom: 20%; left: 10%;
    animation-delay: 2s;
}

/* Sections */
.features-section, .pricing-section, .faq-section {
    padding: 4.5rem 8%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem 1.6rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-border-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Pricing Grid */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    padding: 1rem 0;
}

.pricing-card {
    position: relative;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-border-hover);
}

.popular {
    padding-top: 3.5rem;
    background: rgba(20, 20, 30, 0.7);
    border-color: rgba(79, 70, 229, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(79, 70, 229, 0.1);
    z-index: 2;
}

.popular:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.5);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.4rem 1.5rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover .card-glow {
    opacity: 0.3;
}

.popular .card-glow {
    background: var(--accent-secondary);
    opacity: 0.6;
}

.popular:hover .card-glow {
    opacity: 0.4;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.15rem;
    font-weight: 400;
}

.plan-icon-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-icon-badge.accent {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    color: var(--accent-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    align-self: flex-start;
    padding-top: 0.5rem;
}

.amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin: 0 0.1rem;
    letter-spacing: -1px;
}

.period {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    align-self: flex-end;
    padding-bottom: 0.3rem;
}

.divider {
    height: 1px;
    background: var(--card-border);
    margin: 1.5rem 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.65rem;
    color: #b0bec5;
    font-size: 0.85rem;
    font-weight: 400;
}

.plan-features svg {
    width: 20px;
    height: 20px;
    fill: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

.plan-features svg.accent-svg {
    fill: var(--accent-secondary);
}

.btn-purchase {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255,255,255,0.8);
    padding: 0.8rem;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.2px;
}

.btn-purchase:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.popular .btn-purchase {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    border-radius: 10px;
}

.popular .btn-purchase:hover {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* FAQ Accordion */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    padding: 0 2rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1.2rem 0;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.1px;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-question .chevron {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question.active .faq-icon {
    background: var(--accent-primary);
}

.faq-question.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid var(--card-border);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.cart-header h2 {
    font-size: 1.1rem;
    letter-spacing: 0;
    font-weight: 600;
    font-family: var(--font-sans);
}

.cart-items {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.empty-cart-msg {
    color: var(--text-muted);
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-family: var(--font-sans);
}

.cart-item-info p {
    color: var(--accent-primary);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem;
    border-radius: 100px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.item-qty {
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.btn-checkout {
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Toasts */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
}

.toast.show {
    transform: translateX(0);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 8% 2rem;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.8rem;
    max-width: 280px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-sans);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 0 6%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .popular {
        transform: scale(1);
    }

    .popular:hover {
        transform: translateY(-6px);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0.8rem auto;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Extra small mobile (iPhone, etc) */
@media (max-width: 480px) {
    .hero {
        padding: 0 5%;
    }
    
    .hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .pill-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem 1.2rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .nav-container {
        padding: 0.6rem 1.2rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
    }
}

/* Ultrawide Screens */
@media (min-width: 1600px) {
    .hero {
        max-width: 1800px;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 5.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .nav-container, .features-section, .pricing-section, .faq-section, .footer-container {
        max-width: 1600px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .pricing-container {
        max-width: 1300px;
        margin: 0 auto;
        gap: 3rem;
    }
}
