/* Hide Legal footer section */
.footer-section:nth-child(2) {
    display: none;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Ensure all sections don't overflow */
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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



/* Hero Section */
.hero {
    background: #0a0a0a;
    padding: 4rem 0 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-logo .logo-img {
    height: 135px;
    width: auto;
}

.footer .logo-img {
    height: 40px;
    width: auto;
}

.hero-action {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-action-btn {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.hero-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}



.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.accent {
    color: #dc2626;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #e5e7eb;
    padding: 1rem 2rem;
    border: 2px solid #374151;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
}

/* Base H2 Styling */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Widget Section */
.widget-section {
    padding: 6rem 0;
    background: #111111;
}

/* Widget Preview */
.widget-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.widget-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.widget-example-img {
    max-width: 80%;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.widget-example-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}



/* Integration Section */
.integration-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

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



.code-block {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(55, 65, 81, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-language {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.code-content {
    padding: 1.5rem;
}

.code-content code {
    color: #e5e7eb;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    word-break: break-all;
}

.integration-description {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #111111;
}



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

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(31, 41, 55, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

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

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Customization Section */
.customization-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.customization-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.customization-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 500px;
}

.customization-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.custom-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.custom-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.custom-text h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.custom-text p {
    color: #9ca3af;
    line-height: 1.6;
}

.settings-preview {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.settings-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.customize-btn-preview {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.copy-btn-preview {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setting-group h4 {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.setting-group p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

.color-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

.color-set {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.color-box.bg-dark {
    background: #1f2937;
}

.color-box.bg-orange {
    background: #f97316;
}

.color-box.bg-gray {
    background: #6b7280;
}

.color-box.bg-text {
    background: #e5e7eb;
}

.color-box.bg-button-text {
    background: #ffffff;
}

.color-box.bg-links {
    background: #3b82f6;
}

.color-box.bg-offer-titles {
    background: #fbbf24;
}

.color-box.bg-popup-title {
    background: #ffffff;
}

.color-set span {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #111111;
}

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

.benefits-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.metrics-row .metric-value {
    font-size: 1.5rem;
    color: #ffffff;
}

.metric-label {
    font-size: 0.875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-placeholder {
    height: 120px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 4px 4px 0 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #111111;
}

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



.about-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 3rem;
}

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

.about-feature {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(31, 41, 55, 0.8);
    transform: translateY(-4px);
}

.about-feature h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-feature p {
    color: #9ca3af;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #111111;
    position: relative;
}



.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.footer-section:first-child {
    flex: 2;
    max-width: 400px;
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section .logo {
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #dc2626;
    border-radius: 1px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1rem;
}

.contact-email {
    color: #dc2626;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    background: rgba(220, 38, 38, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-email:hover {
    color: #ffffff;
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.contact-email:hover::before {
    left: 100%;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #dc2626;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 2rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-bottom p:hover {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        gap: 2rem;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

    .hero-action {
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .accent {
        white-space: nowrap;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        grid-template-rows: auto auto;
    }

    .benefits-text {
        grid-row: 1;
    }

    .benefits-visual {
        grid-row: 2;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .customization-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section:first-child {
        max-width: none;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul {
        align-items: center;
    }
    
    .footer-section ul li a {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    
    .contact-email {
        display: block;
        text-align: center;
        margin: 1rem auto 3rem auto;
        max-width: 280px;
    }
    
    .color-options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .color-column {
        gap: 0.75rem;
    }
    
    .color-set {
        font-size: 0.875rem;
    }
    
    .color-set span {
        font-size: 0.8rem;
    }
    
    .color-box {
        width: 16px;
        height: 16px;
    }
    
    .metrics-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    
    .metrics-row .metric:last-child {
        grid-column: span 2;
    }
    
    .dashboard-preview {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .benefits-content {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 2rem 0 2rem;
    }
    
    .hero-logo {
        margin-bottom: 1rem;
    }

    .hero-action {
        margin-bottom: 1rem;
    }
    
    .hero-logo .logo-img {
        height: 95px;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .accent {
        white-space: nowrap;
    }

    .benefits-content {
        grid-template-rows: auto auto;
    }

    .benefits-text {
        grid-row: 1;
    }

    .benefits-visual {
        grid-row: 2;
    }
    
    .feature-card,
    .about-feature {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .settings-preview {
        padding: 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    h2 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .code-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .code-content code {
        font-size: 0.875rem;
        white-space: pre-wrap;
        word-break: break-all;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 98%;
        max-width: calc(100vw - 10px);
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    .widget-example-img {
        max-width: 95%;
    }
    
    .widget-preview {
        padding: 0 1rem;
    }
    
    .metrics-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .metrics-row .metric {
        min-width: 120px;
    }
    
    .dashboard-preview {
        padding: 1rem;
        overflow-x: hidden;
    }
    
    .color-options-grid {
        gap: 0.75rem;
    }
    
    .color-set {
        gap: 0.25rem;
    }
    
    .color-set span {
        font-size: 0.75rem;
    }
    
    .footer-content {
        max-width: 350px;
        padding: 0 1rem;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section .logo {
        display: flex;
        justify-content: center;
    }

    .contact-email {
        margin: 1rem auto 3rem auto;
    }
}

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

.hero-content h1,
.hero-content p,
.hero-stats,
.hero-cta {
    animation: fadeInUp 0.8s ease-out;
}

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

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

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

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close {
    color: #9ca3af;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0.5rem;
    margin: -0.5rem;
}

.close:hover {
    color: #dc2626;
}

.modal-body {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    color: #e5e7eb;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(31, 41, 55, 0.8);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: calc(100vw - 20px);
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
} 