@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-color: #f4f6fb;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --primary: #7C5CFF;
  --primary-light: #ece8ff;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -5px rgba(124, 92, 255, 0.15);
}

body.v2-body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

/* Dynamic Gradients */
.v2-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.6;
  animation: floatOrb 15s infinite alternate ease-in-out;
}
.v2-shape-1 { width: 600px; height: 600px; background: rgba(124, 92, 255, 0.3); top: -200px; left: -100px; }
.v2-shape-2 { width: 500px; height: 500px; background: rgba(46, 229, 157, 0.2); top: 20%; right: -150px; animation-delay: -5s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Header */
.v2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.v2-nav-links a {
  margin: 0 20px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.v2-nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
}

.v2-btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.3);
}

.v2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(124, 92, 255, 0.5);
  background: #6D4BFF;
}

.v2-btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.v2-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

/* Hero Section */
.v2-hero {
  padding: 120px 5% 60px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.v2-pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 30px;
  border: 1px solid rgba(124, 92, 255, 0.2);
}

.v2-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 0 24px;
  color: var(--text-dark);
}

.v2-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px;
}

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

/* Hero Image/Mockup */
.v2-mockup-container {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.5s ease;
}
.v2-mockup-container:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}
.v2-mockup-inner {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* Sections */
.v2-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.v2-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

/* Features grid */
.v2-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .v2-features { grid-template-columns: 1fr; } }
@media (min-width: 1100px) { .v2-features { grid-template-columns: repeat(4, 1fr); } }

.v2-feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.v2-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.v2-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 900;
}

.v2-feature-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.v2-feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* Resources / Visuals */
.v2-visuals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) { .v2-visuals-grid { grid-template-columns: 1fr; } }

.v2-visual-card {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}

.v2-visual-card img {
    width: 100%;
    margin-top: 15px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* How It Works Grid */
.v2-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) { .v2-how-grid { grid-template-columns: 1fr; } }

/* Pricing Grid */
.v2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 900px) { .v2-pricing-grid { grid-template-columns: 1fr; } }

.v2-pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.v2-pricing-card.hot {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.03) 0%, var(--white) 100%);
    transform: scale(1.05);
    z-index: 2;
}
.v2-pricing-name { font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-size: 14px; margin-bottom: 10px; }
.v2-pricing-price { font-size: 3rem; font-weight: 900; color: var(--text-dark); margin-bottom: 20px; line-height: 1; letter-spacing: -2px; display: flex; align-items: baseline; gap: 8px;}
.v2-pricing-per { font-size: 1rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0;}
.v2-pricing-bullets { padding-left: 20px; color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; flex-grow: 1; }
.v2-paypal-slot { margin-top: auto; min-height: 100px; display: flex; align-items: center; justify-content: center;}

/* Forms */
.v2-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}
.v2-form-group {
    margin-bottom: 20px;
    text-align: left;
}
.v2-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
}
.v2-form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #f8fafc;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.v2-form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.1);
    background: var(--white);
}
textarea.v2-form-input { min-height: 120px; resize: vertical; }

/* FAQ */
.v2-faq {
    max-width: 800px;
    margin: 0 auto;
}
.v2-faq details {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.v2-faq details:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.v2-faq summary {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    color: var(--text-dark);
}
.v2-faq summary::-webkit-details-marker { display:none; }
.v2-faq p {
    margin: 20px 0 0 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.v2-footer {
    padding: 40px 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 100px;
    background: var(--white);
}

.t { display: none; }
.t.active { display: block; }
