/* © 2026 H.W. & H. Investments Pty Ltd. All rights reserved. */
/**
 * AYIO Sales — Static Page Styles
 *
 * Shared styles for about, contact, pricing, sell, terms, privacy,
 * help, and finance pages.
 */

/* ─── Page Content Base ─── */
.page-content {
    padding: 40px 0 60px;
}

.page-content h1 {
    font-size: 28px;
    color: var(--brand-secondary);
    margin: 0 0 16px;
}

.page-content h2 {
    font-size: 22px;
    color: var(--brand-secondary);
    margin: 32px 0 12px;
}

.page-content h3 {
    font-size: 18px;
    color: var(--brand-secondary);
    margin: 24px 0 8px;
}

.page-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-700);
    margin: 0 0 16px;
}

.page-content ul, .page-content ol {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-700);
    margin: 0 0 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 6px;
}

.page-content a {
    color: var(--brand-accent);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* ─── Narrow Content Column ─── */
.page-narrow {
    max-width: 760px;
    margin: 0 auto;
}

/* ─── Centered Content ─── */
.page-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.page-lead {
    font-size: 18px;
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ─── Page Sections ─── */
.page-section {
    padding: 40px 0;
}

.section-alt {
    background: var(--off-white);
    border-radius: 12px;
    padding: 40px 24px;
    margin: 32px 0;
}

.section-title-center {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--navy);
}

/* ─── Feature Grid (About, Finance) ─── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0 24px;
}

.feature-item {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--grey-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--navy);
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* ─── Steps Grid (Sell, Finance) ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin: 20px 0;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold, #f0a500);
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 16px;
}

.step-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* ─── Benefits List (Finance) ─── */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.benefit-item {
    border: 1px solid #e4e6eb;
    border-radius: 12px;
    padding: 16px 20px;
    background: var(--white);
    margin-bottom: 12px;
}

.benefit-item strong {
    display: block;
    color: var(--brand-secondary);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

@media (max-width: 600px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

/* ─── CTA Buttons (Sell, Finance) ─── */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ─── Sell Options (Sell page) ─── */
.sell-options {
    margin-bottom: 40px;
}

.sell-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .sell-options-grid {
        grid-template-columns: 1fr;
    }
}

.sell-option-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.sell-option-highlight {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 1px rgba(247, 195, 46, 0.15);
}

.sell-option-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.sell-option-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.sell-option-card p {
    font-size: 14px;
    color: #555;
    margin: 0 0 12px;
}

.sell-option-card ul {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    padding-left: 20px;
    margin: 0 0 16px;
    flex: 1;
}

.sell-option-card .btn {
    margin-top: auto;
}

/* ─── Tips Grid (Sell page) ─── */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.tip-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
}

.tip-item h4 {
    font-size: 15px;
    color: var(--brand-secondary);
    margin: 0 0 6px;
}

.tip-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

@media (max-width: 600px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Contact Page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-900);
    margin-bottom: 6px;
}

.contact-form .required {
    color: #e53935;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: var(--off-white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    margin: 0 0 16px;
    font-size: 16px;
}

.contact-info-item {
    margin-bottom: 16px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 4px;
}

.contact-info-item p {
    font-size: 14px;
    margin: 0;
}

.contact-info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-card ul li {
    margin-bottom: 6px;
}

.contact-info-card ul li a {
    font-size: 14px;
}

/* ─── Pricing Page ─── */
.pricing-section {
    margin-bottom: 48px;
}

.pricing-section h2 {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 15px;
    color: var(--grey-600);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,31,61,0.12);
}

.pricing-card-popular {
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(240,165,0,0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: var(--grey-900);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card-header h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--brand-secondary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-500);
}

.pricing-card-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--grey-700);
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.pricing-card .btn {
    margin-top: auto;
}

/* ─── Pricing: How It Works ─── */
.pricing-how-it-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
@media (max-width: 700px) {
    .pricing-how-it-works {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--grey-900);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.how-step h3 {
    font-size: 17px;
    color: var(--brand-secondary);
    margin: 0;
}
.how-step p {
    font-size: 14px;
    color: var(--grey-600);
    margin: 0;
    max-width: 260px;
}

/* ─── Pricing: 2-Column Grid ─── */
.pricing-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 600px) {
    .pricing-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* ─── Pricing: Upgrade Grid ─── */
.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
}
@media (max-width: 900px) {
    .upgrade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .upgrade-grid {
        grid-template-columns: 1fr;
    }
}
.upgrade-item {
    padding: 20px;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    text-align: center;
}
.upgrade-item strong {
    display: block;
    font-size: 15px;
    color: var(--brand-secondary);
    margin-bottom: 4px;
}
.upgrade-price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 6px;
}
.upgrade-item p {
    font-size: 13px;
    color: var(--grey-600);
    margin: 0;
}

/* ─── FAQ (Pricing, Help) ─── */
.faq-list {
    margin: 16px 0;
}

