/* Anti-Swiper Unified Styles */
/* --- Local Font Definition --- */
@font-face {
    font-family: 'Montserrat';
    src: url('../images/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* FORCE INTER FONT FOR HERO ELEMENTS - MAXIMUM PRIORITY */
body.index-page .hero-overlay h1.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

body.index-page .hero-overlay p.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
}

/* Even more specific */
body.index-page main .hero-slider .hero-overlay h1.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

body.index-page main .hero-slider .hero-overlay p.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
}

/* Background decorative images */
body:not(.index-page)::before {
    content: '';
    position: fixed;
    top: 20%;
    right: -10%;
    width: 300px;
    /* This was the issue */
    height: 200px;
    background: url('../images/img001.jpg') center/cover;
    opacity: 0.03;
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: -1;
}

body:not(.index-page)::after {
    content: '';
    position: fixed;
    bottom: 10%;
    left: -5%;
    width: 250px;
    height: 180px;
    /* This was the issue */
    background: url('../images/img002.jpg') center/cover;
    opacity: 0.03;
    border-radius: 20px;
    transform: rotate(-10deg);
    z-index: -1;
}

/* Page-specific decorative elements */
.content::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -8%;
    width: 150px;
    height: 100px;
    background: url('../images/img003.jpg') center/cover;
    opacity: 0.04;
    border-radius: 15px;
    transform: rotate(25deg);
    z-index: -1;
}

.content {
    position: relative;
    overflow: hidden;
}

/* Index page specific - no scroll */
body.index-page {
    height: 100vh;
    overflow: hidden;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

/* ===== HEADER ===== */
header {
    background: #1A1A2E;
    color: white;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    width: 100vw;
}

.header-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    box-sizing: border-box !important;
}

.logo {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex !important;
    align-items: center;
    height: 60px;
}

.logo span.light {
    font-weight: 300;
    margin-left: 0.2em;
    margin-right: 0.2em;
}

.logo span.rubik {
    color: #E94560;
}



nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover,
nav a.active {
    color: #E94560;
}

/* ===== FOOTER ===== */
footer {
    background: #1A1A2E;
    color: white;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    width: 100vw;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    box-sizing: border-box !important;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-links a:hover {
    color: #E94560;
}

.copyright {
    color: #666;
    font-size: 0.7rem;
}

.copyright a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #E94560;
    text-decoration: none;
}

/* ===== MAIN CONTENT ===== */
main {
    margin-top: 60px;
    position: relative;
}



/* Default main for other pages */
body:not(.index-page) main {
    width: 100%;
    padding: 30px 0 80px 0;
    min-height: calc(100vh - 120px);
}

body:not(.index-page) main>* {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* PC版でより狭い幅に調整 */
@media (min-width: 1024px) {
    body:not(.index-page) main>* {
        max-width: 900px;
    }
}

h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.8em;
    font-weight: 300;
    margin-bottom: 0.3em;
    text-align: center;
    letter-spacing: 0.5px;
    color: #1A1A2E;
    position: relative;
    z-index: 1;
}

/* Make ANTI bold in h1 */
h1 .bold {
    font-weight: 700;
}

/* Logo-style effect for h1 - same color */
h1::after {
    content: attr(data-light);
    font-weight: 300;
    margin-left: 0.2em;
    color: #1A1A2E;
}

/* Index page h1 override - keep white text */
body.index-page h1 {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
}

.subtitle {
    color: #666;
    font-size: 1em;
    text-align: center;
    margin-bottom: 8em;
    position: relative;
}

.subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    margin: 10px auto 0;
    border-radius: 2px;
}

