/* SourceMogul Static Site - Main CSS */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --background: hsl(222 47% 11%);
  --foreground: hsl(210 40% 98%);
  --card: hsl(222 47% 14%);
  --primary: hsl(270 60% 50%);
  --primary-foreground: #fff;
  --secondary: hsl(14 89% 55%);
  --muted: hsl(222 40% 20%);
  --muted-foreground: hsl(215 20% 65%);
  --border: hsl(222 30% 25%);
  --section-dark: hsl(222 47% 8%);
  --section-elevated: hsl(222 47% 14%);
  --green: #4ade80;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--background); color: var(--foreground); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(23,25,35,0.3); backdrop-filter: blur(8px); transition: all 0.3s; }
.header.scrolled { background: rgba(23,25,35,0.95); border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
@media (min-width: 640px) { .header-inner { height: 64px; } }
.logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.logo img { height: 20px; width: auto; display: block; }
.logo-icon { width: 28px; height: 28px; background: linear-gradient(135deg, #d7316d, #017bc6); border-radius: 6px; }
.nav-desktop { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link { padding: 8px 16px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); border-radius: 6px; transition: all 0.2s; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.header-actions { display: flex; align-items: center; gap: 8px; }
@media (min-width: 640px) { .header-actions { gap: 12px; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 6px; transition: all 0.2s; }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--foreground); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: hsl(270 60% 45%); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-pill { border-radius: 9999px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
@media (min-width: 640px) { .btn-lg { padding: 16px 32px; font-size: 18px; } }
.btn-block { width: 100%; }
.mobile-menu-btn { display: flex; padding: 10px; color: rgba(255,255,255,0.8); font-size: 24px; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.hide-mobile { display: none !important; }
@media (min-width: 640px) { .hide-mobile { display: inline-flex !important; } }
.hide-tablet { display: none !important; }
@media (min-width: 768px) { .hide-tablet { display: flex !important; } }

/* PROMO BANNER */
.promo-banner { position: fixed; top: 56px; left: 0; right: 0; z-index: 40; background: linear-gradient(90deg, rgba(124,58,237,0.9), var(--primary), rgba(124,58,237,0.9)); }
@media (min-width: 640px) { .promo-banner { top: 64px; } }
.promo-banner-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px; padding: 10px 0; color: #fff; font-size: 14px; }
.promo-offer { font-weight: 600; }
.promo-code { padding: 4px 12px; background: rgba(255,255,255,0.2); border-radius: 6px; font-family: monospace; font-weight: 700; cursor: pointer; }
.promo-code:hover { background: rgba(255,255,255,0.3); }
.countdown-time { font-family: monospace; font-weight: 700; }
.countdown-time span:not(.sep) { background: rgba(255,255,255,0.2); padding: 2px 6px; border-radius: 4px; margin: 0 2px; }

/* HERO */
.hero { position: relative; overflow: hidden; padding: 140px 0 40px; background: linear-gradient(180deg, var(--section-dark) 0%, var(--background) 100%); }
@media (min-width: 640px) { .hero { padding: 160px 0 64px; } }
@media (min-width: 1024px) { .hero { padding: 160px 0 96px; } }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124,58,237,0.25), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 10; }
.stats-bar { background: rgba(239,68,68,0.3); border: 1px solid rgb(239,68,68); border-radius: 8px; padding: 12px 16px; margin-bottom: 32px; }
@media (min-width: 640px) { .stats-bar { margin-bottom: 48px; } }
.stats-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 32px; font-size: 12px; }
@media (min-width: 1024px) { .stats-bar-inner { justify-content: space-between; } }
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-number { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.stat-badge { width: 40px; height: 40px; background: #f90; border-radius: 8px; }
.hero-grid { display: flex; flex-direction: column; align-items: center; gap: 40px; padding: 24px 0; }
@media (min-width: 1024px) { .hero-grid { flex-direction: row; gap: 48px; padding: 48px 0; } }
.hero-text { flex: 1; max-width: 640px; text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }
.hero-title { font-size: 32px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
@media (min-width: 640px) { .hero-title { font-size: 42px; } }
@media (min-width: 768px) { .hero-title { font-size: 52px; } }
@media (min-width: 1024px) { .hero-title { font-size: 64px; } }
.hero-title .highlight { color: var(--primary); }
.hero-desc { font-size: 16px; color: var(--muted-foreground); margin-bottom: 32px; }
@media (min-width: 640px) { .hero-desc { font-size: 18px; } }
.hero-cta { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; gap: 16px; justify-content: center; } }
@media (min-width: 1024px) { .hero-cta { justify-content: flex-start; } }
.hero-image { flex: 1; width: 100%; max-width: 500px; }
.hero-image img, .placeholder { width: 100%; border-radius: 16px; }
.hero-image img { height: auto; display: block; }
.placeholder { aspect-ratio: 4/3; background: var(--muted); display: flex; align-items: center; justify-content: center; color: var(--muted-foreground); font-size: 14px; }

/* SECTION */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .label { color: var(--primary); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.section-header h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
@media (min-width: 640px) { .section-header h2 { font-size: 36px; } }
.section-header p, .desc { color: var(--muted-foreground); font-size: 16px; }
@media (min-width: 640px) { .section-header p, .desc { font-size: 18px; } }

/* VIDEO */
.video-section { padding: 48px 0; background: var(--background); }
@media (min-width: 640px) { .video-section { padding: 80px 0; } }
.video-grid { display: flex; flex-direction: column; align-items: center; gap: 40px; }
@media (min-width: 1024px) { .video-grid { flex-direction: row; gap: 64px; } }
.video-box { flex: 1; width: 100%; max-width: 640px; }
.video-wrapper { position: relative; aspect-ratio: 16/9; background: var(--card); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.video-wrapper img, .video-wrapper .placeholder, .video-wrapper iframe { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); cursor: pointer; }
.video-play-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; }
.video-text { flex: 1; max-width: 520px; text-align: center; }
@media (min-width: 1024px) { .video-text { text-align: left; } }
.video-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
@media (min-width: 640px) { .video-text h2 { font-size: 36px; } }
@media (min-width: 1024px) { .video-text h2 { font-size: 44px; } }
.video-text p { font-size: 16px; color: var(--muted-foreground); margin-bottom: 20px; line-height: 1.7; }
.video-text a { color: var(--primary); font-weight: 600; }

/* FLIPS */
.flips-section { padding: 64px 0; background: var(--section-elevated); }
.flips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 1024px; margin: 0 auto; }
@media (min-width: 640px) { .flips-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .flips-grid { grid-template-columns: repeat(4, 1fr); } }
.flip-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px; }
.flip-image { background: #fff; border-radius: 8px; aspect-ratio: 1; margin-bottom: 12px; overflow: hidden; position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.flip-image img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.flip-title { font-weight: 600; font-size: 14px; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.flip-prices { font-size: 12px; }
.flip-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.flip-row span:first-child { color: var(--muted-foreground); }
.flip-profit { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; color: var(--green); font-weight: 700; }

/* RESOURCES */
.resources-section { padding: 64px 0; background: var(--background); }
@media (min-width: 640px) { .resources-section { padding: 96px 0; } }
.resources-badge { display: inline-block; background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.3); border-radius: 9999px; padding: 8px 20px; margin-bottom: 20px; color: var(--primary); font-weight: 700; text-transform: uppercase; }
.resources-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1024px; margin: 0 auto; }
@media (min-width: 640px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .resources-grid { grid-template-columns: repeat(3, 1fr); } }
.resource-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; background: rgba(255,255,255,0.03); }
.resource-card:hover { border-color: rgba(255,255,255,0.2); }
.resource-icon { width: 56px; height: 56px; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; }
.resource-icon.discord { background: linear-gradient(135deg, #5865F2, #7c3aed); }
.resource-icon.training { background: linear-gradient(135deg, #10b981, #14b8a6); }
.resource-icon.flips { background: linear-gradient(135deg, var(--primary), #a855f7); }
.resource-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.resource-card p { color: var(--muted-foreground); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.resource-cta { color: var(--primary); font-weight: 600; }

/* FEATURES */
.features-section { padding: 64px 0; background: var(--section-dark); }
@media (min-width: 640px) { .features-section { padding: 96px 0; } }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; }
.feature-card:hover { border-color: rgba(124,58,237,0.5); }
.feature-card.large .feature-visual { height: 140px; margin-bottom: 20px; border-radius: 12px; background: linear-gradient(135deg, var(--muted), rgba(124,58,237,0.1)); display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--primary); }
.feature-card.compact { display: flex; gap: 16px; }
.feature-card.compact .feature-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px; background: rgba(124,58,237,0.15); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card.compact h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--muted-foreground); font-size: 14px; line-height: 1.6; }

/* STEPS */
.steps-section { padding: 64px 0; background: var(--section-dark); }
@media (min-width: 640px) { .steps-section { padding: 96px 0; } }
.step { padding: 48px 0; }
.step.elevated { background: var(--section-elevated); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
@media (min-width: 1024px) { .step.elevated { margin: 0 -32px; padding-left: 32px; padding-right: 32px; } }
.step-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 1024px) { .step-inner { flex-direction: row; gap: 64px; } }
.step.reverse .step-inner { flex-direction: column; }
@media (min-width: 1024px) { .step.reverse .step-inner { flex-direction: row-reverse; } }
.step-image { flex: 1; width: 100%; max-width: 500px; }
.step-image .placeholder { aspect-ratio: 16/10; border: 1px solid rgba(255,255,255,0.1); }
.step-image img { width: 100%; height: auto; border-radius: 12px; display: block; }
.step-content { flex: 1; text-align: center; }
@media (min-width: 1024px) { .step-content { text-align: left; } }
.step-number { color: var(--primary); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
@media (min-width: 1024px) { .step-number { display: none; } }
.step-content h3 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.step-points { text-align: left; }
.step-points li { display: flex; gap: 12px; color: var(--muted-foreground); font-size: 15px; margin-bottom: 12px; }
.step-points li::before { content: '•'; color: var(--primary); font-weight: 700; }
.steps-cta { text-align: center; margin-top: 48px; }

/* PRICING */
.pricing-section { padding: 80px 0; background: var(--section-elevated); scroll-margin-top: 100px; }
@media (min-width: 1024px) { .pricing-section { padding: 112px 0; } }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; background: rgba(255,255,255,0.03); }
.pricing-card.featured { border: 2px solid rgba(124,58,237,0.6); box-shadow: 0 0 60px rgba(124,58,237,0.15); position: relative; }
.pricing-card .best-value { position: absolute; top: 0; right: 0; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 0 0 0 12px; }
.pricing-card-header { background: var(--muted); padding: 20px; text-align: center; }
.pricing-card-header h3 { font-size: 20px; font-weight: 700; }
.pricing-card-body { padding: 24px; }
@media (min-width: 640px) { .pricing-card-body { padding: 32px; } }
.pricing-subtitle { color: var(--muted-foreground); font-size: 14px; text-align: center; margin-bottom: 8px; }
.pricing-price { text-align: center; margin-bottom: 8px; }
.pricing-price .amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; }
.pricing-price .period { color: var(--muted-foreground); font-size: 18px; }
.pricing-note { text-align: center; font-size: 14px; margin-bottom: 4px; }
.pricing-note.highlight { color: var(--primary); font-weight: 600; }
.pricing-note.muted { color: var(--muted-foreground); font-size: 12px; margin-bottom: 24px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li { display: flex; gap: 12px; font-size: 14px; margin-bottom: 12px; color: var(--muted-foreground); }
.pricing-features li::before { content: '✓'; color: var(--muted-foreground); }
.pricing-card.featured .pricing-features li { color: var(--foreground); }
.pricing-card.featured .pricing-features li::before { color: var(--primary); }

/* TESTIMONIALS */
.testimonials-section { padding: 48px 0; background: var(--section-dark); }
.testimonials-header { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 32px; }
@media (min-width: 640px) { .testimonials-header { flex-direction: row; justify-content: space-between; } }
.testimonials-header-text { text-align: center; }
@media (min-width: 640px) { .testimonials-header-text { text-align: left; } }
.testimonials-header .label { color: var(--primary); font-weight: 600; font-size: 12px; text-transform: uppercase; margin-bottom: 4px; }
.testimonials-header h2 { font-size: 24px; font-weight: 700; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(6, 1fr); } }
.testimonial-card { padding: 16px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.testimonial-stars { color: var(--primary); margin-bottom: 8px; }
.testimonial-card blockquote { font-size: 14px; margin-bottom: 12px; }
.testimonial-author { font-size: 12px; }
.testimonial-author span { color: var(--muted-foreground); }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--background); scroll-margin-top: 100px; }
.faq-list { max-width: 768px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; margin-bottom: 12px; background: rgba(255,255,255,0.03); overflow: hidden; }
.faq-item.open { border-color: rgba(124,58,237,0.3); }
.faq-question { width: 100%; display: flex; justify-content: space-between; padding: 20px 24px; font-family: var(--font-display); font-size: 16px; font-weight: 600; text-align: left; color: var(--foreground); cursor: pointer; }
@media (min-width: 640px) { .faq-question { font-size: 18px; } }
.faq-question .icon { color: var(--muted-foreground); transition: transform 0.3s; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--muted-foreground); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* FOOTER */
.footer { padding: 32px 0 24px; background: linear-gradient(180deg, hsl(260 60% 8%), hsl(222 47% 6%)); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 24px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-section h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-section p { color: var(--muted-foreground); font-size: 12px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.footer-links a { color: var(--muted-foreground); font-size: 12px; }
.footer-links a:hover { color: var(--foreground); }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 32px; height: 32px; border-radius: 50%; background: var(--muted); display: flex; align-items: center; justify-content: center; color: var(--muted-foreground); }
.footer-social:hover { color: var(--foreground); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.footer-copyright { color: var(--muted-foreground); font-size: 11px; text-align: center; }

/* UTILS */
.text-center { text-align: center; }
.highlight { color: var(--primary); }

/* CHECKOUT PAGE */
.checkout-main { padding: 40px 0 64px; min-height: 100vh; }

/* Progress Bar - Horizontal */
.checkout-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; padding: 0; position: relative; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; flex: 1; max-width: 200px; }
.progress-step:not(:last-child)::after { content: ''; position: absolute; top: 20px; left: calc(50% + 30px); right: calc(-50% + 30px); height: 2px; background: rgba(255,255,255,0.2); z-index: 0; }
.progress-step.active:not(:last-child)::after,
.progress-step.completed:not(:last-child)::after { background: var(--primary); }
.progress-number { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: rgba(255,255,255,0.5); position: relative; z-index: 1; transition: all 0.3s; }
.progress-step.active .progress-number { background: var(--primary); color: #fff; }
.progress-step.completed .progress-number { background: var(--primary); color: #fff; }
.progress-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); transition: color 0.3s; text-align: center; }
.progress-step.active .progress-label { color: var(--primary); }
.progress-step.completed .progress-label { color: rgba(255,255,255,0.7); }

/* Checkout Grid */
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { 
    .checkout-grid { 
        grid-template-columns: 2fr 1fr; 
        gap: 48px; 
        align-items: start;
    } 
}
.checkout-content { }

/* Steps */
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.step-desc { color: var(--muted-foreground); margin-bottom: 32px; }

/* Plan Cards */
.plan-options { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
@media (min-width: 640px) { .plan-options { grid-template-columns: repeat(2, 1fr); } }
.plan-card { border: 2px solid rgba(255,255,255,0.2); border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.3s; background: rgba(255,255,255,0.03); }
.plan-card:hover { border-color: rgba(255,255,255,0.4); }
.plan-card.selected { border-color: var(--primary); box-shadow: 0 0 30px rgba(124,58,237,0.3); }
.plan-card-accent { height: 12px; background: hsl(270 50% 20%); }
.plan-card-accent.yearly { height: auto; padding: 8px; text-align: center; color: #fff; font-weight: 600; font-size: 14px; }
.plan-card-body { padding: 24px; text-align: center; background: rgba(255,255,255,0.03); }
.plan-price { font-size: 42px; font-weight: 700; }
.plan-period { color: var(--muted-foreground); margin-bottom: 16px; }
.plan-billing, .plan-trial { font-size: 13px; color: #666; margin-bottom: 4px; }
.plan-card-footer { padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); }
.plan-card-footer span { font-weight: 600; color: var(--muted-foreground); }

/* Forms */
.checkout-form { margin-bottom: 24px; }
.form-row { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .form-row { flex-direction: row; } }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-group input { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: var(--foreground); font-size: 16px; }
.form-group input:focus { outline: none; border-color: var(--primary); }
.form-hint { font-size: 12px; color: var(--muted-foreground); margin-top: 4px; }
.password-input { position: relative; }
.password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { font-size: 14px; font-weight: 400; }
.checkbox-group a { color: var(--primary); }
.step-buttons { display: flex; gap: 16px; }
.step-buttons .btn { flex: 1; }
.login-link { text-align: center; margin-top: 24px; color: var(--muted-foreground); }
.login-link a { color: #fff; font-weight: 600; }

/* Coupon */
.coupon-section { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; margin-bottom: 24px; }
.coupon-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.coupon-input { display: flex; gap: 12px; }
.coupon-input input { flex: 1; }

/* Card */
.card-section { margin-bottom: 24px; }
.card-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.card-form { border: 2px solid var(--primary); border-radius: 12px; overflow: hidden; }
.card-header { background: var(--primary); padding: 12px 16px; color: #fff; font-weight: 600; }
.card-body { padding: 20px; background: rgba(255,255,255,0.03); }
.card-notice { font-size: 12px; color: var(--muted-foreground); margin-top: 16px; }

/* Order Summary */
.order-summary { flex: 1; }
.order-summary-inner { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; position: sticky; top: 100px; }
.order-summary h2 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.order-summary-subtitle { font-size: 14px; color: var(--muted-foreground); margin-bottom: 20px; }
.order-divider { height: 4px; background: var(--primary); border-radius: 2px; margin-bottom: 20px; }
.selected-plan-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.selected-plan-label { font-size: 11px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; }
.selected-plan-price { margin-top: 8px; }
.selected-plan-price .price { font-size: 36px; font-weight: 700; }
.selected-plan-price .period { color: var(--muted-foreground); }
.order-details { margin-bottom: 20px; }
.order-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--muted-foreground); font-size: 14px; }
.order-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.order-total span:first-child { font-weight: 600; }
.total-amount { font-size: 20px; font-weight: 700; color: var(--primary); }
.order-legal { font-size: 11px; color: var(--muted-foreground); text-align: center; line-height: 1.6; }
.order-legal a { color: var(--primary); }

