/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #e5e7eb;
}

/* Highlights */
.highlight-blue {
    color: #00d4ff;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-purple {
    color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

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

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-purple {
    background: rgba(139, 92, 246, 0.2);
    color: #a855f7;
    border-color: rgba(139, 92, 246, 0.3);
}

.nav-purple:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.nav-teal {
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
    border-color: rgba(20, 184, 166, 0.3);
}

.nav-teal:hover {
    background: rgba(20, 184, 166, 0.3);
    transform: translateY(-2px);
}

.nav-pink {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
}

.nav-pink:hover {
    background: rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

.nav-orange {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.3);
}

.nav-orange:hover {
    background: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #a855f7;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.cta-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
}

.social-proof {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.proof-text {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-left: 0.5rem;
}

.proof-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.stars {
    color: #fbbf24;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-title {
    font-weight: 600;
    color: #ffffff;
}

.mockup-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.metric-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.75rem;
    color: #10b981;
}

.chart-area {
    grid-column: 1 / -1;
    height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: end;
    justify-content: space-around;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
}

.bar {
    background: linear-gradient(to top, #00d4ff, #8b5cf6);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20%;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
}

/* Problem Section */
.problem {
    background: rgba(0, 0, 0, 0.2);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-transition {
    text-align: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.problem-transition h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.transition-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5cf6;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.solution-visual {
    display: flex;
    justify-content: center;
}

.system-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.diagram-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
}

.diagram-step:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.diagram-step h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.diagram-arrow {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
}

.author-title {
    font-size: 0.875rem;
    color: #9ca3af;
}

.results-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.result-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-weight: 500;
}

/* Timeline Section */
.timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.timeline-day {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.day-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.day-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.day-subtitle {
    color: #9ca3af;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-time {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* What's Included Section */
.whats-included {
    background: rgba(0, 0, 0, 0.2);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.included-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.item-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.item-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.item-value {
    color: #00d4ff;
    font-weight: 600;
    margin-top: 1rem;
}

.bonus-title {
    text-align: center;
    color: #8b5cf6;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bonus-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.15);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-content h4 {
    color: #a855f7;
    margin-bottom: 1rem;
}

.bonus-value {
    color: #8b5cf6;
    font-weight: 600;
    margin-top: 1rem;
}

.value-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.value-breakdown {
    margin-bottom: 2rem;
}

.value-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-line.bonus {
    color: #8b5cf6;
}

.value-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.your-investment {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.investment-label {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.investment-price {
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.investment-savings {
    color: #10b981;
    font-weight: 600;
}

/* Pricing Section */
.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.comparison-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.comparison-card.traditional {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-card.our-system {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.comparison-card.our-system::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-header h3 {
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.cost-breakdown {
    text-align: left;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-total {
    font-weight: 700;
    color: #ffffff;
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.cost-yearly {
    font-size: 1.125rem;
    font-weight: 600;
    color: #00d4ff;
}

.savings-highlight {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.savings-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.savings-description {
    color: #d1d5db;
}

.guarantee-section {
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-content h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background: rgba(0, 0, 0, 0.2);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    color: #ffffff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #d1d5db;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-title {
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
}

.urgency-section {
    margin-bottom: 3rem;
}

.urgency-text h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.final-offer {
    margin-bottom: 3rem;
}

.offer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.offer-header {
    margin-bottom: 2rem;
}

.offer-header h3 {
    margin-bottom: 1rem;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-strike {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
}

.offer-includes {
    text-align: left;
    margin-bottom: 2rem;
}

.include-item {
    padding: 0.5rem 0;
    color: #d1d5db;
}

.include-item.bonus {
    color: #8b5cf6;
}

.offer-cta {
    text-align: center;
}

.cta-guarantee {
    margin-top: 1rem;
    color: #10b981;
    font-weight: 600;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
}

.risk-reversal {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.risk-reversal h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-main {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-testimonial {
    color: #d1d5db;
    font-style: italic;
    max-width: 400px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-testimonial {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .results-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .system-diagram {
        flex-direction: column;
    }
    
    .diagram-arrow {
        transform: rotate(90deg);
    }
    
    .offer-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .results-summary {
        grid-template-columns: 1fr;
    }
    
    .mockup-content {
        grid-template-columns: 1fr;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

/*
 * Toast Notification
 *
 * These styles position notification messages at the bottom center of the viewport.
 * Notifications fade in and out smoothly and can be styled by type via additional classes.
 */
.notification {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.notification.show {
  opacity: 1;
}

.notification.info {
  background-color: #2c3e50;
}

.notification.success {
  background-color: #27ae60;
}

.notification.error {
  background-color: #c0392b;
}

/* ========================= */
/* Refunds & Feedback Form Styles */
/* These styles create a card-like questionnaire form for the refunds page. */
.refunds-section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--section-bg, #051a30);
}

.refunds-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  max-width: 650px;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.refunds-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.refunds-card p {
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.5;
}

.form-step {
  margin-bottom: 2rem;
}

.step-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00b894;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.step-content {
  margin-bottom: 1rem;
  color: #dfe6e9;
  font-size: 0.95rem;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #dfe6e9;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #2d3436;
  background-color: #f3f4f6;
}

.input-group textarea {
  height: 6rem;
  resize: vertical;
}

.btn-submit {
  display: block;
  width: 100%;
  background-color: #00b894;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background-color: #019875;
}

/* Radio group styling for refund form */
.radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.radio-option {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dfe6e9;
}

.radio-option input[type="radio"] {
  accent-color: #00b894;
}

/* Toast notification styles */
/* Toast notification styles */
/*
 * Base toast notification styling
 *
 * Use bottom right positioning with a compact size. The notification
 * should never span the full width of the viewport – instead it
 * relies on a flexible max‑width that adapts to mobile and desktop.
 */
/*
 * Updated toast notification styling
 *
 * Use bottom‑center positioning with a compact width.  The notification
 * should never span the full viewport width on mobile devices; instead
 * constrain it to a smaller maximum width and allow it to wrap long
 * messages.  These rules override any earlier definitions for the
 * notification component.
 */
.notification {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: inline-block;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.8rem;
  line-height: 1.3;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  /* Constrain the notification width on small screens to avoid covering too much content */
  max-width: 320px;
  width: auto;
  word-break: break-word;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.notification.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .notification,
  .notification.info,
  .notification.success,
  .notification.error {
    font-size: 0.9rem !important;
    padding: 8px 12px !important;
    max-width: 360px !important;
    width: auto !important;
  }
}

/*
 * Override all notification variants to ensure consistent sizing and placement
 * across info, success and error types. Keep the styling compact and
 * aligned to the bottom right without occupying the full viewport width.
 */
/*
 * Ensure all notification variants (info, success, error) inherit the
 * same compact sizing and positioning as the base notification.  This
 * rule overrides earlier definitions that may have positioned the
 * notification on the bottom right or used full viewport widths.
 */
.notification,
.notification.info,
.notification.success,
.notification.error {
  position: fixed !important;
  bottom: 1rem !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  display: inline-block !important;
  padding: 6px 10px !important;
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
  max-width: 280px !important;
  width: auto !important;
  word-break: break-word !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  z-index: 1000 !important;
}

.notification.show {
  opacity: 1;
  pointer-events: auto;
}

/* Use a unified dark background for all notification types */
.notification.info,
.notification.success,
.notification.error {
  background-color: rgba(0, 0, 0, 0.85);
  color: #ffffff;
}

