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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0f172a;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #374151;
}

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

.nav-brand h2 {
    color: #10b981;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #10b981;
}

.cta-button {
    background: #10b981 !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #059669 !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 90vh;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.primary-button {
    background: #10b981;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #10b981;
}

.primary-button:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
}

.secondary-button {
    color: #e5e7eb;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

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

.portfolio-preview {
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.portfolio-preview:hover {
    transform: perspective(1000px) rotateY(-10deg);
}

.mock-browser {
    background: #334155;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 400px;
}

.browser-bar {
    background: #475569;
    padding: 1rem;
    border-bottom: 1px solid #64748b;
}

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-content {
    padding: 2rem;
    background: #1e293b;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.portfolio-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    animation: float 3s ease-in-out infinite;
}

.portfolio-item:nth-child(2) { animation-delay: 0.5s; }
.portfolio-item:nth-child(3) { animation-delay: 1s; }
.portfolio-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

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

.feature-card {
    background: #334155;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #475569;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Examples Section */
.examples {
    padding: 80px 0;
    background: #0f172a;
}

.examples h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

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

.example-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #475569;
}

.example-card:hover {
    transform: translateY(-5px);
}

.example-image {
    height: 250px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.example-card:nth-child(2) .example-image {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.example-card:nth-child(3) .example-image {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
}

.example-info {
    padding: 1.5rem;
    background: #334155;
}

.example-info h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.example-info p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.example-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.example-link:hover {
    color: #059669;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #334155;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #475569;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e5e7eb;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.author-info h4 {
    font-weight: 600;
    color: #f8fafc;
}

.author-info p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #0f172a;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #334155;
    border: 2px solid #475569;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
}

.pricing-card.featured {
    border-color: #10b981;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.price {
    margin-bottom: 2rem;
}

.currency, .period {
    font-size: 1.5rem;
    color: #94a3b8;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: #e5e7eb;
}

.pricing-button {
    background: #10b981;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
    width: 100%;
}

.pricing-button:hover {
    background: #059669;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e293b;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-section .primary-button {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.cta-section .primary-button:hover {
    background: #059669;
    border-color: #059669;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0f172a;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #475569;
    border-radius: 12px;
    font-size: 1rem;
    background: #334155;
    color: #e5e7eb;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #10b981;
}

.submit-button {
    width: 100%;
    background: #10b981;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #059669;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Additional Page Styles */
.feature-spotlight {
    padding: 80px 0;
    background: #0f172a;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spotlight-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.spotlight-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.spotlight-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.spotlight-list li {
    padding: 0.75rem 0;
    color: #e5e7eb;
    font-size: 1.1rem;
}

.feature-demo {
    display: grid;
    gap: 1.5rem;
}

.demo-card {
    background: #334155;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #475569;
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
}

.demo-card h4 {
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.demo-card p {
    color: #94a3b8;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #1e293b;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

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

.story-card {
    background: #334155;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #475569;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.story-info h4 {
    color: #f8fafc;
    font-weight: 600;
}

.story-info p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.story-content p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Portfolio Features */
.portfolio-features {
    padding: 80px 0;
    background: #0f172a;
}

.portfolio-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

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

.comparison-item {
    text-align: center;
    padding: 2rem;
}

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

.comparison-item h4 {
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Pricing Page Specific */
.pricing-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-cards-preview {
    display: flex;
    gap: 1rem;
    transform: perspective(1000px) rotateY(-15deg);
}

.preview-card {
    background: #334155;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #475569;
    min-width: 120px;
}

.preview-card.featured {
    border-color: #10b981;
    transform: scale(1.1);
}

.preview-card h4 {
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-price {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    color: #e5e7eb;
    font-weight: 500;
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #475569;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #10b981;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-description {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

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

.faq-item {
    background: #334155;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #475569;
}

.faq-item h4 {
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #0f172a;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #334155;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #475569;
}

.comparison-table th {
    background: #1e293b;
    color: #f8fafc;
    font-weight: 600;
}

.comparison-table td {
    color: #e5e7eb;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: #1e293b;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.guarantee-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-item span {
    color: #10b981;
    font-weight: 600;
}

.guarantee-item p {
    color: #e5e7eb;
    margin: 0;
}

.example-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.example-stats span {
    color: #94a3b8;
}

.example-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid,
    .examples-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards-preview {
        transform: none;
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
    }
}