.faq-item {
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 20px;
    font-weight: 500;
    font-size: 15px;
    background: var(--white);
    color: var(--brand-secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--grey-500);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item p,
.faq-item ul {
    padding: 0 20px 18px;
    margin: 0;
    font-size: 14px;
    color: var(--grey-600);
    line-height: 1.6;
}

.faq-item ul {
    padding-left: 36px;
}

/* ─── Legal Pages (Terms, Privacy) ─── */
.legal-page h2 {
    font-size: 18px;
    margin: 32px 0 10px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-updated {
    font-size: 13px;
    color: var(--grey-500);
    margin: -8px 0 24px;
}

.legal-toc {
    background: #f8f9fa;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    padding: 20px 24px 20px 28px;
    margin: 0 0 32px;
}
.legal-toc h3 {
    font-size: 15px;
    color: var(--brand-secondary);
    margin: 0 0 10px;
}
.legal-toc ol {
    margin: 0;
    padding-left: 18px;
    columns: 2;
    column-gap: 24px;
}
.legal-toc li {
    font-size: 14px;
    margin-bottom: 4px;
    break-inside: avoid;
}
.legal-toc a {
    color: var(--brand-accent, #3b82f6);
    text-decoration: none;
}
.legal-toc a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .legal-toc ol { columns: 1; }
}

/* ─── Market Insights ─── */
.insights-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0 0 36px;
}

.insights-stat-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.insights-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-secondary);
    line-height: 1.2;
}

.insights-stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.insights-table-wrap {
    overflow-x: auto;
    margin: 12px 0 0;
}

.insights-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.insights-table th {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 2px solid var(--grey-200);
    color: var(--brand-secondary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.insights-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--grey-700);
}

.insights-table tr:last-child td {
    border-bottom: none;
}

.insights-table a {
    color: var(--brand-accent);
    text-decoration: none;
}

.insights-table a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .insights-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-stat-number {
        font-size: 24px;
    }
}

/* ─── Help Centre ─── */
.help-section {
    margin-bottom: 36px;
}

.help-section h2 {
    font-size: 20px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-primary);
}

.help-contact {
    text-align: center;
    background: var(--off-white);
    border-radius: 12px;
    padding: 32px 24px;
}

.help-contact h2 {
    border-bottom: none;
    padding-bottom: 0;
}

.help-contact p {
    margin-bottom: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .page-section {
        padding: 32px 0;
    }
}

