/* =========================
   RESET
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #171717;
    background: #f7f8fa;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #111;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo img {
    height: 40px;
}

.navbar nav {
    display: flex;
    gap: 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.navbar a:visited {
    color: white;
}

.navbar a:hover {
    opacity: 0.8;
}

/* =========================
   HERO
========================= */
.hero {
    background: linear-gradient(135deg, #101010, #26313a);
    color: white;
    padding: 86px 20px 76px;
    text-align: center;
}

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

.hero-logo {
    max-width: 220px;
    width: 100%;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 28px;
    margin: 10px 0;
}

.hero p {
    font-size: 15px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

button {
    padding: 10px 20px;
    background: #00c853;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.btn-secondary {
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* =========================
   SECCIONES
========================= */
.section {
    padding: 60px 20px;
    text-align: center;
}

.alt {
    background: #edf1f4;
}

.logo-seccion {
    max-width: 100px;
    margin-bottom: 10px;
}

/* =========================
   CARDS / FEATURES
========================= */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: white;
    padding: 20px;
    width: 250px;
    min-height: 142px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(30, 58, 95, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.45;
}

.download-card {
    max-width: 720px;
    margin: 34px auto 0;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.download-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #1e3a5f;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.download-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.download-card p {
    margin: 0 auto 18px;
    max-width: 520px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.download-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: #00c853;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.download-link:visited {
    color: white;
}

.download-link:hover {
    background: #00a844;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.22);
}

.download-link:active {
    transform: scale(0.98);
}

.is-disabled {
    background: #9aa5b1;
    color: #f7f8fa;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    opacity: 0.9;
}

.is-disabled:hover {
    background: #9aa5b1;
    box-shadow: none;
    transform: none;
}

.development-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 560px;
    margin: 0 auto 18px;
    padding: 14px 16px;
    border: 1px solid rgba(30, 58, 95, 0.14);
    border-radius: 8px;
    background: linear-gradient(180deg, #f6f8fb 0%, #eef3f7 100%);
    color: #32475b;
}

.development-note strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e3a5f;
}

.development-note span {
    font-size: 14px;
    line-height: 1.5;
}

.download-link-alt {
    background: #1e3a5f;
}

.download-link-alt:hover {
    background: #142942;
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.22);
}

/* =========================
   CTA (eliminado, reemplazado por contacto)
========================= */

/* =========================
   FAQ
========================= */
.faq-item {
    background: white;
    padding: 0 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #888;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-item h3 {
    margin-top: 0;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0a0a1a;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    border-top: 1px solid #1a1a3a;
}

/* =========================
   FORMULARIO DE CONTACTO
========================= */
.contact-section {
    background: #0d0d2b;
    color: white;
    padding: 60px 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-section .subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 35px;
    font-size: 14px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 200px;
}

.form-group label {
    font-size: 13px;
    color: #aaa;
    font-weight: bold;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #111130;
    border: 1px solid #2a2a5a;
    color: white;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00c853;
    box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.15);
}

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

.form-group select option {
    background: #111130;
    color: white;
}

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

.required-mark {
    color: #00c853;
    margin-left: 2px;
}

.btn-submit {
    padding: 12px 30px;
    background: #00c853;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.1s;
    align-self: flex-start;
}

.btn-submit:hover  { background: #00a844; }
.btn-submit:active { transform: scale(0.97); }
.btn-submit:disabled { background: #2a5a3a; cursor: not-allowed; }

.form-notice {
    font-size: 12px;
    color: #555;
    margin-top: 8px;
}

.form-success {
    display: none;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid #00c853;
    border-radius: 8px;
    padding: 16px 20px;
    color: #00c853;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 640px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .navbar nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        padding-top: 62px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .card,
    .download-card {
        width: auto;
        max-width: 340px;
    }

    .download-link {
        width: 100%;
        box-sizing: border-box;
    }
}

/* =========================
   MERCADO PAGO SUCCESS
========================= */
.payment-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(0, 200, 83, 0.18), transparent 32%),
        linear-gradient(160deg, #09111c 0%, #132235 45%, #eef3f7 45%, #f7f8fa 100%);
    color: #171717;
}

.payment-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.payment-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
}

.payment-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.04em;
}

.payment-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.payment-backlink {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

.payment-backlink:hover {
    opacity: 1;
}

.payment-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.payment-panel,
.payment-sidepanel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(19, 34, 53, 0.1);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(9, 17, 28, 0.16);
}

.payment-panel {
    padding: 34px;
}

.payment-sidepanel {
    padding: 28px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.12);
    color: #08753a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-icon {
    width: 74px;
    height: 74px;
    margin: 22px 0 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00c853, #0aa34b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 14px 36px rgba(0, 200, 83, 0.28);
}

.payment-panel h1 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.05;
}