.content {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding-top: 0.25em !important;
    border-radius: 12px;
    padding: 2px 45px 40px 45px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    font-size: 1.05em;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.content h2 {
    color: #1A1A2E;
    margin-top: 1.2em !important;
    margin-bottom: 1.0em !important;
    font-size: 1.9em;
    font-weight: 300;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 25px;
}

/* Specific h2 before step-box */
.content h2+p+.step-box {
    margin-top: 0.5em !important;
}

.content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content h2.no-border::before {
    display: none;
}

body.company-page .content h2.values-title {
    margin-top: 0.2em !important;
}

/* All pages except index page - tighter h2 spacing */
body:not(.index-page) .content h2 {
    margin-bottom: 0.5em;
}

.content h3 {
    color: #333;
    margin-top: 2em;
    margin-bottom: 0.8em;
    font-size: 1.4em;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.content p {
    margin-bottom: 1.2em;
}

/* Content area text links only */
.content a:not(.get-plan-btn):not(.contact-btn):not(.hero-button):not(.submit-btn):not(.table-cta-btn):not(.standard-btn):not(.pro-btn):not(.enterprise-btn) {
    color: #E94560 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.content a:not(.get-plan-btn):not(.contact-btn):not(.hero-button):not(.submit-btn):not(.table-cta-btn):not(.standard-btn):not(.pro-btn):not(.enterprise-btn):hover {
    color: #0366d6 !important;
    text-decoration: none !important;
}

.content pre {
    background: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    margin: 1em 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    background: #f6f8fa;
    padding: 2px 4px;
    border-radius: 3px;
}

.content pre code {
    background: none;
    padding: 0;
}

/* Code copy button */
.code-container {
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f1f3f4;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75em;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.copy-btn:hover {
    background: #e8eaed;
    border-color: #c4c7c5;
}

.copy-btn.copied {
    background: #e8f5e8;
    color: #137333;
    border-color: #81c995;
}

.content ul,
.content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
    padding-left: 0;
}

.content li {
    margin-bottom: 0.5em;
}

/* FAQ styles - remove accordion plus signs */
.faq-question::after {
    display: none !important;
}

.faq-question::before {
    display: none !important;
}

/* Remove any accordion functionality */
.faq-question {
    cursor: default !important;
    position: relative;
}

.faq-q-marker {
    font-weight: 600;
    color: #E94560;
    margin-right: 0.5em;
}

/* ===== DEMO PAGE STYLES ===== */
/* Demo page specific subtitle spacing */
body .subtitle {
    margin-bottom: 2em !important;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    margin: 1em auto 8em auto !important;
    padding: 0;
    min-height: 400px;
    max-width: 1100px;
    width: 100%;
}



.demo-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.demo-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.demo-slider {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    position: relative;
    margin-bottom: 15px;
    min-height: 350px;
    min-width: 350px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    pointer-events: none;
    text-align: center;
    line-height: 1.4;
}

.demo-info {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.get-plan-btn {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Align buttons to the bottom of the demo cards */
.demo-item .get-plan-btn {
    margin-top: auto;
}

.coming-soon {
    opacity: 0.6;
}

.coming-soon .get-plan-btn {
    background: #6c757d;
    cursor: not-allowed;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 2em !important;
    margin-bottom: 2em;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e1e4e8;
    font-size: 0.9em;
    width: 25%;
}

th:first-child,
td:first-child {
    width: 25%;
    text-align: left;
}

th {
    background: #f6f8fa;
    font-weight: bold;
    color: #333;
}

.feature-name {
    text-align: left;
    font-weight: 500;
    background: #fafbfc;
}

.standard-col {
    background: rgba(3, 102, 214, 0.05);
}

.pro-col {
    background: rgba(255, 193, 7, 0.05);
}

.enterprise-col {
    background: rgba(40, 167, 69, 0.05);
}

.check {
    color: #28a745;
    font-size: 1.1em;
}

.cross {
    color: #dc3545;
    font-size: 1.1em;
}

.limited {
    color: #ffc107;
    font-size: 0.8em;
}

.price-row {
    font-weight: bold;
}

.price-row .standard-col {
    color: #0366d6;
}

.price-row .pro-col {
    color: #e36209;
}

.price-row .enterprise-col {
    color: #28a745;
}

/* Additional Notes */
.additional-notes {
    margin-top: 2em !important;
    padding: 2em;
    background: #f8f9fa;
    border-radius: 8px;
}

.additional-notes h3 {
    text-align: center;
    margin-bottom: 1.5em;
    color: #333;
}

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

.note-item {
    background: white;
    padding: 1.8em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.note-item h4 {
    margin-bottom: 1em;
    color: #333;
    font-size: 1.1em;
}

.note-item p {
    margin-bottom: 1em;
    color: #666;
    line-height: 1.5;
}

.note-content {
    height: 4em;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1em;
}

.note-button {
    margin-bottom: 1em;
}

.note-list {
    flex-grow: 1;
}

.note-item ul {
    margin: 0;
    padding-left: 1.2em;
}

.note-item li {
    margin-bottom: 0.5em;
    color: #555;
    line-height: 1.4;
    font-size: 0.9em;
}

/* System Requirements Note spacing */
.note-item p:last-of-type {
    margin-top: 1.5em;
    margin-bottom: 0;
}

.contact-btn {
    display: block;
    margin-top: auto;
    margin-bottom: 1em;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    line-height: 20px;
    clear: both;
}



.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Table CTA Buttons */
.cta-row {
    background: #f8f9fa;
    border-top: 2px solid #e1e4e8;
}

.cta-row td {
    padding: 20px 12px;
}

/* 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;
}

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;
    }
}

body.index-page .hero-overlay .hero-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 3em;
    font-weight: 700 !important;
    margin-bottom: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px !important;
}

body.index-page .hero-overlay .hero-title .light {
    font-weight: 300 !important;
    margin-left: 0.2em;
}

body.index-page .hero-overlay .hero-title .pro {
    font-weight: 700 !important;
    margin-left: 0.2em;
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Solutions page title styling */
h1 .solutions {
    font-weight: 700 !important;
    margin-left: 0.2em;
    color: #1A1A2E;
}

/* Additional notes styling */
.additional-notes {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Comparison Table Container */
.comparison-table-container {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 2em !important;
    margin-bottom: 2em;
    padding: 1.5em;
}

body.index-page .hero-overlay .hero-title .rubik {
    font-weight: 700 !important;
    margin-left: 0.2em;
    color: #e74c3c !important;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

body.index-page .hero-overlay .hero-subtitle {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 1.2em;
    font-weight: 400 !important;
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.85);
}

.hero-button {
    background: #E94560;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-shadow: none;
    width: 200px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

.hero-button:hover {
    background: #d63447;
    transform: translateY(-2px);
}

/* Content Section - 25% of main area */
.content-section {
    height: 25%;
    min-height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Ensure content section is always visible */
body.index-page .content-section {
    display: flex !important;
    visibility: visible !important;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #1A1A2E;
}

.feature-desc {
    font-size: 0.9em;
    color: #666;
}

/* ===== DOCS PAGE STYLES ===== */
.warning-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    margin: 15px 0;
    margin-bottom: 1em;
    margin-top: 1em !important;
    font-size: 0.9em;
    line-height: 1.5;
}

.warning-box:first-child {
    margin-top: 1.5em !important;
}

.warning-box h3 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.warning-box p {
    color: #495057;
    margin-bottom: 0.5em;
}

.warning-box h4 {
    color: #495057;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

.warning-box ol {
    margin-top: 0em;
    margin-bottom: 0.5em;
    padding-top: 0.5em;
    padding-left: 1.5em;
}

.warning-box li {
    margin-bottom: 0.3em;
    color: #495057;
}

.step-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 5px 0 15px 0 !important;
}

.content .step-box {
    margin-top: 5px !important;
    margin-bottom: 15px !important;
}

.step-box h3 {
    margin-top: 0 !important;
    margin-bottom: 0.8em !important;
}

.step-number {
    color: #333;
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.3em;
    display: inline;
}

.info-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 1em;
    color: #0c5460;
}

/* ===== COMPANY PAGE STYLES ===== */
.founder-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2em;
    border-radius: 12px;
    margin: 2em 0;
    position: relative;
}

.founder-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3em;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin: 0 0 1em 0;
    position: relative;
}

.founder-quote::before {
    display: none;
}

.founder-signature {
    text-align: right;
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
    color: #34495e;
    font-weight: 600;
    margin-top: 1em;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .header-container,
    .footer-container {
        max-width: 1200px;
    }
    
    body:not(.index-page) main > * {
        max-width: 1200px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .demo-slider {
        min-height: 300px;
        min-width: 300px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .header-container,
    .footer-container {
        padding: 0 15px;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .demo-slider {
        min-height: 280px;
        min-width: 280px;
    }
    
    .content {
        padding: 2px 30px 40px 30px !important;
    }
    
    h1 {
        font-size: 2.4em;
    }
    
    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.8rem;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .demo-slider {
        min-height: 250px;
        min-width: 250px;
        margin: 0 auto;
    }
    
    .content {
        padding: 20px !important;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    table {
        font-size: 0.8em;
    }
    
    th, td {
        padding: 10px 6px;
    }
    
    /* Index page content section improvements */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .feature {
        background: rgba(255, 255, 255, 0.95);
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .feature-icon {
        font-size: 3em;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.3em;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .feature-desc {
        font-size: 1em;
        line-height: 1.4;
    }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) {
    .header-container,
    .footer-container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    nav ul {
        gap: 0.8rem;
    }
    
    nav a {
        font-size: 0.75rem;
    }
    
    .content {
        padding: 15px !important;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .demo-slider {
        min-height: 200px;
        min-width: 200px;
    }
    
    table {
        font-size: 0.7em;
    }
    
    th, td {
        padding: 8px 4px;
    }
    
    .contact-form {
        padding: 1.2em;
    }
    
    /* Index page mobile styles */
    body.index-page .hero-overlay .hero-title {
        font-size: 2.2em;
    }
    
    body.index-page .hero-overlay .hero-subtitle {
        font-size: 1em;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .feature {
        background: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .feature-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    
    .feature-desc {
        font-size: 0.95em;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .header-container,
    .footer-container {
        padding: 0 8px;
    }
    
    .logo {
        font-size: 0.9rem !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav a {
        font-size: 0.7rem;
    }
    
    .content {
        padding: 12px !important;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .demo-slider {
        min-height: 180px;
        min-width: 180px;
    }
    
    table {
        font-size: 0.65em;
    }
    
    th, td {
        padding: 6px 3px;
    }
    
    /* Index page extra small mobile */
    body.index-page .hero-overlay .hero-title {
        font-size: 1.8em;
    }
    
    body.index-page .hero-overlay .hero-subtitle {
        font-size: 0.9em;
    }
    
    .hero-button {
        padding: 12px 20px;
        font-size: 1em;
        width: 180px;
    }
    
    .content-grid {
        gap: 12px;
        padding: 12px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 2.2em;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 1.1em;
        margin-bottom: 6px;
    }
    
    .feature-desc {
        font-size: 0.9em;
    }
}

/* Navigation responsive improvements */
@media (max-width: 991px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        color: #E94560;
    }
    
    .header-container {
        position: relative;
    }
    
    nav {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #1A1A2E;
        padding: 15px 0;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background-color: rgba(233, 69, 96, 0.1);
        color: #E94560;
    }
    
    /* Mobile-only menu items */
    nav ul li.mobile-only:first-of-type {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 15px;
        padding-top: 10px;
    }
    
    nav ul li.mobile-only:first-of-type a {
        border-top: none;
    }
}

/* Hide mobile-only items on desktop */
@media (min-width: 768px) {
    nav ul li.mobile-only {
        display: none;
    }
}

/* Footer responsive */
@media (max-width: 767px) {
    .footer-links {
        display: none;
    }
    
    .footer-container {
        justify-content: center;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}

/* Ensure images and media are responsive */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Fix code blocks on mobile */
@media (max-width: 767px) {
    .content pre {
        font-size: 0.75em;
        padding: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .content code {
        font-size: 0.8em;
        word-break: break-all;
    }
    
    /* Fix wide tables */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix long URLs and text */
    .content {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Responsive typography */
@media (max-width: 767px) {
    .content h2 {
        font-size: 1.6em;
    }
    
    .content h3 {
        font-size: 1.2em;
    }
    
    .content {
        font-size: 1em;
    }
}

@media (max-width: 479px) {
    .content h2 {
        font-size: 1.4em;
    }
    
    .content h3 {
        font-size: 1.1em;
    }
    
    .content {
        font-size: 0.95em;
    }
}

/* Currency Toggle Switch */
.currency-selector-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 1em 0;
    text-align: center;
}

.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.currency-label {
    font-weight: 500;
    font-size: 1.1em;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* faq */

.faq-item {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    display: none;
    border-top: 1px solid #ddd;
}

.faq-answer.active {
    display: block;
}

.status-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.status-working {
    background: #d4edda;
    color: #155724;
}

.status-issue {
    background: #f8d7da;
    color: #721c24;
}

.status-resolved {
    background: #d1ecf1;
    color: #0c5460;
}

.code-block {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #007cba;
    margin: 10px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

/* === 404 Page Specific Styles === */
.note-item .get-plan-btn {
    margin-top: auto !important;
}

/* System Requirements section - override flex auto margin */
.notes-grid .note-item .get-plan-btn {
    margin-top: 0 !important;
    margin-bottom: 1em !important;
}

/* 404 Hero Section */
.error-hero {
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 0;
    text-align: center;
}

.error-hero h2 {
    margin-top: 0;
}

.error-hero p.intro-text {
    font-size: 1.1em;
}

.error-hero p.signature {
    text-align: center;
    font-style: italic;
    margin-top: 1.5em;
    color: #666;
}

/* 404 What Happened Section */
.error-what-happened {
    margin-top: -30px !important;
    margin-bottom: 0.8em !important;
}

.error-info h3 {
    margin-top: 0;
}

.error-info ul {
    text-align: left;
    margin: 1em 0;
    padding-left: 1.2em;
}

/* 404 Support Section */
.error-support-center {
    text-align: center;
    margin-top: 1em;
}