@media (max-width: 600px) {
    .page-content {
        padding: 24px 0 40px;
    }

    .page-content h1 {
        font-size: 26px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-card {
        padding: 16px;
    }

    .sell-option-card {
        padding: 20px 16px;
    }

    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-amount {
        font-size: 32px;
    }

    .faq-item summary {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 16px 0 32px;
    }

    .page-content h1 {
        font-size: 22px;
    }

    .page-content h2 {
        font-size: 18px;
    }

    .page-lead {
        font-size: 15px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .help-contact {
        padding: 20px 16px;
    }

    .section-alt {
        padding: 24px 16px;
    }
}

/* ─── Finance Workspace Selector Cards ─── */
.fws-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fws-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-radius: 10px;
    border: 2px solid var(--grey-200);
    text-decoration: none;
    color: var(--grey-900);
    transition: border-color .2s, box-shadow .2s, transform .15s;
    cursor: pointer;
}
.fws-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.fws-card--personal { border-color: #0d9488; }
.fws-card--personal:hover {
    border-color: #0d9488;
    box-shadow: 0 6px 20px rgba(13,148,136,.2);
}
.fws-card--business { border-color: var(--navy); }
.fws-card--business:hover {
    border-color: var(--navy);
    box-shadow: 0 6px 20px rgba(15,31,61,.2);
}
.fws-card-icon { margin-bottom: 14px; }
.fws-card--personal .fws-card-icon { color: #0d9488; }
.fws-card--business .fws-card-icon { color: var(--navy); }
.fws-card-heading {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.fws-card-sub {
    font-size: 13px;
    color: var(--grey-600);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 480px) {
    .fws-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FINANCE CALCULATOR                                                          */
/* ═══════════════════════════════════════════════════════════════════════════ */
.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}
.calc-form {
    background: var(--white, #fff);
    border: 1px solid var(--grey-200, #e9ecef);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.calc-form .form-group { margin-bottom: 1.25rem; }
.calc-form .form-group:last-child { margin-bottom: 0; }
.calc-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-700, #495057);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.calc-form .form-input,
.calc-form input[type="number"],
.calc-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--grey-300, #dee2e6);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--grey-800, #343a40);
    background: var(--white, #fff);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.calc-form .form-input:focus,
.calc-form input:focus,
.calc-form select:focus {
    outline: none;
    border-color: var(--gold, #f0a500);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.calc-results {
    background: linear-gradient(135deg, var(--navy, #0f1f3d) 0%, #1a3460 100%);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.calc-result-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: center;
}
.calc-result-primary {
    background: rgba(245,166,35,0.15);
    border-color: rgba(245,166,35,0.3);
    padding: 1.5rem;
}
.calc-result-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.35rem;
}
.calc-result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.calc-result-primary .calc-result-value {
    font-size: 2.5rem;
    color: var(--gold, #f0a500);
}
.calc-result-primary .calc-result-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
}
.calc-breakdown {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.calc-breakdown-row:last-child { border-bottom: none; }
.calc-breakdown-row span:last-child { font-weight: 700; color: #fff; }
.calc-disclaimer {
    max-width: 900px;
    margin: 1.5rem auto;
    font-size: 0.8rem;
    color: var(--grey-500, #adb5bd);
    line-height: 1.5;
    padding: 1rem 1.25rem;
    background: var(--grey-50, #f8f9fa);
    border-radius: 8px;
    border-left: 3px solid var(--grey-300, #dee2e6);
}
.calc-cta {
    max-width: 900px;
    margin: 2.5rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, var(--navy, #0f1f3d) 0%, #1a3460 100%);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    color: #fff;
}
.calc-cta h2 { color: var(--gold, #f0a500); font-size: 1.5rem; margin-bottom: 0.5rem; }
.calc-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
/* Term Buttons */
.term-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.term-btn {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--grey-200, #e2e5ed);
    border-radius: 8px;
    background: var(--white, #fff);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--grey-900);
    font-family: inherit;
}
.term-btn:hover {
    border-color: var(--gold, #f0a500);
    color: var(--gold, #f0a500);
}
.term-btn.active {
    background: var(--navy, #0f1f3d);
    color: #fff;
    border-color: var(--navy, #0f1f3d);
}
/* Comparison Table */
.calc-comparison {
    background: var(--white, #fff);
    border: 1px solid var(--grey-200, #e9ecef);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.calc-comparison h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--navy, #0f1f3d);
}
.calc-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.calc-comparison-table th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 2px solid var(--navy, #0f1f3d);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--grey-500, #6b7280);
}
.calc-comparison-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #f0f1f3;
}
.calc-comparison-table tr.active-term {
    background: #eff6ff;
    font-weight: 700;
}
@media (max-width: 768px) {
    .calc-container { grid-template-columns: 1fr; }
    .calc-result-primary .calc-result-value { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HOW IT WORKS PAGE                                                           */
/* ═══════════════════════════════════════════════════════════════════════════ */
.page-intro {
    font-size: 1.1rem;
    color: var(--grey-600, #6c757d);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.hiw-section {
    margin-bottom: 3rem;
}
.hiw-section h2 {
    font-size: 1.4rem;
    color: var(--navy, #0f1f3d);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gold, #f0a500);
    display: inline-block;
}
.hiw-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hiw-step-card {
    background: var(--white, #fff);
    border: 1px solid var(--grey-200, #e9ecef);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.hiw-step-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
.hiw-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold, #f0a500);
    color: var(--navy, #0f1f3d);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}
.hiw-step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy, #0f1f3d); }
.hiw-step-card p { font-size: 0.9rem; color: var(--grey-600, #6c757d); line-height: 1.6; margin: 0; }
.hiw-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.hiw-method-card {
    background: var(--white, #fff);
    border: 1px solid var(--grey-200, #e9ecef);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.hiw-method-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.hiw-method-card h3 { font-size: 1rem; color: var(--navy, #0f1f3d); margin-bottom: 0.5rem; }
.hiw-method-card p { font-size: 0.85rem; color: var(--grey-600, #6c757d); line-height: 1.5; margin: 0 0 0.75rem; }
.hiw-method-fee {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gold-light, #fef3cd);
    color: var(--navy, #0f1f3d);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}
.hiw-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--navy, #0f1f3d) 0%, #1a3460 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: #fff;
}
.hiw-cta-section h2 { color: var(--gold, #f0a500); border: none; display: block; font-size: 1.5rem; padding: 0; margin-bottom: 1.5rem; }
.hiw-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .hiw-steps-row { grid-template-columns: 1fr; }
    .hiw-methods-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hiw-methods-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FAQ PAGE UPGRADE                                                            */
/* ═══════════════════════════════════════════════════════════════════════════ */
.help-section h2 {
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--navy, #0f1f3d);
    border-bottom: 3px solid var(--gold, #f0a500);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.faq-item {
    border: 1px solid var(--grey-200, #e9ecef);
    border-radius: 10px;
    margin-bottom: 0.6rem;
    background: var(--white, #fff);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy, #0f1f3d);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.15s;
}
.faq-item[open] summary { color: var(--gold); border-left: 3px solid var(--gold); }
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--grey-400, #ced4da);
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after { content: '\2212'; color: var(--gold, #f0a500); }
.faq-item p, .faq-item ul {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--grey-600, #6c757d);
    line-height: 1.7;
}
.help-contact {
    text-align: center;
    background: linear-gradient(135deg, var(--navy, #0f1f3d) 0%, #1a3460 100%);
    border-radius: 12px;
    padding: 2.5rem;
    color: #fff;
    margin-top: 2rem;
}
.help-contact h2 { color: var(--gold, #f0a500); border: none; display: block; padding: 0; margin-bottom: 0.75rem; text-transform: none; letter-spacing: 0; }
.help-contact p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* FAQ Search & Tabs */
.faq-search-bar {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.faq-search-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--grey-200, #e2e5ed);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--white, #fff);
    box-sizing: border-box;
}
.faq-search-input:focus {
    border-color: var(--gold, #f0a500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(240,165,0,0.1);
}
.faq-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.faq-tab {
    padding: 0.45rem 1rem;
    border: 1px solid var(--grey-200, #e2e5ed);
    border-radius: 20px;
    background: var(--white, #fff);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    color: #4b5563;
}
.faq-tab:hover {
    border-color: var(--navy, #0f1f3d);
    color: var(--navy, #0f1f3d);
}
.faq-tab.active {
    background: var(--navy, #0f1f3d);
    color: #fff;
    border-color: var(--navy, #0f1f3d);
}

/* ─── Premium Page Polish ─── */
.page-content {
    padding: 48px 0 64px;
}

.page-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.pricing-card {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,31,61,0.12);
}

.pricing-card-popular {
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(240,165,0,0.15);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* SELL TO DEALER — PREMIUM LANDING (v2)                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */
.std-landing-v2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ─── Hero ─── */
.std-hero-v2 {
    text-align: center;
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d52 100%);
    color: #fff;
    border-radius: 16px;
    margin-bottom: 3.5rem;
}
.std-hero-v2 h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    color: #fff;
}
.std-hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 2rem;
    max-width: 520px;
    line-height: 1.5;
}
.std-hero-cta {
    font-size: 1.05rem;
    padding: 0.85rem 2.5rem;
}
.std-trust-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.std-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0.4rem 1rem;
}
.std-trust-badge svg {
    color: var(--brand-primary, #f0a500);
    flex-shrink: 0;
}

/* ─── How It Works ─── */
.std-hiw-v2 {
    margin-bottom: 3.5rem;
}
.std-section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-secondary, #0f1f3d);
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
}
.std-hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.std-hiw-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 2.25rem 1.75rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}
.std-hiw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 31, 61, 0.1);
}
.std-hiw-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-primary, #f0a500);
    color: var(--brand-secondary, #0f1f3d);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(240, 165, 0, 0.3);
}
.std-hiw-icon {
    margin-bottom: 0.75rem;
    color: var(--brand-secondary, #0f1f3d);
}
.std-hiw-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-secondary, #0f1f3d);
    margin: 0 0 0.5rem;
}
.std-hiw-card p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0;
}

/* ─── Benefits ─── */
.std-benefits-v2 {
    margin-bottom: 3.5rem;
}
.std-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.std-benefit-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 2rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}
.std-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 31, 61, 0.1);
}
.std-benefit-icon {
    margin-bottom: 0.75rem;
}
.std-benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-secondary, #0f1f3d);
    margin: 0 0 0.35rem;
}
.std-benefit-card p {
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.5;
    margin: 0;
}

/* ─── CTA ─── */
.std-cta-v2 {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d52 100%);
    border-radius: 16px;
    margin-bottom: 3rem;
    color: #fff;
}
.std-cta-v2 h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-primary, #f0a500);
    margin: 0 0 0.5rem;
}
.std-cta-v2 p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.75rem;
}
.std-cta-login {
    margin-top: 1rem !important;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
}
.std-cta-login a {
    color: var(--brand-primary, #f0a500);
    text-decoration: none;
    font-weight: 600;
}
.std-cta-login a:hover {
    text-decoration: underline;
}

/* ─── STD Landing Responsive ─── */
@media (max-width: 900px) {
    .std-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .std-hiw-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .std-hero-v2 {
        padding: 3rem 1.25rem;
    }
    .std-hero-v2 h1 {
        font-size: 1.75rem;
    }
    .std-hero-sub {
        font-size: 1rem;
    }
    .std-trust-row {
        gap: 0.75rem;
    }
    .std-trust-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.75rem;
    }
}
@media (max-width: 600px) {
    .std-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .std-cta-v2 {
        padding: 2.5rem 1.25rem;
    }
}
@media (max-width: 480px) {
    .std-hero-v2 {
        padding: 2.25rem 1rem;
        border-radius: 12px;
    }
    .std-hero-v2 h1 {
        font-size: 1.4rem;
    }
    .std-section-title {
        font-size: 1.3rem;
    }
    .std-cta-v2 {
        padding: 2rem 1rem;
        border-radius: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ABOUT PAGE — PREMIUM REDESIGN                                              */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.about-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3158 100%);
    color: #fff;
    padding: 5rem 0 4.5rem;
    text-align: center;
}
.about-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    line-height: 1.15;
    color: #fff;
}
.about-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── Our Story ─── */
.about-story-section {
    padding: 4rem 0;
}
.about-section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin: 0 0 2.5rem;
    letter-spacing: -0.01em;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-story-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 1rem;
}
.about-story-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--grey-700);
    margin: 0 0 1rem;
}
.about-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.about-stat {
    background: var(--off-white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 1.75rem 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.about-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-600);
    font-weight: 500;
}

/* ─── What We Offer ─── */
.about-offers-section {
    padding: 4rem 0;
    background: var(--off-white);
}
.about-offers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.about-offer-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 2rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
}
.about-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15,31,61,0.1);
}
.about-offer-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240,165,0,0.12), rgba(240,165,0,0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold);
}
.about-offer-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.about-offer-card p {
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.55;
    margin: 0;
}

/* ─── Ecosystem ─── */
.about-ecosystem-section {
    padding: 4rem 0;
}
.about-eco-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.about-eco-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.about-eco-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-eco-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.about-eco-card p {
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.5;
    margin: 0 0 0.75rem;
}
.about-eco-arrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}
.about-eco-active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(240,165,0,0.2);
}
.about-eco-indicator {
    position: absolute;
    top: -1px;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 3px 3px;
}
.about-eco-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(240,165,0,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

/* ─── Values ─── */
.about-values-section {
    padding: 4rem 0;
    background: var(--off-white);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.about-value-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #1a3158);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
}
.about-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.about-value-card p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.65;
    margin: 0;
}

/* ─── About CTA ─── */
.about-cta-section {
    padding: 4rem 0 5rem;
}
.about-cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3158 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 16px;
}
.about-cta-box h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 0 0.75rem;
}
.about-cta-box p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    padding: 0.7rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ─── About Responsive ─── */
@media (max-width: 1024px) {
    .about-offers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .about-hero { padding: 3.5rem 0 3rem; }
    .about-hero h1 { font-size: 1.8rem; }
    .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-offers-grid { grid-template-columns: repeat(2, 1fr); }
    .about-eco-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-cta-box { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
    .about-hero { padding: 2.5rem 0 2rem; }
    .about-hero h1 { font-size: 1.5rem; }
    .about-hero p { font-size: 1rem; }
    .about-offers-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .about-eco-grid { grid-template-columns: 1fr; }
    .about-story-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .about-cta-box { padding: 2.5rem 1rem; border-radius: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CONTACT PAGE — PREMIUM TWO-COLUMN LAYOUT                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */
.contact-page-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: calc(100vh - 200px);
}

/* ─── Left: Navy Info Panel ─── */
.contact-info-panel {
    background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3158 100%);
    color: #fff;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.contact-info-panel h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.contact-info-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 2.5rem;
}
.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.contact-detail-item h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    margin: 0 0 0.25rem;
}
.contact-detail-item p,
.contact-detail-item a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-decoration: none;
    line-height: 1.4;
}
.contact-detail-item a:hover {
    color: var(--gold);
}

.contact-ecosystem-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-ecosystem-links h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    margin: 0 0 1rem;
}
.contact-eco-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-eco-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background 0.15s;
}
.contact-eco-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--gold);
}
.contact-eco-link svg {
    color: var(--gold);
}

.contact-quick-help {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.contact-quick-help svg {
    color: var(--gold);
    flex-shrink: 0;
}
.contact-quick-help a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}
.contact-quick-help a:hover {
    text-decoration: underline;
}

/* ─── Right: Form Panel ─── */
.contact-form-panel {
    background: var(--color-bg, #f7f8fc);
    padding: 3.5rem 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.contact-form-card {
    width: 100%;
    max-width: 560px;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--grey-600);
    margin: 0 0 2rem;
    line-height: 1.5;
}
.contact-submit-btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
}
.contact-success-msg {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}
.contact-success-msg strong {
    display: block;
    font-size: 1rem;
    color: #166534;
    margin-bottom: 0.15rem;
}
.contact-success-msg p {
    font-size: 0.88rem;
    color: #15803d;
    margin: 0;
}

/* ─── Contact form styles (reuse existing) ─── */
.contact-form-card .form-group {
    margin-bottom: 1.25rem;
}
.contact-form-card label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: 0.4rem;
}
.contact-form-card .required {
    color: #e53935;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--grey-200);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(240,165,0,0.15);
}
.contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─── Contact Responsive ─── */
@media (max-width: 900px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        padding: 2.5rem 2rem;
    }
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
}
@media (max-width: 600px) {
    .contact-info-panel {
        padding: 2rem 1.25rem;
    }
    .contact-info-panel h1 {
        font-size: 1.5rem;
    }
    .contact-form-panel {
        padding: 1.5rem 1rem;
    }
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
}

/* DEALER DIRECTORY PREMIUM UPGRADE */

.dealer-directory {
    max-width: 1200px;
    margin: 0 auto;
}

.dd-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #2d4a7c 100%);
    padding: 3.5rem 1.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dd-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.dd-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.dd-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}
.dd-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin: 0 0 1.75rem;
}
.dd-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 560px;
    margin: 0 auto;
}
.dd-search-icon {
    color: var(--grey-400);
    margin: 0 8px 0 12px;
    flex-shrink: 0;
}
.dd-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
    background: transparent;
    font-family: inherit;
    min-width: 0;
}
.dd-search-btn {
    border-radius: 8px !important;
    padding: 0.7rem 1.5rem !important;
    font-weight: 600;
    white-space: nowrap;
}
.dd-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    flex-wrap: wrap;
}
.dd-filter-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.dd-filter-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.dd-filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.dd-filter-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1.5px solid var(--grey-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--grey-900);
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}
.dd-filter-select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(240,165,0,0.1);
}
.dd-clear-filters {
    font-size: 0.85rem;
    color: var(--color-danger);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}
.dd-clear-filters:hover {
    text-decoration: underline;
}
.dd-result-count {
    font-size: 0.85rem;
    color: var(--grey-600);
    white-space: nowrap;
}
.dd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1.5rem;
}
.dd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--grey-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
    position: relative;
}
.dd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(15,31,61,0.12);
}
.dd-card-featured {
    border-top: 3px solid var(--gold);
}
.dd-card-top {
    position: relative;
    margin-bottom: 1rem;
}
.dd-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}
.dd-card-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    border: 3px solid var(--gold);
}
.dd-card-featured-badge {
    position: absolute;
    top: -6px;
    right: -16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.dd-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.35rem;
}
.dd-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--grey-600);
    margin: 0 0 0.5rem;
}
.dd-card-location svg {
    color: var(--grey-400);
    flex-shrink: 0;
}
.dd-card-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}
.dd-star {
    font-size: 0.9rem;
    line-height: 1;
}
.dd-star-filled {
    color: var(--gold);
}
.dd-star-empty {
    color: var(--grey-300);
}
.dd-card-rating-text {
    font-size: 0.8rem;
    color: var(--grey-600);
    margin-left: 4px;
}
.dd-card-stock {
    font-size: 0.8rem;
    color: var(--grey-600);
    margin-bottom: 0.75rem;
}
.dd-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: auto;
}
.dd-card:hover .dd-card-link {
    text-decoration: underline;
}
.dd-empty {
    text-align: center;
    padding: 4rem 2rem;
}
.dd-empty-icon {
    margin-bottom: 1.5rem;
}
.dd-empty h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.dd-empty p {
    color: var(--grey-600);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}
.dd-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 2rem 1rem;
}
.dd-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--grey-800);
    border: 1px solid var(--grey-200);
    background: var(--white);
    transition: all 0.15s;
}
.dd-page-link:hover {
    background: var(--off-white);
    border-color: var(--gold);
    color: var(--gold);
}
.dd-page-current {
    background: var(--navy) !important;
    color: #fff !important;
    border-color: var(--navy) !important;
}
.dd-page-prev,
.dd-page-next {
    font-weight: 600;
    padding: 0 12px;
}

/* DEALER PROFILE STOREFRONT PREMIUM UPGRADE */

.ds-storefront {
    max-width: 1200px;
    margin: 0 auto;
}
.ds-banner {
    min-height: 240px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #2d4a7c 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}
.ds-banner-overlay {
    background: linear-gradient(180deg, rgba(15,31,61,0.6) 0%, rgba(15,31,61,0.85) 100%);
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    padding: 2rem 1.5rem;
}
.ds-banner-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    width: 100%;
}
.ds-banner-profile {
    flex-shrink: 0;
}
.ds-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.ds-logo-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.ds-banner-info {
    color: #fff;
    min-width: 0;
}
.ds-banner-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.ds-banner-name-row h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.ds-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(39,174,96,0.9);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}
.ds-verified-badge svg {
    fill: currentColor;
}
.ds-banner-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0.25rem 0 0.4rem;
}
.ds-banner-location svg {
    opacity: 0.7;
    flex-shrink: 0;
}
.ds-banner-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.9rem;
}
.ds-star {
    font-size: 1rem;
    line-height: 1;
}
.ds-star-filled {
    color: var(--gold);
}
.ds-star-empty {
    color: rgba(255,255,255,0.35);
}
.ds-banner-rating span:last-child {
    margin-left: 6px;
    opacity: 0.8;
}
.ds-stats-row {
    display: flex;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    overflow-x: auto;
}
.ds-stat {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.75rem;
    border-right: 1px solid #f0f0f0;
    text-align: center;
}
.ds-stat:last-child {
    border-right: none;
}
.ds-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}
.ds-stat-value-sm {
    font-size: 1.1rem;
}
.ds-stat-label {
    font-size: 0.75rem;
    color: var(--grey-600);
    margin-top: 2px;
}
.ds-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    padding: 2rem 1.5rem;
}
.ds-about-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--grey-100);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ds-about-card h2 {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0 0 0.75rem;
    font-weight: 700;
}
.ds-about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-700);
    margin: 0;
}
.ds-listings-section {
    margin-bottom: 2rem;
}
.ds-listings-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.ds-listings-toolbar h2 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0;
    font-weight: 700;
}
.ds-listings-filters {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.ds-reviews-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-100);
}
.ds-reviews-section h2 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0 0 1.25rem;
    font-weight: 700;
}
.ds-review-count {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--grey-600);
}
.ds-rating-summary {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #fefce8;
    border-radius: 12px;
    border: 1px solid #fef08a;
}
.ds-rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.ds-rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.ds-rating-stars {
    display: flex;
    gap: 2px;
}
.ds-rating-stars .ds-star {
    font-size: 1.2rem;
}
.ds-rating-total {
    font-size: 0.8rem;
    color: var(--grey-600);
}
.ds-review-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
.ds-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.ds-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ds-review-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ds-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.ds-review-author {
    font-size: 0.95rem;
    color: var(--grey-900);
    display: block;
}
.ds-review-verified {
    font-size: 0.7rem;
    color: #16a34a;
    font-weight: 600;
    display: inline-block;
    margin-left: 4px;
}
.ds-review-date {
    font-size: 0.8rem;
    color: var(--grey-400);
    display: block;
}
.ds-review-rating {
    display: flex;
    gap: 1px;
}
.ds-review-rating .ds-star-filled {
    color: var(--gold);
}
.ds-review-rating .ds-star-empty {
    color: var(--grey-300);
}
.ds-review-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 0.35rem;
}
.ds-review-text {
    font-size: 0.9rem;
    color: var(--grey-700);
    line-height: 1.65;
    margin: 0;
}
.ds-review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.6rem;
}
.ds-review-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid var(--gold);
    color: #b8860b;
    background: #fffdf0;
}
.ds-review-reply {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--navy);
}
.ds-review-reply strong {
    font-size: 0.8rem;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}