.payment-lead {
    max-width: 560px;
    margin: 0 0 24px;
    color: #4c5561;
    font-size: 16px;
    line-height: 1.6;
}

.payment-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.payment-highlight .card-mini {
    padding: 16px 18px;
    border-radius: 16px;
    background: #f1f6f4;
    border: 1px solid rgba(0, 200, 83, 0.12);
}

.card-mini-label {
    display: block;
    margin-bottom: 6px;
    color: #5b6775;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-mini-value {
    color: #132235;
    font-size: 16px;
    font-weight: bold;
    word-break: break-word;
}

.payment-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-note {
    margin-top: 18px;
    color: #677180;
    font-size: 13px;
    line-height: 1.5;
}

.payment-sidepanel h2 {
    margin: 0 0 18px;
    font-size: 20px;
    color: #132235;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-item {
    padding: 14px 16px;
    background: #f7f8fa;
    border: 1px solid rgba(19, 34, 53, 0.08);
    border-radius: 14px;
}

.payment-item strong {
    display: block;
    margin-bottom: 4px;
    color: #132235;
    font-size: 14px;
}

.payment-item span {
    color: #566170;
    font-size: 14px;
    line-height: 1.45;
}

.payment-detail-list {
    display: grid;
    gap: 10px;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(19, 34, 53, 0.08);
}

.payment-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.payment-detail dt {
    color: #677180;
    font-size: 13px;
}

.payment-detail dd {
    margin: 0;
    color: #132235;
    font-size: 13px;
    font-weight: bold;
    text-align: right;
    word-break: break-word;
}

@media (max-width: 860px) {
    .payment-card {
        grid-template-columns: 1fr;
    }

    .payment-panel h1 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .payment-shell {
        padding-top: 22px;
    }

    .payment-topbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .payment-panel,
    .payment-sidepanel {
        padding: 22px;
        border-radius: 18px;
    }

    .payment-highlight {
        grid-template-columns: 1fr;
    }

    .payment-actions .download-link,
    .payment-actions .btn-secondary {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
}

/* =========================
   NEXAR TIENDA LANDING
========================= */
.store-page {
    background:
        radial-gradient(circle at top left, rgba(0, 200, 83, 0.16), transparent 28%),
        linear-gradient(180deg, #f6f3eb 0%, #fcfcfb 20%, #eef2f6 100%);
    color: #17212b;
}

.store-topbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #17212b;
    font-weight: bold;
    letter-spacing: 0.04em;
}

.store-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.store-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-nav a {
    color: #35506a;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.store-hero {
    padding: 38px 20px 44px;
}

.store-hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.store-eyebrow,
.store-kicker {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(19, 34, 53, 0.08);
    color: #2d495e;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-hero-copy h1 {
    margin: 14px 0 10px;
    font-size: 58px;
    line-height: 0.95;
    color: #12202e;
}

.store-subtitle {
    margin: 0 0 14px;
    max-width: 720px;
    font-size: 26px;
    line-height: 1.2;
    color: #203647;
}

.store-lead {
    max-width: 640px;
    margin: 0;
    color: #4c5c6b;
    font-size: 17px;
    line-height: 1.65;
}

.store-hero-actions,
.store-demo-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-1px);
}

.store-btn-primary {
    background: #00c853;
    color: white;
    box-shadow: 0 14px 28px rgba(0, 200, 83, 0.22);
}

.store-btn-primary:hover {
    background: #00a844;
}

.store-btn-secondary,
.store-btn-ghost {
    background: transparent;
    border: 1px solid rgba(18, 32, 46, 0.18);
    color: #17212b;
}

.store-proof {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.store-proof span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 32, 46, 0.08);
    color: #2d495e;
    font-size: 13px;
    font-weight: bold;
}

.store-redirect-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.14);
    color: #08753a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-redirect-copy {
    margin: 0 0 16px;
    color: #35506a;
    font-size: 15px;
    line-height: 1.6;
}

.store-redirect-copy a {
    color: #0e6a39;
    font-weight: bold;
}

.store-hero-panel {
    position: relative;
}

.store-panel-card {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #17324a 0%, #112434 100%);
    color: white;
    box-shadow: 0 22px 60px rgba(17, 36, 52, 0.22);
}

.store-panel-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 18px;
}

.store-panel-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
}

.store-panel-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.store-panel-list {
    margin: 22px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.store-section {
    padding: 72px 20px;
}

.store-section-muted {
    background: rgba(255, 255, 255, 0.56);
}

.store-section-dark {
    background: linear-gradient(160deg, #112434 0%, #18354e 100%);
    color: white;
}

.store-section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.store-section-heading h2 {
    margin: 14px 0 10px;
    font-size: 38px;
    line-height: 1.08;
    color: #12202e;
}

.store-section-heading p {
    margin: 0;
    color: #52606d;
    font-size: 16px;
    line-height: 1.6;
}

.store-section-heading-light h2,
.store-section-heading-light p {
    color: white;
}

.store-kicker-light {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.store-benefits-grid,
.store-pricing-grid,
.store-steps-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.store-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-feature-card,
.store-step-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 32, 46, 0.08);
    box-shadow: 0 14px 34px rgba(18, 32, 46, 0.08);
}

.store-feature-card h3,
.store-step-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #12202e;
}

