/* 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;
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00cc88, #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00cc88, #00ffaa);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 204, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    border-color: #00cc88;
    color: #00cc88;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #00cc88;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #a0a0a0;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-cta-subtext {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 8px;
    text-align: center;
}

/* Tabs Section */
.tabs-section {
    padding: 2rem 0;
    margin: 2rem 0;
}

.tabs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tabs-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tabs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tab-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 204, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 204, 136, 0.1);
}

.tab-card.active {
    border-color: #00cc88;
    background: rgba(0, 204, 136, 0.1);
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tab-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.tab-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-status.live {
    background: linear-gradient(135deg, #00cc88, #00ffaa);
    color: #000000;
}

.tab-status.coming-soon {
    background: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #111111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00cc88;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #00cc88;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-description {
    color: #a0a0a0;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #0b0b0b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00cc88, #00ffaa);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.step-description {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #111111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #00cc88;
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.star {
    color: #ffd700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Talk to the Founder Section */
.talk-to-founder {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 204, 136, 0.08), rgba(0, 255, 170, 0.08));
}

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

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

.founder-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.founder-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.founder-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.founder-availability {
    margin-bottom: 2rem;
}

.availability-text {
    display: inline-block;
    background: rgba(0, 204, 136, 0.2);
    color: #00cc88;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 204, 136, 0.3);
}

.founder-methods {
    margin-bottom: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-icon {
    width: 24px;
    height: 24px;
    color: #00cc88;
}

.method-type {
    color: #ffffff;
    font-weight: 500;
    min-width: 60px;
    text-align: left;
}

.method-link {
    color: #00cc88;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: #00ffaa;
    text-decoration: underline;
}

.founder-note {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #00cc88;
}

.founder-note p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.founder-cta {
    margin-top: 2rem;
}

.founder-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #0b0b0b;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #111111;
    border-top: 1px solid #333333;
    padding: 40px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-description {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00cc88;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00cc88;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #333333;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-email {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #00cc88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tabs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tabs-title {
        font-size: 1.5rem;
    }
    
    .tab-card {
        padding: 1rem;
    }
    
    .tabs-section {
        padding: 1rem 0;
        margin: 1rem 0;
    }
    
    .talk-to-founder {
        padding: 60px 0;
    }
    
    .founder-title {
        font-size: 2rem;
    }
    
    .founder-info {
        padding: 2rem;
    }
    
    .method-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .features,
    .how-it-works,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer {
        padding: 32px 0 20px;
    }
}

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

.feature-card,
.testimonial-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.social-link:focus,
.footer-column a:focus {
    outline: 2px solid #00cc88;
    outline-offset: 2px;
}

/* Remove focus outline for navigation links */
.nav-link:focus {
    outline: none;
}

/* Loading animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc88;
}

/* Pricing Styles */
.pricing {
    padding: 80px 0;
    background: #111111;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 50px;
    padding: 8px;
}

.toggle-label {
    color: #a0a0a0;
    font-weight: 500;
    font-size: 14px;
}

.save-badge {
    background: #00cc88;
    color: #000000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333333;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #00cc88;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 1200px) {
    .pricing-grid {
        max-width: 1200px;
        margin: 0 auto 48px auto;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .pricing-card {
        padding: 24px;
    }
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    height: fit-content;
}

.pricing-card:hover {
    border-color: #00cc88;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: #00cc88;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00cc88;
    color: #000000;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.plan-description {
    color: #a0a0a0;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.price-period {
    color: #a0a0a0;
    font-size: 1rem;
    margin-left: 8px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.pricing-features h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    color: #a0a0a0;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.pricing-features .not-included li {
    color: #666666;
}

.pricing-info {
    text-align: center;
    color: #a0a0a0;
}

.credit-breakdown {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.credit-breakdown h3 {
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.credit-item {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
    font-size: 14px;
}

.credit-item:last-child {
    border-bottom: none;
}

.credit-item strong {
    color: #00ff88;
    font-weight: 600;
}

.text-link {
    color: #00cc88;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0b0b0b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 24px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #222222;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #222222;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #a0a0a0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
    background: #111111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-form-container p,
.contact-info p {
    color: #a0a0a0;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00cc88;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00cc88;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    color: #a0a0a0;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contact-details a {
    color: #00cc88;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.office-info {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 24px;
}

.office-info h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.office-info p {
    color: #a0a0a0;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Help Resources Section */
.help-resources {
    padding: 80px 0;
    background: #0b0b0b;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.resource-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #00cc88;
    transform: translateY(-4px);
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: #222222;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #00cc88;
}

.resource-icon svg {
    width: 32px;
    height: 32px;
}

.resource-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.resource-card p {
    color: #a0a0a0;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Authentication Styles */
.auth-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.auth-header p {
    color: #a0a0a0;
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #222222;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00cc88;
}

.password-strength {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.strength-weak {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.strength-medium {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
}

.strength-strong {
    color: #00cc88;
    background: rgba(0, 204, 136, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: #ffffff;
}

.checkbox-label:hover .checkmark {
    border-color: #00cc88;
    background: #333333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid #333333;
    border-radius: 4px;
    background: #222222;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00cc88;
    border-color: #00cc88;
    box-shadow: 0 0 0 3px rgba(0, 204, 136, 0.3);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-shadow: none;
    font-family: 'Arial', sans-serif;
    z-index: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333333;
}

.divider span {
    background: #1a1a1a;
    padding: 0 16px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333333;
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Verification Code Styles */
.verification-info {
    text-align: center;
    margin-bottom: 32px;
}

.verification-icon {
    width: 64px;
    height: 64px;
    background: #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #00cc88;
}

.verification-icon svg {
    width: 32px;
    height: 32px;
}

.verification-info h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.verification-info p {
    color: #a0a0a0;
    margin-bottom: 8px;
}

.verification-note {
    font-size: 0.9rem;
    color: #666666;
}

.verification-code-container {
    margin-bottom: 24px;
}

.verification-code-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.code-input {
    width: 48px;
    height: 48px;
    border: 2px solid #333333;
    border-radius: 8px;
    background: #222222;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.3s ease;
}

.code-input:focus {
    outline: none;
    border-color: #00cc88;
}

.verification-error {
    color: #ff4444;
    font-size: 0.9rem;
    text-align: center;
    min-height: 20px;
}

.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-text {
    background: none;
    border: none;
    color: #00cc88;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #00ffaa;
}

/* Setup Styles */
.setup-info {
    text-align: center;
    margin-bottom: 32px;
}

.setup-icon {
    width: 64px;
    height: 64px;
    background: #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #00cc88;
}

.setup-icon svg {
    width: 32px;
    height: 32px;
}

.setup-info h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.setup-info p {
    color: #a0a0a0;
}

/* Responsive Design for Auth */
@media (max-width: 768px) {
    .auth-card {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .verification-code-inputs {
        gap: 8px;
    }
    
    .code-input {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Payment Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #333333;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #333333;
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close {
    color: #a0a0a0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 32px;
}

.card-element {
    background: #222222;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.card-element:focus-within {
    border-color: #00cc88;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 8px;
    min-height: 20px;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #222222;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00cc88;
}

.form-group input::placeholder {
    color: #666666;
}

/* Payment Button States */
#submit-payment {
    position: relative;
    overflow: hidden;
}

#submit-payment:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submit-payment.loading {
    background: #333333;
}

#submit-payment.loading #button-text {
    opacity: 0;
}

#submit-payment.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-body {
        padding: 24px;
    }
}

/* Plan selection styles */
.plan-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.plan-option {
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-option:hover {
    border-color: #00cc88;
    transform: translateY(-2px);
}

.plan-option.selected {
    border-color: #00cc88;
    background: rgba(0, 204, 136, 0.05);
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-header h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-price .price {
    font-size: 32px;
    font-weight: 800;
    color: #00cc88;
}

.plan-price .period {
    font-size: 16px;
    color: #888;
}

.plan-price-yearly {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
}

.plan-price-yearly .savings {
    background: #00cc88;
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.plan-features {
    margin-bottom: 20px;
}

.plan-features p {
    margin: 8px 0;
    color: #ccc;
    font-size: 14px;
}

.billing-toggle {
    text-align: center;
    margin: 20px 0;
}

.billing-toggle .toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #ccc;
}

.billing-toggle .toggle-label input[type="checkbox"] {
    display: none;
}

.billing-toggle .toggle-slider {
    width: 48px;
    height: 24px;
    background: #2a2a2a;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.billing-toggle .toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #888;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.billing-toggle .toggle-label input[type="checkbox"]:checked + .toggle-slider {
    background: #00cc88;
}

.billing-toggle .toggle-label input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(24px);
    background: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #00cc88;
    color: #00cc88;
}

.btn-outline:hover {
    background: #00cc88;
    color: #000;
}

/* Form response messages */
.form-response {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.success-message {
    background: rgba(0, 204, 136, 0.1);
    border: 1px solid #00cc88;
    color: #00cc88;
}

.error-message {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid #ff3b30;
    color: #ff3b30;
}

/* Signup error message */
.signup-error-message {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.signup-error-message .error-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.signup-error-message .error-text {
    flex: 1;
}

/* Ensure checkbox input is hidden for custom styling */
.checkbox-label input[type="checkbox"] {
    display: none !important;
} 