.ds-review-reply p {
    font-size: 0.85rem;
    color: #334155;
    margin: 0;
    line-height: 1.5;
}
.ds-reply-form {
    margin-top: 0.75rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.ds-reply-form textarea {
    flex: 1;
    font-size: 0.85rem;
    border-radius: 8px;
}
.ds-flag-form {
    margin-top: 0.5rem;
    text-align: right;
}
.ds-flag-btn {
    background: none;
    border: none;
    color: var(--grey-400);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0;
    transition: color 0.15s;
}
.ds-flag-btn:hover {
    color: var(--color-danger);
}
.ds-reviews-empty {
    font-size: 0.95rem;
    color: var(--grey-600);
    text-align: center;
    padding: 2rem 0;
}
.ds-sidebar {
    min-width: 0;
}
.ds-sidebar-sticky {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ds-detail-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ds-detail-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1rem;
}
.ds-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ds-detail-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
    gap: 0.5rem;
}
.ds-detail-list li:last-child {
    border-bottom: none;
}
.ds-detail-label {
    color: var(--grey-600);
    font-weight: 500;
    white-space: nowrap;
}
.ds-detail-value {
    color: var(--grey-900);
    font-weight: 600;
    text-align: right;
}
.ds-detail-value a {
    color: var(--gold);
    text-decoration: none;
}
.ds-detail-value a:hover {
    text-decoration: underline;
}
.ds-response-badge {
    margin-top: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #1d4ed8;
    font-weight: 500;
    text-align: center;
}
.ds-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ds-follow-btn {
    transition: all 0.15s;
}
.ds-enquiry-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ds-enquiry-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.75rem;
}
.ds-enquiry-form textarea {
    width: 100%;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
    resize: vertical;
    box-sizing: border-box;
}

