/* Plan-specific button colors */
.standard-btn {
    background: #0366d6;
    box-shadow: 0 2px 8px rgba(3, 102, 214, 0.3);
}

.standard-btn:hover {
    background: #0256cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(3, 102, 214, 0.4);
}

.pro-btn {
    background: #e36209;
    box-shadow: 0 2px 8px rgba(227, 98, 9, 0.3);
}

.pro-btn:hover {
    background: #d15502;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 98, 9, 0.4);
}

.enterprise-btn {
    background: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.enterprise-btn:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Table CTA buttons inherit the same styles */
.table-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 1em;
}

.contact-info h2 {
    margin-bottom: 0.8em;
    margin-top: 0.5em !important;
    color: #1A1A2E;
    font-size: 1.6em;
    font-weight: 300;
}

.contact-info p {
    margin-bottom: 0.5em !important;
    color: #666;
    line-height: 1.6;
}

.contact-info>p:last-of-type {
    margin-bottom: 0.8em !important;
}

.contact-methods {
    margin-top: 0.1em !important;
}

.contact-method {
    margin-bottom: 1.2em;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    transition: none;
}

.contact-method:hover {
    transform: none;
    box-shadow: none;
}

.contact-method h3 {
    margin-top: 0 !important;
    margin-bottom: 0.2em !important;
    color: #1A1A2E;
    font-size: 1.1em;
    font-weight: 600;
}

.contact-method p {
    margin-top: 0 !important;
    margin-bottom: 0.1em !important;
    color: #333;
}

.contact-method a {
    color: #0366d6;
    font-weight: 500;
}

.response-time {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 1.8em;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e4e8;
    margin-top: 0.5em;
}

.form-group {
    margin-bottom: 1.2em;
}

.form-group label {
    display: block;
    margin-bottom: 0.4em;
    font-weight: 500;
    color: #333;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e1e4e8;
    border-radius: 6px;
    font-size: 0.95em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
}

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

.submit-btn {
    background: #0366d6;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0256cc;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== TABLE STYLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e4e8;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}

tbody tr:hover {
    background: #f8f9fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Complete table style reset - Override demo.css */
table th,
table td,
.comparison-table th,
.comparison-table td,
.feature-name,
.standard-col,
.pro-col,
.enterprise-col,
.price-row,
.price-row .standard-col,
.price-row .pro-col,
.price-row .enterprise-col,
.requirement-header td,
.cta-row,
.cta-row td {
    background: transparent !important;
    color: #333 !important;
}

/* Override comparison-table specific styles */
.comparison-table {
    background: white !important;
}

.comparison-table th {
    background: #f8f9fa !important;
}



/* ===== ANTI-SWIPER CORE STYLES ===== */
.anti-swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.anti-swiper-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.anti-swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.anti-swiper-slide video,
.anti-swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Product watermark on index page slides */
body.index-page .anti-swiper-slide::after {
    content: 'Anti-Swiper Pro';
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    z-index: 5;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enterprise demo size fix */
#enterprise-demo {
    width: 100% !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    position: relative !important;
    background: #000 !important;
}

#enterprise-demo .anti-swiper-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

#enterprise-demo .anti-swiper-slide {
    width: 100% !important;
    height: calc(100% + 2px) !important;
    position: absolute !important;
    top: -2px !important;
    left: 0 !important;
}

#enterprise-demo .anti-swiper-slide img,
#enterprise-demo .anti-swiper-slide video {
    max-width: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
}

/* ===== INDEX PAGE SPECIFIC STYLES ===== */
/* Index page main layout */
body.index-page main {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 60px;
}

/* Hero Slider - 75% of main area */
.hero-slider {
    height: 75vh;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

/* Fixed hero overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    z-index: 10;
}

/* Mobile adjustments for index page layout */
@media (max-width: 767px) {
    body.index-page {
        height: 100vh;
        overflow: hidden;
    }

    body.index-page main {
        height: calc(100vh - 120px);
        margin-top: 60px;
        padding: 0;
    }

    .hero-slider {
        height: calc(100vh - 120px) !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .content-section {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .content-grid {
        display: none !important;
    }

    .feature {
        display: none !important;
    }
}