.store-feature-card p,
.store-step-card p {
    margin: 0;
    color: #556270;
    line-height: 1.6;
}

.store-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.store-price-card {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(18, 32, 46, 0.08);
    box-shadow: 0 18px 42px rgba(18, 32, 46, 0.08);
}

.store-price-card-featured {
    background: linear-gradient(180deg, #17324a 0%, #112434 100%);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(17, 36, 52, 0.24);
}

.store-plan-badge {
    position: absolute;
    top: -13px;
    right: 20px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #00c853;
    color: white;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.store-plan-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #5b6775;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-price-card-featured .store-plan-tag,
.store-price-card-featured .store-plan-copy,
.store-price-card-featured .store-plan-limit span,
.store-price-card-featured .store-price-note {
    color: rgba(255, 255, 255, 0.84);
}

.store-price-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
}

.store-price {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
}

.store-price small {
    font-size: 15px;
    font-weight: normal;
}

.price-old {
    margin: 0 0 6px;
    color: #7a8795;
    font-size: 18px;
    font-weight: bold;
    text-decoration: line-through;
}

.price-new {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
}

.price-new small {
    font-size: 15px;
    font-weight: normal;
}

.price-badge {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.12);
    color: #08753a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-price-note,
.store-plan-copy {
    margin: 0 0 16px;
    color: #576473;
    line-height: 1.55;
}

.store-plan-list {
    margin: 0 0 18px;
    padding-left: 18px;
    line-height: 1.75;
}

/* =========================
   ESTADOS DE FORMULARIO - SUPABASE
========================= */
#solicitud-demo-status {
    margin: 15px 0;
    display: none;
}

.status-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideInDown 0.3s ease-out;
}

.status-message.status-success {
    background: rgba(0, 200, 83, 0.1);
    border-left: 4px solid #00c853;
    color: #08753a;
}

.status-message.status-error {
    background: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #f44336;
    color: #c62828;
}

.status-message.status-info {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

.status-message.status-loading {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    color: #f57f17;
}

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

.store-plan-limit {
    padding-top: 16px;
    border-top: 1px solid rgba(18, 32, 46, 0.1);
}

.store-plan-limit strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.store-plan-limit span {
    color: #596675;
    line-height: 1.55;
    font-size: 14px;
}

.store-table-wrap {
    max-width: 1120px;
    margin: 0 auto;
    overflow-x: auto;
}

.store-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 32, 46, 0.08);
}

.store-compare-table th,
.store-compare-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(18, 32, 46, 0.08);
}

.store-compare-table thead th {
    background: #17324a;
    color: white;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.store-compare-table tbody tr:nth-child(even) {
    background: rgba(237, 241, 244, 0.7);
}

.store-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.store-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-step-card {
    background: rgba(255, 255, 255, 0.94);
}

.store-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #00c853;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.store-demo-box {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff7e8 0%, #ffffff 100%);
    border: 1px solid rgba(18, 32, 46, 0.08);
    box-shadow: 0 18px 40px rgba(18, 32, 46, 0.08);
    text-align: center;
}

.store-demo-box h2 {
    margin: 14px 0 10px;
    font-size: 36px;
    line-height: 1.12;
}

.store-demo-box p {
    margin: 0;
    color: #576473;
    line-height: 1.6;
}

.store-demo-actions {
    justify-content: center;
}

.store-demo-note {
    margin-top: 16px !important;
    font-size: 13px;
}

.store-footer {
    padding: 28px 20px 38px;
    text-align: center;
    color: #667280;
    font-size: 13px;
}

.store-faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .store-hero-grid,
    .store-pricing-grid,
    .store-steps-grid,
    .store-benefits-grid {
        grid-template-columns: 1fr;
    }

    .store-price-card-featured {
        transform: none;
    }

    .store-hero-copy h1 {
        font-size: 46px;
    }

    .store-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .store-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px;
    }

    .store-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .store-hero {
        padding-top: 18px;
    }

    .store-hero-copy h1 {
        font-size: 38px;
    }

    .store-subtitle {
        font-size: 20px;
    }

    .store-section,
    .store-section-dark {
        padding: 56px 20px;
    }

    .store-section-heading h2,
    .store-demo-box h2 {
        font-size: 30px;
    }

    .store-panel-card,
    .store-feature-card,
    .store-step-card,
    .store-price-card,
    .store-demo-box {
        padding: 22px;
        border-radius: 22px;
    }

    .store-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .store-compare-table {
        min-width: 640px;
    }
}