/* Dealer Pages Responsive */
@media (max-width: 900px) {
    .ds-body {
        grid-template-columns: 1fr;
    }
    .ds-sidebar {
        order: -1;
    }
    .ds-sidebar-sticky {
        position: static;
    }
}
@media (max-width: 768px) {
    .dd-hero {
        padding: 2.5rem 1rem 2rem;
    }
    .dd-hero h1 {
        font-size: 1.75rem;
    }
    .dd-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }
    .dd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    .ds-banner-overlay {
        padding: 1.5rem 1rem;
    }
    .ds-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .ds-banner-name-row h1 {
        font-size: 1.35rem;
    }
    .ds-stats-row {
        flex-wrap: wrap;
    }
    .ds-stat {
        min-width: 0;
        flex: 1 1 30%;
    }
}
@media (max-width: 480px) {
    .dd-hero {
        padding: 2rem 0.75rem 1.5rem;
    }
    .dd-hero h1 {
        font-size: 1.5rem;
    }
    .dd-hero-sub {
        font-size: 0.95rem;
    }
    .dd-search-bar {
        flex-direction: column;
        gap: 0;
    }
    .dd-search-icon {
        display: none;
    }
    .dd-search-input {
        width: 100%;
        padding: 0.65rem 0.75rem;
    }
    .dd-search-btn {
        width: 100%;
        border-radius: 8px !important;
    }
    .dd-grid {
        grid-template-columns: 1fr;
    }
    .dd-card {
        padding: 1.5rem 1rem 1.25rem;
    }
    .ds-body {
        padding: 1.5rem 0.75rem;
    }
    .ds-logo {
        width: 72px;
        height: 72px;
    }
    .ds-logo-placeholder {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ERROR PAGES                                                               */
/* ═══════════════════════════════════════════════════════════════════════════ */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 40px 20px; text-align: center; }
.error-page-inner { max-width: 560px; }
.error-code { font-size: 6rem; font-weight: 800; color: var(--brand-primary, #f0a500); line-height: 1; margin-bottom: 8px; font-family: var(--font-heading); letter-spacing: -0.04em; }
.error-icon { margin-bottom: 16px; opacity: 0.85; }
.error-heading { font-size: 1.75rem; color: var(--brand-secondary, #0f1f3d); margin-bottom: 12px; }
.error-message { color: var(--grey-600); font-size: 1.05rem; line-height: 1.6; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.error-search { display: flex; gap: 8px; margin-bottom: 24px; max-width: 420px; margin-left: auto; margin-right: auto; }
.error-search-input { flex: 1; padding: 12px 16px; border: 2px solid #e2e5ed; border-radius: 8px; font-size: 0.95rem; transition: border-color 0.2s ease; }
.error-search-input:focus { outline: none; border-color: var(--brand-primary, #f0a500); box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1); }
.error-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.error-links a:not(.btn) { color: var(--brand-secondary); font-weight: 500; text-decoration: underline; }
.error-links .btn { font-size: 0.9rem; padding: 8px 18px; }
.error-retry-countdown { margin-bottom: 20px; }
.error-retry-text { color: #888; font-size: 0.95rem; }
.error-retry-text strong { color: var(--brand-secondary, #0f1f3d); font-size: 1.1rem; }
.error-categories { margin-bottom: 24px; font-size: 0.95rem; color: var(--grey-600, #6b7280); }
.error-categories-label { font-weight: 600; color: var(--brand-secondary, #0f1f3d); margin-right: 6px; }
.error-categories a { color: var(--brand-primary, #f0a500); font-weight: 500; text-decoration: none; transition: color 0.2s; }
.error-categories a:hover { color: var(--brand-secondary, #0f1f3d); text-decoration: underline; }
.error-cat-sep { color: #cbd5e1; margin: 0 6px; }
.error-latest { margin-bottom: 24px; }
.error-latest a { color: var(--brand-secondary, #0f1f3d); font-weight: 600; font-size: 0.95rem; text-decoration: underline; }
.error-latest a:hover { color: var(--brand-primary, #f0a500); }
@media (max-width: 480px) {
    .error-code { font-size: 4rem; }
    .error-heading { font-size: 1.35rem; }
    .error-search { flex-direction: column; }
    .error-links { flex-direction: column; align-items: center; }
    .error-links .btn { width: 100%; max-width: 280px; }
    .error-categories { line-height: 2; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* COMMISSION CALCULATOR                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */
.commission-calc { max-width: 520px; margin: 0 auto; background: var(--white); border-radius: 12px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.calc-input-group { margin-bottom: 20px; }
.calc-input-group label { display: block; font-weight: 600; color: var(--brand-secondary); margin-bottom: 8px; }
.calc-price-wrap { position: relative; }
.calc-dollar { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; font-weight: 600; color: var(--grey-600); }
.calc-price-input { width: 100%; padding: 12px 16px 12px 32px; border: 2px solid var(--grey-200); border-radius: 8px; font-size: 1.2rem; font-weight: 600; }
.calc-price-input:focus { outline: none; border-color: var(--brand-primary); }
.calc-type-toggle { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.calc-type-btn { padding: 8px 16px; border: 2px solid var(--grey-200); border-radius: 8px; background: var(--white); cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.calc-type-btn:hover { border-color: var(--brand-primary); }
.calc-type-btn.active { background: var(--brand-secondary); color: #fff; border-color: var(--brand-secondary); }
.calc-results { border-top: 2px solid var(--grey-200); padding-top: 20px; }
.calc-result-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 1rem; }
.calc-result-fee { color: #dc2626; }
.calc-result-total { border-top: 2px solid var(--brand-secondary); padding-top: 14px; margin-top: 8px; font-size: 1.25rem; font-weight: 700; color: var(--brand-secondary); }
.calc-note { text-align: center; color: #888; font-size: 0.85rem; margin-top: 16px; }
