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

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 50%, #4f46e5 100%);
    min-height: 100vh;
}

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

/* Header Section */
.header-section {
    padding: 20px 0;
    background: url('images/BACKGROUND.png') center/cover no-repeat;
    background-attachment: fixed;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 210px;
    height: auto;
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('images/BACKGROUND.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.highlight {
    color: #a91efe;
}

.hero-subtitle {
    background: rgba(124, 58, 237, 0.5);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.subtitle-line {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.subtitle-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 15px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #7c3aed;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: white;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.cta-button.secondary:hover {
    background: #7c3aed;
    color: white;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.5rem;
}

/* Hero Right Column */
.hero-right {
    position: relative;
}

.images-container {
    position: relative;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.iphone {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.laptop {
    position: relative;
    z-index: 1;
}

/* Payment Form */
.payment-form {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #7c3aed;
}

.form-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-indicator {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    background: #374151;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #7c3aed;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 700;
}

.step-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-content input,
.form-content select {
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-content input:focus,
.form-content select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-submit {
    margin-top: 10px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: white;
    text-align: center;
    opacity: 0.8;
}

/* Step 2 Specific Styles */
.order-summary {
    background: #7c3aed;
    padding: 20px;
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.summary-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.buyer-info {
    color: white;
    margin-bottom: 20px;
}

.buyer-info p {
    margin-bottom: 5px;
}

.payment-info {
    background: #374151;
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}

.payment-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Features Section */
.features-section {
    background: white;
    padding: 80px 0;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-laptop {
    max-width: 80%;
    height: auto;
    z-index: 1;
}

.feature-phone {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 40%;
    height: auto;
    z-index: 2;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: #f3f4f6;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.feature-card.highlight-card {
    background: #7c3aed;
    color: white;
}

.feature-card.highlight-card-2 {
    background: #6d28d9;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.5;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1f2937;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.cta-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.features-bottom-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: url('images/BACKGROUND.png') center/cover no-repeat, #000;
    background-attachment: fixed;
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-social {
    margin-bottom: 10px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.footer-social a:hover {
    color: #7c3aed;
}

.footer-rights {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-steps {
        flex-direction: column;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        padding: 20px;
    }
    
    .payment-form {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for form steps */
.form-step {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for buttons */
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-button:disabled:hover {
    transform: none;
    box-shadow: none;
}