/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
    background-image: linear-gradient(135deg, #f0f0f0 0%, #e0f7fa 100%);
}

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

/* Header */
header {
    padding: 30px 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #3f51b5;
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo span {
    color: #ff4081;
    font-style: italic;
}

/* Hero section */
.hero {
    padding: 100px 0 120px;
    text-align: center;
    background-image: linear-gradient(135deg, #a7ffeb 0%, #84ffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M95,50 C95,75 75,95 50,95 C25,95 5,75 5,50 C5,25 25,5 50,5 C75,5 95,25 95,50 Z" fill="none" stroke="%23ffffff" stroke-width="0.5" /></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #3f51b5;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0 rgba(255, 64, 129, 0.2);
}

.hero-tagline {
    font-size: 24px;
    font-style: italic;
    color: #ff4081;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: block;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.hero p {
    font-size: 20px;
    color: #455a64;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* Enhanced Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1" fill="%233f51b5" opacity="0.05" /></svg>');
    opacity: 0.5;
    z-index: 0;
}

.section-title {
    font-size: 40px;
    margin-bottom: 60px;
    color: #3f51b5;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature {
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1) 0%, rgba(255, 64, 129, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.5s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(63, 81, 181, 0.15);
    border-color: rgba(63, 81, 181, 0.3);
}

.feature:hover::before {
    transform: scale(2);
    opacity: 0.1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    margin-bottom: 25px;
    transform: rotate(-3deg);
    box-shadow: 5px 5px 0 rgba(255, 64, 129, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 8px 8px 0 rgba(255, 64, 129, 0.4);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index:, 1;
    flex: 1;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3f51b5;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature:hover h3 {
    transform: translateY(-2px);
    color: #5c6bc0;
}

.feature h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    transition: width 0.3s ease;
}

.feature:hover h3::after {
    width: 100%;
}

.feature p {
    color: #455a64;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1) 0%, rgba(255, 64, 129, 0.1) 100%);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #ff4081;
    margin-top: 10px;
    border-left: 3px solid #3f51b5;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature:hover .feature-highlight {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .feature {
        padding: 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature h3 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

/* Refined How It Works Section Styles */
.how-it-works {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%233f51b5" opacity="0.05" /></svg>');
    opacity: 0.5;
}

.section-title {
    font-size: 40px;
    margin-bottom: 60px;
    color: #3f51b5;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    border-radius: 3px;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #3f51b5, #ff4081);
    border-radius: 5px;
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-right: 40px;
    box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 5px solid white;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 15px 30px rgba(63, 81, 181, 0.4);
}

.step-content {
    flex: 1;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-content::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -12px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-left: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(63, 81, 181, 0.3);
}

.process-step:hover .step-content::before {
    border-color: rgba(63, 81, 181, 0.3);
}

.step-content h3 {
    font-size: 24px;
    color: #3f51b5;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.step-content h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    transition: width 0.3s ease;
}

.process-step:hover h3::after {
    width: 100%;
}

.step-content p {
    color: #455a64;
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.step-detail-item {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1) 0%, rgba(255, 64, 129, 0.1) 100%);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #3f51b5;
    border-left: 2px solid #3f51b5;
    transition: all 0.3s ease;
}

.step-detail-item:hover {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.2) 0%, rgba(255, 64, 129, 0.2) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(63, 81, 181, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .how-it-works {
        padding: 70px 0;
    }
    
    .process-container::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-right: 25px;
    }
    
    .step-content {
        padding: 20px 25px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-detail-item {
        display: inline-block;
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Revised Pricing Section Styles */
.pricing {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0f7fa 100%);
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M85,50 C85,69 69,85 50,85 C31,85 15,69 15,50 C15,31 31,15 50,15 C69,15 85,31 85,50 Z" fill="none" stroke="%233f51b5" stroke-width="0.2" /></svg>');
    opacity: 0.4;
    z-index: 0;
}

.pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-direction: row-reverse; /* Flips the order - benefits on left, price on right */
}

.price-card {
    flex: 0 0 calc(60% - 20px);
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 3px solid rgba(63, 81, 181, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(63, 81, 181, 0.2);
    border-color: rgba(63, 81, 181, 0.5);
}

.price-card-header {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f5f9ff 0%, #f0f7fa 100%);
    border-bottom: 2px solid rgba(63, 81, 181, 0.1);
    position: relative;
}

.price-title {
    color: #3f51b5;
    font-size: 26px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 70px;
    font-weight: 800;
    color: #3f51b5;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.price span {
    font-size: 20px;
    color: #78909c;
    font-weight: normal;
}

.price-divider {
    font-size: 40px;
    font-weight: 600;
    color: #ff4081;
    margin: 0 5px;
}

.price-subtitle {
    color: #455a64;
    font-size: 16px;
    margin-top: 20px;
    font-style: italic;
}

.price-card-body {
    padding: 30px;
    flex: 1;
}

.price-features {
    margin: 0;
}

.price-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #455a64;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-radius: 8px;
}

.price-feature svg {
    margin-right: 12px;
    color: #3f51b5;
    flex-shrink: 0;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.price-feature:hover {
    transform: translateX(5px);
    color: #3f51b5;
}

.price-feature:hover svg {
    transform: scale(1.2);
}

.price-feature.highlight {
    background-color: rgba(63, 81, 181, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-left: -15px;
    margin-right: -15px;
    border-left: 3px solid #3f51b5;
}

.price-feature.highlight span {
    font-weight: 600;
    color: #3f51b5;
}

.price-card-footer {
    padding: 30px;
    border-top: 2px solid rgba(63, 81, 181, 0.1);
    text-align: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, #3f51b5 0%, #5c6bc0 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(63, 81, 181, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

.cta-text {
    margin-right: 10px;
}

.cta-icon {
    display: inline-flex;
    transition: all 0.3s ease;
}

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

/* Benefits Panel Styles */
.pricing-benefits {
    flex: 0 0 calc(40% - 20px);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left-color: #3f51b5;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1) 0%, rgba(255, 64, 129, 0.1) 100%);
    color: #3f51b5;
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 20px;
    color: #3f51b5;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #455a64;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-wrapper {
        flex-direction: column;
    }
    
    .price-card, .pricing-benefits {
        flex: 1 1 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-benefits {
        order: -1; /* Show benefits first on mobile */
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .price-card-header {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 50px;
    }
    
    .price-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .price-divider {
        font-size: 30px;
    }
    
    .benefit-item {
        padding: 20px;
    }
}

/* CTA */
.cta {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(63, 81, 181, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(63, 81, 181, 0.4);
}

.cta:hover::before {
    left: 0;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #3f51b5;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
}

.brand-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.brand-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-credit a:hover {
    color: #ff4081;
}

/* Modal Overlay Styles - REDESIGNED */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(63, 81, 181, 0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 3px solid rgba(255, 64, 129, 0.3);
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-close::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 64, 129, 0.5);
    transition: all 0.3s ease;
    z-index: -1;
}

.modal-close:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-close:hover::before {
    left: 0;
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 70px);
}

body.modal-open {
    overflow: hidden;
}

/* Progress indicator for modal steps - REDESIGNED */
.step-indicator {
    display: flex;
    padding: 15px 20px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e0e0e0;
    justify-content: center;
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 0 6px;
    transition: all 0.3s ease;
    position: relative;
}

.step-dot.active {
    background-color: #3f51b5;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(63, 81, 181, 0.2);
}

.step-dot.completed {
    background-color: #ff4081;
}

/* REDESIGNED FORM STYLES */
.order-form {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}

.order-form h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #3f51b5;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.order-form h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    border-radius: 3px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    border: 2px solid #e0e0e0;
}

.form-step {
    display: none;
    padding: 40px;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

.form-step h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #3f51b5;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.form-step h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #3f51b5;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.form-group label::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 30px;
}

.form-hint {
    display: block;
    font-size: 14px;
    color: #78909c;
    margin-top: 8px;
    font-style: italic;
    transition: color 0.3s ease;
}

.form-group:focus-within .form-hint {
    color: #ff4081;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #455a64;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3f51b5;
    box-shadow: 0 0 0 4px rgba(63, 81, 181, 0.1);
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0bec5;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    border: 1px solid #e0e0e0;
}

.checkbox-container:hover {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.checkbox-container input {
    margin-right: 10px;
    accent-color: #3f51b5;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-text {
    color: #455a64;
    font-weight: 500;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    align-items: center;
}

.form-back-btn {
    padding: 14px 26px;
    background-color: #f5f5f5;
    color: #455a64;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-back-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    transition: right 0.3s ease;
    z-index: -1;
}

.form-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-back-btn:hover::before {
    right: 0;
}

.form-next-btn,
.submit-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(63, 81, 181, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-next-btn::before,
.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.form-next-btn:hover,
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(63, 81, 181, 0.4);
}

.form-next-btn:hover::before,
.submit-btn:hover::before {
    left: 0;
}

.form-next-btn:active,
.submit-btn:active,
.form-back-btn:active {
    transform: translateY(1px);
}

/* Redesigned Order Summary */
.order-summary {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.order-summary:hover {
    border-color: #3f51b5;
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.1);
}

.order-summary h4 {
    font-size: 20px;
    color: #3f51b5;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.order-summary h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.summary-item:hover {
    padding-left: 5px;
    padding-right: 5px;
}

.summary-label {
    font-weight: 500;
    color: #455a64;
}

.summary-value {
    font-weight: 600;
    color: #3f51b5;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #3f51b5;
    font-weight: 700;
    font-size: 18px;
}

.summary-total .summary-value {
    color: #ff4081;
    font-size: 22px;
}

/* Redesigned Payment Section */
.payment-options {
    margin-bottom: 30px;
}

.payment-options h4 {
    font-size: 20px;
    color: #3f51b5;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.payment-options h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3f51b5, #ff4081);
}

.payment-info {
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 3px solid #3f51b5;
    color: #455a64;
    line-height: 1.5;
    font-size: 15px;
    text-align: left;
}

.payment-methods-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-icon svg {
    width: 30px;
    height: 30px;
    stroke: #3f51b5;
}

.payment-icon span {
    font-size: 14px;
    color: #455a64;
    font-weight: 500;
}

.payment-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
    text-align: center;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 6px;
    display: none;
}

.payment-message.error {
    background-color: rgba(211, 47, 47, 0.1);
    border-left: 3px solid #d32f2f;
}

.payment-message.success {
    color: #388e3c;
    background-color: rgba(56, 142, 60, 0.1);
    border-left: 3px solid #388e3c;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

/* Redesigned Success Step */
.success-step {
    text-align: center;
    padding: 60px 40px;
    animation: fadeIn 0.8s ease forwards;
}

.success-message {
    max-width: 550px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(63, 81, 181, 0.3);
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 64, 129, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
    position: relative;
    z-index: 1;
}

.success-message h3 {
    font-size: 28px;
    color: #3f51b5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.success-message p {
    color: #455a64;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.success-reference {
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    color: #3f51b5;
}

.success-reference:hover {
    border-color: #3f51b5;
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.1);
    transform: translateY(-3px);
}

.success-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.success-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #3f51b5 0%, #7986cb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(63, 81, 181, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.success-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(63, 81, 181, 0.4);
}

.success-button:hover::before {
    left: 0;
}

.success-timeline {
    max-width: 550px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 30px;
}

.success-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #3f51b5, #ff4081);
    border-radius: 4px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    text-align: left;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #3f51b5;
    z-index: 1;
}

.timeline-content {
    background-color: #f8fafc;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #3f51b5;
}

.timeline-title {
    font-weight: 600;
    color: #3f51b5;
    margin-bottom: 5px;
}

.timeline-text {
    color: #455a64;
    font-size: 14px;
}

/* Pout animation for logo */
@keyframes pout {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.logo:hover {
    animation: pout 1s infinite;
}

/* Blue Steel Overlay Effect 
.blue-steel {
    position: relative;
}

.blue-steel::after {
    content: "Really, really, ridiculously good landing pages";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #ff4081;
    font-style: italic;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blue-steel:hover::after {
    opacity: 1;
} */

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        padding: 40px 20px;
    }

    .process-container::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 20px;
    }
    
    .step-content {
        padding: 15px 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .form-step {
        padding: 30px 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .payment-methods-preview {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .payment-icon {
        flex: 1;
        min-width: 80px;
    }

    .success-actions {
        flex-direction: column;
    }
}




