/* ============================================
   GURU.pub — Premium Learning Ecosystem v5
   Enhanced Modern Aesthetic
   ============================================ */

:root {
    --primary-grad: linear-gradient(135deg, #1c1917 0%, #2c1810 100%);
    --gold-grad: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    --accent: #d4af37;
    --accent-hover: #f1c40f;
    --bg: #ffffff;
    --surface: #faf9f6;
    --text-main: #1c1917;
    --text-muted: #78716c;
    --border: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 12px rgba(44, 24, 16, 0.04);
    --shadow-md: 0 12px 24px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 24px 48px rgba(44, 24, 16, 0.12);
    --radius: 24px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans Bengali', 'Outfit', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    padding: 12px 30px;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    top: 10px;
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.9);
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.brand { 
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none; 
}
.brand img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.brand-text {
    font-family: 'Outfit', sans-serif; 
    font-size: 1.25rem; 
    font-weight: 800; 
    color: #2c1810; 
}
.brand-text em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--primary-grad);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(44,24,16,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,24,16,0.3); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-wrapper {
    position: relative;
    background: var(--primary-grad);
    padding: 200px 0 160px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions { display: flex; gap: 20px; justify-content: center; }

.btn {
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary { 
    background: var(--gold-grad); 
    color: #2c1810; 
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2); 
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3); }

.btn-ghost { 
    border: 2px solid rgba(255,255,255,0.3); 
    color: #fff; 
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: 40px 40px 0 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card { text-align: center; }
.stat-card h4 { 
    font-size: 3rem; 
    font-weight: 800; 
    color: #8b4513; 
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}
.stat-card p { color: var(--text-muted); font-weight: 600; font-size: 1rem; }

/* ═══════════════════════════════════════════
   BENTO GRID
   ═══════════════════════════════════════════ */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.bento-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s var(--ease);
    background: #1c1917;
    border: 1px solid rgba(255,255,255,0.05);
}

.bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: all 0.8s var(--ease);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1c1917 0%, rgba(28, 25, 23, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.bento-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    transition: all 0.5s var(--ease);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.bento-item:hover .bento-img { transform: scale(1.1); opacity: 0.7; }

.item-icon { 
    font-size: 2.5rem; 
    margin-bottom: 16px; 
    display: inline-block;
}

.bento-item h3 { 
    font-size: 1.5rem; 
    font-weight: 800; 
    margin-bottom: 8px; 
}

.bento-item p { 
    font-size: 0.95rem; 
    opacity: 0.8; 
    line-height: 1.5;
}

.span-2 { grid-column: span 2; }
.tall-2 { grid-row: span 2; }

.badge {
    position: absolute;
    top: 24px; right: 24px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.9);
    color: #1c1917;
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h2 { font-size: 3rem; font-weight: 800; margin-bottom: 24px; line-height: 1.1; color: #2c1810; letter-spacing: -1px; }
.feature-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; }

.feature-visual {
    flex: 1;
    height: 450px;
    background: var(--surface);
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.05);
}

/* ═══════════════════════════════════════════
   APP GALLERY
   ═══════════════════════════════════════════ */
