* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0d0d0d;
    --bg-alt: #141414;
    --bg-input: #1a1a1a;
    --text: #e0e0e0;
    --heading: #ffffff;
    --muted: #888888;
    --accent: #cc2222;
    --accent-dim: #a01a1a;
    --border: #222222;
    --border-light: #2e2e2e;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--heading);
    text-decoration: none;
}

.nav-links .nav-phone {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-links .nav-phone:hover {
    color: var(--accent);
}

.nav-links .cta {
    background: var(--accent);
    color: #fff;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    transition: background 0.15s;
}

.nav-links .cta:hover {
    background: var(--accent-dim);
    text-decoration: none;
}

.theme-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--muted);
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
}

.theme-btn:hover {
    border-color: var(--muted);
}

.theme-btn svg {
    width: 16px;
    height: 16px;
}

.sun-icon { display: none; }
.light-mode .sun-icon { display: block; }
.light-mode .moon-icon { display: none; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
}

.hero {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(13,13,13,0.95) 30%, transparent 100%);
    padding: 3rem 0 2.5rem;
}

.hero-text h1 {
    color: var(--heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    max-width: 600px;
}

.hero-text p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.hero-text .btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.hero-text .btn:hover {
    background: var(--accent-dim);
    text-decoration: none;
}

.section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
}

.section-alt {
    background: var(--bg-alt);
}

