/* 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: #333;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --primary-green: #10b981;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --light-green: #d1fae5;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-600);
    transition: all 0.3s ease;
}

/* Button Styles */
.cta-button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blue-text {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.did-you-know {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 700px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.did-you-know p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
}

.hero-teaser {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-visual {
    margin: 2rem 0;
}

.transformation-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.hero-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.form-group input[type="url"],
.form-group input[type="email"] {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    position: relative;
}

.loading-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.privacy-notice {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 1rem 0;
    text-align: center;
}

/* Benefits Teaser */
.benefits-teaser {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--gray-100);
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    align-items: stretch;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gradient);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    flex: 1;
}

.step-visual {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Preview elements styling */
.form-preview,
.progress-preview,
.mockup-preview {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-element {
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
    color: var(--gray-600);
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--white);
}

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

.example-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.before, .after {
    flex: 1;
    text-align: center;
}

.example-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

/* Testimonials */
.testimonials {
    margin: 4rem 0;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-blue);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--gray-100);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem;
    border: 3px solid var(--primary-blue);
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

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

.setup-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.monthly-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price-label {
    font-size: 1rem;
    color: var(--gray-600);
}

.plus {
    font-size: 2rem;
    color: var(--gray-600);
}

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

.features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: var(--gray-600);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.final-cta .section-title {
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-form {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.form-row input {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    min-width: 300px;
}

.form-row .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    white-space: nowrap;
}

.form-row .cta-button:hover {
    background: var(--gray-100);
}

.urgency {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        content: url('../assets/icons/logo-square.png');
        height: 40px;
        width: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-teaser {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .before-after {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-teaser {
    animation-delay: 0.3s;
}

.hero-visual {
    animation-delay: 0.4s;
}

.hero-form {
    animation-delay: 0.5s;
}

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

.mb-2 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

/* Mobile/Desktop Visibility Classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .did-you-know.mobile-only {
        display: block !important;
        margin: 2rem auto 3rem auto;
    }
    
    .benefits {
        padding-top: 0;
    }
}

/* New Sections Styles */

/* Benefits teaser updates */
.benefit-emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Benefits section updates */
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    display: block;
}

.why-matters {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.why-matters p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-800);
}

/* Visual Examples Section */
.visual-examples {
    padding: 80px 0;
    background: var(--gray-100);
}

.example-details {
    text-align: left;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.example-details p {
    margin-bottom: 1rem;
}

.example-details p:last-child {
    margin-bottom: 0;
}

.examples-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--primary-green);
}

.examples-summary p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-800);
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.comparison-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.comparison-result {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bottom-line {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-green);
}

.bottom-line p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-800);
    line-height: 1.6;
}

/* Final CTA Section Updates */
.final-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem auto;
    text-align: left;
    max-width: 800px;
}

@media (max-width: 768px) {
    .final-benefits {
        grid-template-columns: 1fr;
    }
}

.final-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
    height: 120px;
}

.final-benefit span {
    color: var(--gray-800);
}

.check-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.final-message {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin: 2rem 0;
    line-height: 1.6;
}

.support-note {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gray-100);
}

/* Individual step-visual positioning */
#step-visual-1 {
    margin-top: 128px;
}

#step-visual-2 {
    margin-top: 25px;
}