.app-gallery {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.app-gallery::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-item {
    flex: 0 0 280px;
    height: 580px;
    scroll-snap-align: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.price-card {
    background: #fff;
    padding: 56px 40px;
    border-radius: 40px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.price-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
}

.price-card h3 { font-size: 1.25rem; margin-bottom: 24px; color: var(--text-muted); font-weight: 700; }
.price-card .price { font-size: 3.5rem; font-weight: 800; color: #2c1810; margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
.price-card .price span { font-size: 1rem; opacity: 0.6; font-weight: 600; }

.price-card ul { list-style: none; margin: 40px 0; text-align: left; flex-grow: 1; }
.price-card li { margin-bottom: 16px; font-weight: 600; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.price-card li::before { 
    content: ''; 
    display: inline-block;
    width: 20px; height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d4af37'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
}

/* ═══════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #8b4513;
    transition: all 0.3s var(--ease);
}

.card-link span {
    transition: transform 0.3s var(--ease);
}

.feature-box:hover .card-link span {
    transform: translateX(6px);
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    background: var(--surface);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 20px;
}

.feature-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c1810;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   WHY GURU CARDS & TESTIMONIALS
   ═══════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--surface);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.why-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c1810;
}

.why-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 800;
    color: #2c1810;
    font-size: 1.1rem;
}

.user-rank {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   XP FLOATER
   ═══════════════════════════════════════════ */
.xp-floater {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border);
    animation: slideIn 0.5s var(--ease);
}

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

.xp-progress {
    width: 150px;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: var(--gold-grad);
    width: 0%;
    transition: width 0.4s var(--ease);
}

.xp-text { font-weight: 800; font-size: 0.9rem; color: #2c1810; font-family: 'Outfit', sans-serif; }

/* ═══════════════════════════════════════════
   DASHBOARD / PROFILE
   ═══════════════════════════════════════════ */
.profile-wrapper {
    padding: 150px 0 100px;
    background: var(--surface);
    min-height: 100vh;
}

.profile-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-card {
    background: #fff;
    padding: 30px;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.profile-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: #faf9f6;
    border: 4px solid #fff;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}

.profile-stat:last-child {
    border-bottom: none;
}

.profile-stat span:first-child {
    color: var(--text-muted);
    font-weight: 600;
}

.profile-stat span:last-child {
    font-weight: 800;
    color: #2c1810;
}

.dashboard-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c1810;
}

.recent-activity {
    display: grid;
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #faf9f6;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.activity-item:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.4);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.activity-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ═══════════════════════════════════════════
   AUTH CLASSES
   ═══════════════════════════════════════════ */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 20px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), var(--surface));
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 50px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.auth-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #2c1810;
}

.auth-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}
.auth-divider::before { margin-right: 12px; }
.auth-divider::after { margin-left: 12px; }

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 100px;
    border: 2px solid var(--border);
    background: #fff;
    color: #2c1810;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.google-btn:hover {
    background: #faf9f6;
    border-color: rgba(212, 175, 55, 0.4);
}

/* ═══════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════ */
.newsletter-wrapper {
    background: var(--surface);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.newsletter-box {
    background: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c1810;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s var(--ease);
}

.newsletter-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* ═══════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════ */
.checkout-wrapper {
    padding: 180px 0 100px;
    background: var(--surface);
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-card {
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.checkout-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    color: #2c1810;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s var(--ease);
    background: #faf9f6;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.payment-method {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    background: #fff;
}

.payment-method.active, .payment-method:hover {
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.05);
}

.payment-method span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c1810;
    margin-top: 8px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px dashed var(--border);
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c1810;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer-wrap {
    background: #1c1917;
    color: #fff;
    padding: 120px 0 60px;
}

.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; }

.footer-brand .brand-text { color: #fff; font-size: 1.8rem; }
.footer-brand p { margin-top: 24px; opacity: 0.6; line-height: 1.8; max-width: 400px; }

.footer-col h4 { margin-bottom: 28px; font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 16px; }
.footer-col a { color: #fff; text-decoration: none; opacity: 0.6; transition: all 0.2s; font-weight: 500; }
.footer-col a:hover { opacity: 1; color: var(--accent); padding-left: 5px; }

.footer-bottom { 
    margin-top: 80px; 
    padding-top: 40px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    text-align: center; 
    opacity: 0.4;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   ANIMATIONS & UTILS
   ═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .why-grid, .testimonials-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .checkout-grid { grid-template-columns: 1fr; }
    .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav { width: calc(100% - 32px); padding: 10px 20px; }
    .nav-links { display: none; }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: 3rem; }
    .feature-row { flex-direction: column !important; gap: 40px; text-align: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .why-grid, .testimonials-grid, .features-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .payment-methods { grid-template-columns: repeat(2, 1fr); }
    .checkout-card { padding: 30px 20px; }
}