.section h2 {
    color: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.section > .wrap > p.subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.stats-bar div {
    flex: 1;
    text-align: center;
    padding: 1.25rem 1rem;
    border-right: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
}

.stats-bar div:last-child {
    border-right: none;
}

.stats-bar strong {
    display: block;
    color: var(--heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.db-filters {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.db-filters select,
.db-filters button {
    padding: 0.6rem 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-family: inherit;
    font-size: 0.85rem;
    transition: border-color 0.15s, background 0.15s;
}

.db-filters select:focus {
    border-color: var(--accent);
    outline: none;
}

.db-filters select:disabled {
    opacity: 0.4;
}

.db-filters button {
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.db-filters button:hover {
    background: var(--accent-dim);
}

.db-filters button:disabled {
    background: var(--border-light);
    cursor: not-allowed;
}

.results-placeholder {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.result-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 1.25rem;
    margin-bottom: 0.75rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.result-header h3 {
    font-size: 1rem;
    color: var(--heading);
}

.result-header .stage-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

.result-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.result-stats span strong {
    color: var(--heading);
}

.chart-container {
    margin-top: 0.75rem;
    height: 220px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    padding: 0.75rem;
}

.appointment-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.appointment-row .btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.appointment-row .btn:hover {
    border-color: var(--muted);
}

.service-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.service-row:last-child {
    border-bottom: none;
}

.service-row img {
    width: 200px;
    height: 130px;
    object-fit: cover;
}

.service-row .badge-pop {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.service-row h3 {
    font-size: 1.05rem;
    color: var(--heading);
    margin-bottom: 0.35rem;
}

.service-row p.desc {
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.service-row p.tags {
    font-size: 0.8rem;
    color: var(--muted);
}

.service-row a.more {
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.4rem;
    transition: color 0.15s;
}

.dealer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.dealer-grid h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.dealer-grid > div > p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.dealer-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.dealer-benefits li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.dealer-benefits li:last-child {
    border-bottom: none;
}

.dealer-benefits strong {
    display: block;
    color: var(--heading);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.dealer-benefits span {
    font-size: 0.82rem;
    color: var(--muted);
}

.dealer-grid .btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.dealer-grid .btn:hover {
    background: var(--accent-dim);
    text-decoration: none;
}

.dealer-grid img {
    width: 100%;
    height: auto;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-cols > div {
    padding-bottom: 0.75rem;
}

.about-cols h3 {
    font-size: 0.95rem;
    color: var(--heading);
    margin-bottom: 0.3rem;
}

.about-cols p {
    font-size: 0.875rem;
    color: var(--muted);
}

.reviews-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.review {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.review:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.review blockquote {
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.review cite {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--muted);
}

.review cite strong {
    color: var(--heading);
    font-weight: 600;
}

.review .rating {
    color: #e8a020;
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
}

.reviews-cta {
    margin-top: 1.5rem;
}

.reviews-cta button {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s;
}

.reviews-cta button:hover {
    border-color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

form.contact-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
    margin-top: 0.75rem;
}

form.contact-form label:first-child {
    margin-top: 0;
}

form.contact-form input,
form.contact-form textarea,
form.contact-form select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.15s;
}

form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
    border-color: var(--accent);
    outline: none;
}

.form-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

form.contact-form button {
    margin-top: 1rem;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

form.contact-form button:hover {
    background: var(--accent-dim);
}

.contact-info dl {
    margin-top: 0.5rem;
}

.contact-info dt {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}

.contact-info dt:first-child {
    margin-top: 0;
}

.contact-info dd {
    font-size: 0.9rem;
    color: var(--text);
}

.contact-info dd a {
    color: var(--text);
}

footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid img {
    height: 36px;
    margin-bottom: 0.75rem;
}

.footer-grid p {
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-grid h4 {
    font-size: 0.78rem;
    color: var(--heading);
    margin-bottom: 0.6rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.3rem;
}

.footer-grid ul li a {
    font-size: 0.82rem;
    color: var(--muted);
    transition: color 0.15s;
}

.footer-grid ul li a:hover {
    color: var(--text);
}

.footer-cert {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.footer-cert p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.footer-cert img {
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.8;
}

.footer-copy {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-copy a {
    color: var(--muted);
}

.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.floating-contact a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    transition: background 0.15s;
}

.floating-contact a:hover {
    background: #1da851;
    text-decoration: none;
}

.floating-contact svg {
    width: 22px;
    height: 22px;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 200;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-box {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
}

.modal-box h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.modal-box label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
    margin-top: 0.75rem;
}

.modal-box label:first-of-type {
    margin-top: 0;
}

.modal-box input,
.modal-box textarea,
.modal-box select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-family: inherit;
    font-size: 0.85rem;
    transition: border-color 0.15s;
}

.modal-box input:focus,
.modal-box textarea:focus,
.modal-box select:focus {
    border-color: var(--accent);
    outline: none;
}

.modal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.modal-buttons button {
    flex: 1;
    padding: 0.55rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.modal-buttons .btn-cancel {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
}

.modal-buttons .btn-submit {
    background: var(--accent);
    color: #fff;
}

.modal-buttons .btn-submit:hover {
    background: var(--accent-dim);
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.2rem;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.3rem;
    color: var(--border-light);
    cursor: pointer;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #e8a020;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.review-message,
.appointment-message {
    margin-top: 0.75rem;
    padding: 0.6rem;
    font-size: 0.82rem;
    display: none;
}

.review-message.show,
.review-message.success,
.review-message.error,
.appointment-message.show,
.appointment-message.success,
.appointment-message.error {
    display: block;
}

.review-message.success,
.appointment-message.success {
    color: #4caf50;
}

.review-message.error,
.appointment-message.error {
    color: var(--accent);
}

.appointment-section {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.appointment-section .btn,
.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.55rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.appointment-section .btn:hover,
.btn-primary:hover {
    background: var(--accent-dim);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-box .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.stat-box .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading);
}

.stat-box .gain {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

.light-mode .nav-logo img,
.light-mode .footer-grid img {
    filter: invert(1);
}

.light-mode {
    --bg: #f5f5f5;
    --bg-alt: #ffffff;
    --bg-input: #ffffff;
    --text: #333333;
    --heading: #000000;
    --muted: #777777;
    --border: #dddddd;
    --border-light: #cccccc;
}

.light-mode .hero-text {
    background: linear-gradient(0deg, rgba(245,245,245,0.95) 30%, transparent 100%);
}

.light-mode .floating-contact a {
    background: #25D366;
}

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

    .about-cols {
        grid-template-columns: 1fr;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .review:nth-child(odd) {
        border-right: none;
    }

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

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

    .service-row {
        grid-template-columns: 140px 1fr;
    }

    .service-row img {
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem 20px;
        gap: 0.75rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-img {
        height: 340px;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .stats-bar {
        flex-wrap: wrap;
    }

    .stats-bar div {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border);
    }

    .stats-bar div:nth-child(2) {
        border-right: none;
    }

    .db-filters {
        grid-template-columns: 1fr 1fr;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row img {
        width: 100%;
        height: 160px;
    }

    .form-cols {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .stats-bar div {
        flex: 1 1 100%;
        border-right: none;
    }

    .db-filters {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 1.2rem;
    }
}

.page-hero {
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
}

.page-hero a.back {
    font-size: 0.82rem;
    color: var(--muted);
    display: inline-block;
    margin-bottom: 1rem;
}

.page-hero a.back:hover {
    color: var(--accent);
}

.page-hero h1 {
    font-size: 1.5rem;
    color: var(--heading);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 650px;
}

.page-body {
    padding: 2rem 0 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 1.25rem;
}

.info-box h3 {
    font-size: 0.95rem;
    color: var(--heading);
    margin-bottom: 0.6rem;
}

.info-box p {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.info-box ul {
    list-style: none;
    font-size: 0.85rem;
}

.info-box ul li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--muted);
}

.info-box ul li::before {
    content: '\2013';
    position: absolute;
    left: 0;
}

.page-body h2 {
    font-size: 1.1rem;
    color: var(--heading);
    margin: 1.75rem 0 0.75rem;
}

.page-body > .wrap > p {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.data-table th,
.data-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border: 1px solid var(--border);
}

.data-table th {
    background: var(--bg-alt);
    color: var(--heading);
    font-weight: 600;
}

.data-table td {
    color: var(--text);
}

.warn-box {
    border: 1px solid var(--border-light);
    border-left: 3px solid #e8a020;
    background: var(--bg-alt);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text);
}

.warn-box strong {
    color: #e8a020;
}

.step-list {
    list-style: none;
    counter-reset: step;
    margin: 1.5rem 0;
}

.step-list li {
    counter-increment: step;
    padding: 0.6rem 0 0.6rem 2.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    padding: 1.75rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h2 {
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.cta-box .btn,
.cta-box a.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.55rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0 0.4rem;
    transition: background 0.15s;
}

.cta-box .btn:hover {
    background: var(--accent-dim);
    text-decoration: none;
}

.cta-box .btn.wa {
    background: #25D366;
}

.cta-box .btn.wa:hover {
    background: #1da851;
}

.legal-page {
    padding: 2rem 0 3rem;
}

.legal-page h1 {
    font-size: 1.4rem;
    color: var(--heading);
    margin-bottom: 0.4rem;
}

.legal-page .updated {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    font-size: 1rem;
    color: var(--heading);
    margin: 1.5rem 0 0.5rem;
}

.legal-page h3 {
    font-size: 0.9rem;
    color: var(--heading);
    margin: 1rem 0 0.4rem;
}

.legal-page p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.legal-page ul,
.legal-page ol {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.2rem;
}

.legal-page a {
    color: var(--accent);
}

.legal-page .toc {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.legal-page .toc h2 {
    margin-top: 0;
}

.legal-page .toc ul {
    list-style: none;
    padding-left: 0;
}

.legal-page .toc li {
    padding: 0.2rem 0;
}

.legal-page .important {
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    margin: 1rem 0;
    font-size: 0.83rem;
}

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

    .data-table {
        font-size: 0.78rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.4rem 0.5rem;
    }

    .cta-box .btn {
        display: block;
        margin: 0.4rem 0;
    }
}

@media print {
    .nav, .floating-contact, .nav-toggle, .cta-box, footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
