/* Landing Page New Design CSS */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;

}

/* Header Styles */
.landing-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* for absolute mobile dropdown */
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0296d8;
    text-decoration: none;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative; /* ensure active underline positions to the link, not the li */
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    color: #0296d8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #0296d8;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-menu-toggle:hover { background: #f3f4f6; }

.mobile-menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    margin: 3px 0;
    border-radius: 2px;
}

.btn-primary {
    background: #0296d8;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0296d8;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #333;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #0296d8, #0296d8);
    color: white;
    padding: 1.25rem 0;
    text-align: center;
    position: relative;
    margin-top: 80px; /* Account for fixed header */
}

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

.new-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.banner-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-close {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to left bottom, #69d6ec, #fff, #fff, #fff, #fff);
    padding: 4rem 0 6rem;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #0296d8;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.btn-hero-primary {
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
    background: #0296d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: #333;
    padding: 1rem 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero-placeholder-image {
    width: 150%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

/* Wizard Section (What's in it for you) */
.wizard-section {
    padding: 5rem 0 6rem;
    background-image: linear-gradient(to bottom left, #fff, #fff, #fff, #fff, #69d6ec);
}

.wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wizard-eyebrow {
    color: #0296d8;
    font-weight: 700;
    text-align: center;
    font-size: 1.25rem;
}

.wizard-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.wizard-subtitle {
    text-align: center;
    color: #4b5563;
    margin-top: 0.75rem;
}

.wizard-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.wizard-cta .btn-primary {
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
}

.wizard-content {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.wizard-devices {
    position: relative;
}

.device-laptop {
    width: 100%;
    border-radius: 16px;

}

.device-phone {
    position: absolute;
    right: 8%;
    bottom: 0%;
    width: 26%;
    border-radius: 24px;
}

.wizard-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border: 1px solid #f1f5f9;
}


@media (max-width: 992px) {
    .wizard-content {
        grid-template-columns: 1fr;
    }
    .device-phone {
        position: static;
        width: 45%;
        margin: 1rem auto 0;
        display: block;
    }
    /* Tablet (iPad) spacing tweaks */
    .nav-menu { gap: 1rem; }
    .header-container { padding: 0 1rem; }
    .btn-primary { padding: 0.6rem 1.1rem; }
    .btn-outline { padding: 0.5rem 1rem; }
    .nav-link { font-size: 0.95rem; white-space: nowrap; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-toggle { display: inline-flex; }

    /* Hide inline menu and actions by default on mobile */
    .nav-menu { display: none; }
    .header-actions { display: none; }

    /* Dropdown container under header */
    #mobileMenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
        display: none;
    }

    /* Open state */
    .landing-header.open #mobileMenu { display: block; }
    .landing-header.open .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem;
    }
    .landing-header.open .nav-item { border-bottom: 1px solid #f3f4f6; }
    .landing-header.open .nav-link { padding: 0.75rem 0; display: block; }
    .landing-header.open .header-actions {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    /* Ensure content clears fixed header when banner is hidden on mobile */
    .main-wrapper { margin-top: 72px; }

    .btn-primary,
    .btn-outline {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Remove active underline/line for nav links on mobile */
    .nav-link.active::after { display: none; }
}

/* Feature Section */
.feature-section {
    padding: 5rem 0;
    background-image: radial-gradient(circle, #69d6ec, #69d6ec, #d5f7ff, #ffffff, #ffffff);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.feature-eyebrow {
    color: #0296d8;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.feature-cta {
    margin-bottom: 3rem;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: white;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-tab:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.feature-tab.active {
    background: #1f2937;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 2rem;
}


.dashboard-menu-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
}

.dashboard-menu-btn:hover {
    background: #f3f4f6;
}

.dashboard-content {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.feature-description-section {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
}

.feature-tab-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-tab-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.feature-benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.dashboard-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #dcdada;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .feature-tabs {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-image {
        max-width: 100%;
    }

    .feature-description-section {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .feature-tab-title {
        font-size: 1.5rem;
    }

    .feature-tab-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .feature-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .feature-benefits li {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-image: linear-gradient(to bottom left, #69d6ec, #fff, #fff, #fff, #69d6ec);
    color: #1f2937;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0296d8;
    margin-bottom: 2rem;
}

.pricing-cta {
    margin-bottom: 3rem;
}

.pricing-cta .btn-primary {
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-cta .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    color: #1f2937;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 340px;
    justify-self: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    grid-column: 2;
}

.pricing-card.enterprise {
    grid-column: 2;
}


.plan-badge {
    background: #1f2937;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin: 0 auto 1rem auto;
    text-align: center;
    width: fit-content;
}

.plan-tagline {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0296d8;
    margin-bottom: 2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    color: #374151;
    font-weight: 500;
}

.feature-text.highlight {
    color: #ef4444;
    font-weight: 700;
}

.plan-button {
    width: 100%;
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.plan-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.plan-button.enterprise {
    background: #1f2937;
}

.plan-button.enterprise:hover {
    background: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        grid-column: 1;
        transform: none;
        margin-bottom: 1rem;
    }

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

    .pricing-title {
        font-size: 2rem;
    }
}

/* Footer Widget Section */
.footer-widget {
    padding: 5rem 0;
    background: #f8fafc;
}

.footer-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-widget-card {
    background:
        radial-gradient(1200px 500px at 65% 15%, rgba(124, 58, 237, 0.85) 0%, rgba(124, 58, 237, 0.0) 60%),
        radial-gradient(900px 450px at 30% 70%, rgba(6, 182, 212, 0.8) 0%, rgba(6, 182, 212, 0.0) 60%),
        linear-gradient(180deg, #0b1220 0%, #0b1220 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto;
}

.footer-widget-left {
    background: transparent;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

.footer-widget-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-widget-logo-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-widget-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-widget-subtitle {
    font-size: 0.9rem;
    color: #e5e7eb;
    font-weight: 500;
    margin-top: -0.5rem;
}

.footer-widget-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-widget-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
}

.footer-widget-button {
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.footer-widget-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: white;
}

.footer-widget-right {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.footer-widget-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    margin-top: 24px; /* requested slight downward shift */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-widget-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
        max-width: 100%;
    }

    .footer-widget-left {
        padding: 2rem;
    }

    .footer-widget-right {
        padding: 1rem;
    }

    .footer-widget-image {
        border-radius: 16px;
        margin-top: 0;
    }

    .footer-widget-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .footer-widget-left {
        padding: 1.5rem;
    }

    .footer-widget-title {
        font-size: 1.8rem;
    }

    .footer-widget-description {
        font-size: 1rem;
    }
}

/* Contact Page */
.contact-hero {
    background: #f8fafc;
    color: #000;
    padding: 2rem 0;
    text-align: center;
}

.contact-hero-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.contact-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-subtitle { font-size: 1.1rem; opacity: 0.95; }

.contact-section { padding: 2rem 0; background: #ffffff; }
.contact-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }

.contact-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}

.contact-card-title { font-size: 1.25rem; font-weight: 700; color: #1f2937; margin-bottom: 1rem; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form .form-row .full { grid-column: 1 / -1; }
.contact-form .form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form label { font-weight: 600; color: #374151; }
.contact-form input, .contact-form textarea {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #93c5fd; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9ca3af; }
.contact-form .form-actions { margin-top: 0.5rem; }

.contact-aside {
    position: sticky;
    top: 100px;
}

.contact-info { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 16px; padding: 1.5rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-label { display: block; font-size: 0.85rem; color: #6b7280; }
.contact-value { color: #1f2937; text-decoration: none; }
.contact-value:hover { color: #0296d8; }
.contact-socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link { color: #0296d8; text-decoration: none; font-weight: 600; }
.social-link:hover { text-decoration: underline; }

.contact-cta { background: #f8fafc; padding: 3rem 0; text-align: center; margin-top: 2rem; margin-bottom: 4rem; }
.contact-cta-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.contact-cta-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.contact-cta-subtitle { color: #4b5563; }
.contact-cta-subtitle a { color: #0296d8; text-decoration: none; }
.contact-cta-subtitle a:hover { text-decoration: underline; }

/* Activation (Email Code) Section */
.activation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 16px 48px; /* account for fixed header */
    background: #ffffff;
}

.activation-container {
    width: 100%;
    max-width: 520px;
}

.activation-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
    padding: 24px;
}

.activation-title { font-size: 1.25rem; font-weight: 700; color: #1f2937; margin: 0 0 0.25rem 0; }
.activation-subtitle { color: #6b7280; font-size: 0.95rem; }
.activation-form { margin-top: 1rem; }
.activation-input { width: 100%; border: 1px solid #e5e7eb; border-radius: 10px; padding: 0.85rem 1rem; font-size: 1rem; }
.activation-actions { margin-top: 0.75rem; }
.activation-actions .btn-primary { width: 100%; }

@media (max-width: 768px) {
    .activation-section { padding: 90px 16px 32px; min-height: calc(100vh - 90px); }
}

/* Form Error Alerts */
.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #dc2626;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-error::before {
    content: '⚠';
    margin-right: 0.5rem;
    font-weight: bold;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-aside { position: static; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Landing Footer (blue bar) */
.site-footer-new {
    background: #0ea5e9; /* vivid blue strip */
    color: #ffffff;
    padding: 48px 0;
}

.site-footer-new .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 16px;
}

.site-footer-new .socials {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-footer-new .socials img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.site-footer-new .copyright {
    text-align: center;
    font-weight: 500;
}

.site-footer-new .producer {
    text-align: right;
}

.site-footer-new .producer a {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .site-footer-new .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .site-footer-new .socials { justify-content: center; }
    .site-footer-new .producer { text-align: center; }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.faq-accordion .accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0296d8, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.faq-accordion .accordion-item:hover::before {
    transform: scaleX(1);
}

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

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    background: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    width: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    box-shadow: none;
    cursor: pointer;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #0296d8;
    box-shadow: none;
    border-radius: 12px 12px 0 0;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-color: transparent;
    outline: none;
}

.faq-accordion .accordion-button::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #6b7280;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    line-height: 1;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    color: #0296d8;
    background: #e0f2fe;
    transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-button:hover {
    background: #f8fafc;
    color: #0296d8;
    transform: translateX(4px);
}

.faq-accordion .accordion-button:hover::after {
    color: #0296d8;
    background: #e0f2fe;
    transform: translateY(-50%) scale(1.1);
}

.faq-accordion .accordion-button:not(.collapsed):hover::after {
    transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.faq-accordion .accordion-collapse {
    border: none;
    background: #ffffff;
}

.faq-accordion .accordion-collapse.collapse {
    display: none;
}

.faq-accordion .accordion-collapse.collapse.show {
    display: block;
}

.faq-accordion .accordion-collapse.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion .accordion-body {
    padding: 0 2rem 2rem 2rem;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    animation: fadeInUp 0.4s ease-out;
}

.faq-accordion .accordion-body p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    animation: fadeIn 0.3s ease-out 0.1s both;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced transition for smooth accordion behavior */
.faq-accordion .accordion-collapse {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-accordion .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-accordion .accordion-button::after {
        right: 1.5rem;
        font-size: 1.25rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-accordion .accordion-body p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 1rem;
    }

    .faq-accordion .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-accordion .accordion-button::after {
        right: 1.25rem;
        font-size: 1.1rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* About Section Styles */
.about-hero-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23cbd5e1" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23cbd5e1" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23cbd5e1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.about-hero-text {
    max-width: 500px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1f2937;
}

.about-hero-title .highlight {
    color: #0296d8;
    position: relative;
}

.about-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0296d8, #3b82f6);
    border-radius: 2px;
}

.about-hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0296d8, #3b82f6);
    border-radius: 2px;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0296d8, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card.primary {
    background: linear-gradient(135deg, #0296d8 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.process-card.danger {
    background: linear-gradient(135deg, #fd8a98 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.process-card.success {
    background: linear-gradient(135deg, #34d399 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.process-card.light {
    background: linear-gradient(135deg, #a78bfa 0%, #f1f5f9 100%);
    border-color: #e2e8f0;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.process-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.process-card.primary .process-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.process-card.danger .process-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.process-card.success .process-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.process-card.light .process-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.process-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.process-card-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.stats-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .stats-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 3rem 0 4rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1.1rem;
    }

    .process-section {
        padding: 3rem 0;
    }

    .process-title {
        font-size: 2rem;
    }

    .stats-section {
        padding: 3rem 0;
    }

    .stats-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Checkout Content Styles */
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 50px !important;
}

.checkout-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.checkout-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.checkout-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.checkout-card-header {
    background: linear-gradient(135deg, #69d6ec 0%, #f1f5f9 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-card-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.checkout-card-body {
    padding: 2rem;
    background: #ffffff;
}

.checkout-plan-info h5 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.checkout-plan-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.checkout-plan-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0296d8;
    margin-bottom: 1.5rem;
}

.checkout-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.checkout-features-list .fas {
    color: #0296d8;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.checkout-features-list .text-primary {
    color: #0296d8 !important;
    font-weight: 600;
}

.checkout-billing-section {
    background: #ffffff;
}

.checkout-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #374151;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.checkout-form-select:focus {
    outline: none;
    border-color: #0296d8;
    box-shadow: 0 0 0 3px rgba(2, 150, 216, 0.1);
}

.checkout-billing-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
}

.checkout-billing-details p {
    margin: 0;
    color: #6b7280;
}

.checkout-billing-details span {
    font-weight: 600;
    color: #1f2937;
}

.checkout-divider {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-total h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.checkout-total span {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0296d8;
}

.checkout-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

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

.checkout-btn-primary {
    width: 100%;
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 150, 216, 0.3);
}

.checkout-btn-primary .fa {
    font-size: 0.9rem;
}

.checkout-terms {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-terms small {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

.checkout-terms a {
    color: #0296d8;
    text-decoration: none;
    font-weight: 600;
}

.checkout-terms a:hover {
    text-decoration: underline;
}

.checkout-btn-secondary {
    width: 100%;
    background: #6b7280;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.checkout-btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-container {
        padding: 1rem;
    }

    .checkout-card-body {
        padding: 1.5rem;
    }

    .checkout-card-header {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 0.5rem;
    }

    .checkout-card-body {
        padding: 1rem;
    }

    .checkout-card-header {
        padding: 0.75rem 1rem;
    }

    .checkout-plan-info h5 {
        font-size: 1.25rem;
    }

    .checkout-total h5,
    .checkout-total span {
        font-size: 1.1rem;
    }
}

/* Payment Cancel Modal Styles */
.payment-cancel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.payment-cancel-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.payment-cancel-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-cancel-icon {
    width: 80px;
    height: 80px;
    background: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto;
}

.payment-cancel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.payment-cancel-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.payment-cancel-text:last-of-type {
    margin-bottom: 2.5rem;
}

.payment-cancel-btn {
    width: 100%;
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.payment-cancel-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 150, 216, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Payment Cancel */
@media (max-width: 768px) {
    .payment-cancel-container {
        padding: 1rem;
        margin-top: 30px !important;
    }

    .payment-cancel-modal {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .payment-cancel-title {
        font-size: 1.75rem;
    }

    .payment-cancel-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .payment-cancel-container {
        padding: 0.5rem;
        margin-top: 20px !important;
    }

    .payment-cancel-modal {
        padding: 1.5rem 1rem;
    }

    .payment-cancel-title {
        font-size: 1.5rem;
    }

    .payment-cancel-text {
        font-size: 0.95rem;
    }

    .payment-cancel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Payment Success Modal Styles */
.payment-success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.payment-success-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.payment-success-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto;
}

.payment-success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.payment-success-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.payment-success-text:last-of-type {
    margin-bottom: 2.5rem;
}

.payment-success-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
}

.payment-success-details p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.payment-success-details strong {
    color: #1f2937;
    font-weight: 700;
}

.payment-success-btn {
    width: 100%;
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.payment-success-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 150, 216, 0.3);
    color: white;
    text-decoration: none;
}

/* Payment Failure Modal Styles */
.payment-failure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.payment-failure-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.payment-failure-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-failure-icon {
    width: 80px;
    height: 80px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto;
}

.payment-failure-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.payment-failure-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.payment-failure-text:last-of-type {
    margin-bottom: 2.5rem;
}

.payment-failure-btn {
    width: 100%;
    background: #0296d8;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.payment-failure-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 150, 216, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Payment Success */
@media (max-width: 768px) {
    .payment-success-container {
        padding: 1rem;
        margin-top: 30px !important;
    }

    .payment-success-modal {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .payment-success-title {
        font-size: 1.75rem;
    }

    .payment-success-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .payment-success-container {
        padding: 0.5rem;
        margin-top: 20px !important;
    }

    .payment-success-modal {
        padding: 1.5rem 1rem;
    }

    .payment-success-title {
        font-size: 1.5rem;
    }

    .payment-success-text {
        font-size: 0.95rem;
    }

    .payment-success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Responsive Design for Payment Failure */
@media (max-width: 768px) {
    .payment-failure-container {
        padding: 1rem;
        margin-top: 30px !important;
    }

    .payment-failure-modal {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .payment-failure-title {
        font-size: 1.75rem;
    }

    .payment-failure-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .payment-failure-container {
        padding: 0.5rem;
        margin-top: 20px !important;
    }

    .payment-failure-modal {
        padding: 1.5rem 1rem;
    }

    .payment-failure-title {
        font-size: 1.5rem;
    }

    .payment-failure-text {
        font-size: 0.95rem;
    }

    .payment-failure-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Payment Checkout Processing Styles */
.payment-checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.payment-checkout-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.payment-checkout-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-checkout-icon {
    width: 80px;
    height: 80px;
    background: #0296d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 150, 216, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(2, 150, 216, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 150, 216, 0);
    }
}

.payment-checkout-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.payment-checkout-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.payment-checkout-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.payment-checkout-spinner .sk-folding-cube {
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg);
}

.payment-checkout-spinner .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
}

.payment-checkout-spinner .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0296d8;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    transform-origin: 100% 100%;
}

.payment-checkout-spinner .sk-cube2 {
    transform: scale(1.1) rotateZ(90deg);
}

.payment-checkout-spinner .sk-cube3 {
    transform: scale(1.1) rotateZ(180deg);
}

.payment-checkout-spinner .sk-cube4 {
    transform: scale(1.1) rotateZ(270deg);
}

.payment-checkout-spinner .sk-cube2:before {
    animation-delay: 0.3s;
}

.payment-checkout-spinner .sk-cube3:before {
    animation-delay: 0.6s;
}

.payment-checkout-spinner .sk-cube4:before {
    animation-delay: 0.9s;
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/* Responsive Design for Payment Checkout */
@media (max-width: 768px) {
    .payment-checkout-container {
        padding: 1rem;
        margin-top: 30px !important;
    }

    .payment-checkout-modal {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .payment-checkout-title {
        font-size: 1.75rem;
    }

    .payment-checkout-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .payment-checkout-container {
        padding: 0.5rem;
        margin-top: 20px !important;
    }

    .payment-checkout-modal {
        padding: 1.5rem 1rem;
    }

    .payment-checkout-title {
        font-size: 1.5rem;
    }

    .payment-checkout-text {
        font-size: 0.95rem;
    }

    .payment-checkout-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
