/* ============================================
   CONSUMER PROTECTION — Design System
   Aligned with vehicles.css tokens & patterns
   ============================================ */

/* ─── Shared Variables ──────────────────────── */
:root {
    --cp-dark: #1A1A2E;
    --cp-dark-card: #2A2A3E;
    --cp-dark-hover: #2f2f4a;
    --cp-dark-border: rgba(255, 255, 255, 0.06);
    --cp-dark-border-h: rgba(255, 255, 255, 0.14);
    --cp-dark-text: rgba(255, 255, 255, 0.65);
    --cp-dark-muted: rgba(255, 255, 255, 0.4);
    --cp-dark-subtle: rgba(255, 255, 255, 0.25);

    --cp-primary: var(--color-primary, #362C72);
    --cp-primary-dark: #2a2259;

    --cp-red: #DC2626;
    --cp-red-light: #fee2e2;
    --cp-red-border: #fecaca;
    --cp-red-text: #991b1b;
    --cp-red-body: #b91c1c;

    --cp-amber-bg: #fffbeb;
    --cp-amber-border: #fde68a;
    --cp-amber-text: #92400e;
    --cp-amber-body: #b45309;

    --cp-green-bg: rgba(170, 221, 0, 0.12);
    --cp-green-text: #16a34a;

    --cp-white: #ffffff;
    --cp-bg-light: var(--color-bg-light, #f7f6f3);
    --cp-border: var(--color-border-light, #e5e5e5);
    --cp-border-div: var(--color-border-divider, #f0f0f0);
    --cp-text: var(--color-text-primary, #1A1A2E);
    --cp-text-sec: var(--color-text-secondary, #666666);
    --cp-text-muted: var(--color-text-placeholder, #999999);
    --cp-shadow: var(--color-shadow-light, rgba(0, 0, 0, 0.08));
    --cp-radius-sm: 10px;
    --cp-radius: 14px;
    --cp-radius-lg: 20px;
}


/* ============================================
   HERO
   ============================================ */
.protection-hero {
    background: var(--cp-white);
    padding: 7rem 1.5rem 5rem;
}

@media (min-width: 1024px) {
    .protection-hero {
        padding: 11rem 1.5rem 7rem;
    }
}

.protection-hero-container {
    max-width: 45rem;
    margin: 0 auto;
    text-align: center;
}

.protection-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #92400e;
    background: #fffbeb;
    border-radius: 999px;
    margin-bottom: 1.75rem;
}

.protection-hero-heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cp-text);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.protection-hero-subtext {
    color: var(--cp-text-sec);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    max-width: 37rem;
    margin: 0 auto;
}


/* ============================================
   SAVINGS CLUB vs SECURITY
   ============================================ */
#cp-vs {
    padding: 80px 24px;
    background: var(--cp-white);
}

@media (min-width: 1024px) {
    #cp-vs {
        padding: 112px 24px;
    }
}

.cpvs-container {
    max-width: 900px;
    margin: 0 auto;
}

.cpvs-header {
    text-align: center;
    margin: 0 auto 52px;
    max-width: 660px;
}

.cpvs-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--cp-text);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 16px;
}

.cpvs-subtitle {
    font-size: 15px;
    color: var(--cp-text-sec);
    line-height: 1.7;
    margin: 0;
}

/* Grid */
.cpvs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

/* Cards */
.cpvs-card {
    border-radius: var(--cp-radius);
    padding: 36px 32px;
    border: 2px solid transparent;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cpvs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--cp-shadow);
}

.cpvs-card--sc {
    border-color: var(--cp-dark);
    background: var(--cp-white);
}

.cpvs-card--sec {
    border-color: var(--cp-red-border);
    background: var(--cp-white);
}

/* Card head */
.cpvs-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.cpvs-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cpvs-icon--sc {
    background: var(--cp-dark);
}

.cpvs-icon--sec {
    background: var(--cp-red-light);
}

.cpvs-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--cp-text);
    margin: 0;
}

/* Rows */
.cpvs-rows {
    display: flex;
    flex-direction: column;
}

.cpvs-row {
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cpvs-row--last {
    border-bottom: none;
    padding-bottom: 0;
}

.cpvs-row-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cp-text-muted);
    margin: 0 0 4px;
}

.cpvs-row-value {
    font-size: 13.5px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 400px) {
    .cpvs-card {
        padding: 24px 18px;
    }
}


/* ============================================
   HOWEY TEST
   ============================================ */
.howey-section {
    background: var(--cp-white);
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .howey-section {
        padding: 144px 24px;
    }
}

.howey-inner {
    max-width: 720px;
    margin: 0 auto;
}

.howey-header {
    text-align: center;
    margin-bottom: 52px;
}

.howey-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cp-text-muted);
    margin-bottom: 14px;
}

.howey-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--cp-text);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 18px;
}

.howey-description {
    font-size: 15px;
    color: var(--cp-text-sec);
    line-height: 1.75;
}

.howey-description em {
    font-style: italic;
}

/* List */
.howey-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

/* Card */
.howey-card {
    background: var(--cp-white);
    border: 1px solid var(--cp-border);
    border-radius: var(--cp-radius);
    padding: 28px 32px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.howey-card:hover {
    border-color: var(--color-border-medium, #ccc);
    box-shadow: 0 6px 20px var(--cp-shadow);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .howey-card {
        padding: 20px;
    }
}

.howey-card-head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Number badge — matches vehicles.css protection-number */
.howey-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cp-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.howey-card-body {
    flex: 1;
}

.howey-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--cp-text);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.howey-card-desc {
    font-size: 14px;
    color: var(--cp-text-sec);
    line-height: 1.75;
    margin-bottom: 18px;
}

/* Two-col mini grid */
.howey-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 520px) {
    .howey-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.howey-col {
    border-radius: var(--cp-radius-sm);
    padding: 14px 16px;
}

.howey-col--sc {
    background: rgba(26, 26, 46, 0.05);
}

.howey-col--sec {
    background: #fef2f2;
}

.howey-col-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.howey-col--sc .howey-col-label {
    color: var(--cp-text);
}

.howey-col--sec .howey-col-label {
    color: var(--cp-red-text);
}

.howey-col-text {
    font-size: 13px;
    color: var(--cp-text-sec);
    line-height: 1.7;
    margin: 0;
}

/* Callout — amber, matches vehicles amber warning */
.howey-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cp-amber-bg);
    border: 1px solid var(--cp-amber-border);
    border-radius: var(--cp-radius);
    padding: 28px 32px;
    margin-top: 12px;
}

@media (max-width: 480px) {
    .howey-callout {
        padding: 20px;
    }
}

.howey-callout-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.howey-callout-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--cp-amber-text);
    margin-bottom: 8px;
}

.howey-callout-text {
    font-size: 13.5px;
    color: var(--cp-amber-body);
    line-height: 1.75;
    margin: 0;
}

.howey-callout-text strong {
    font-weight: 700;
    color: var(--cp-amber-text);
}


/* ============================================
   SEC REGISTRATION
   ============================================ */
.sec-section {
    background: var(--cp-bg-light);
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .sec-section {
        padding: 96px 24px;
    }
}

.sec-inner {
    max-width: 900px;
    margin: 0 auto;
}

.sec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .sec-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

.sec-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cp-text-muted);
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--cp-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 22px;
}

.sec-body {
    font-size: 15px;
    color: var(--cp-text-sec);
    line-height: 1.8;
    margin-bottom: 14px;
}

.sec-body:last-child {
    margin-bottom: 0;
}

/* Boxes — matches vehicles security-card pattern */
.sec-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sec-box {
    border-radius: var(--cp-radius);
    padding: 24px 28px;
    border: 1px solid transparent;
}

.sec-box--neutral {
    background: rgba(26, 26, 46, 0.05);
    border-color: rgba(26, 26, 46, 0.08);
}

.sec-box--red {
    background: #fef2f2;
    border-color: var(--cp-red-border);
}

.sec-box-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sec-box-title--neutral {
    color: var(--cp-text);
}

.sec-box-title--red {
    color: var(--cp-red-text);
}

.sec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sec-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.6;
}

.sec-list-item--neutral {
    color: var(--cp-text-sec);
}

.sec-list-item--red {
    color: var(--cp-red-body);
}

.sec-bullet {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--cp-text-muted);
}

.sec-bullet--red {
    color: #f87171;
}


/* ============================================
   RED FLAGS
   ============================================ */
.redflag-section {
    background: var(--cp-white);
    padding: 80px 24px;
    border-top: 1px solid var(--cp-border-div);
}

@media (min-width: 1024px) {
    .redflag-section {
        padding: 96px 24px;
    }
}

.redflag-inner {
    max-width: 900px;
    margin: 0 auto;
}

.redflag-header {
    text-align: center;
    margin: 0 auto 52px;
    max-width: 620px;
}

.redflag-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--cp-text);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 18px;
}

.redflag-description {
    font-size: 15px;
    color: var(--cp-text-sec);
    line-height: 1.7;
}

/* Grid — matches vehicle-includes / faq-grid */
.redflag-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .redflag-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card */
.redflag-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cp-white);
    border: 1px solid var(--cp-border);
    border-radius: var(--cp-radius);
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.redflag-card:hover {
    border-color: #fca5a5;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.08);
    transform: translateY(-2px);
}

.redflag-icon-wrap {
    flex-shrink: 0;
    margin-top: 2px;
}

.redflag-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--cp-text);
    margin-bottom: 7px;
    line-height: 1.35;
}

.redflag-card-body {
    font-size: 13px;
    color: var(--cp-text-sec);
    line-height: 1.75;
    margin: 0;
}


/* ============================================
   HOW WE PROTECT YOU
   ============================================ */
.protection-section {
    padding: 96px 24px;
    background: var(--cp-bg-light);
}

@media (min-width: 1024px) {
    .protection-section {
        padding: 144px 24px;
    }
}

.protection-container {
    max-width: 1000px;
    margin: 0 auto;
}

.protection-header {
    max-width: 660px;
    margin: 0 auto 56px;
    text-align: center;
}

.protection-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cp-text-muted);
    margin-bottom: 14px;
}

.protection-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--cp-text);
    margin: 0;
}

.protection-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--cp-text-sec);
    margin-top: 20px;
}

/* Grid — matches vehicle-includes 2-col */
.protection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

/* Card */
.protection-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--cp-white);
    padding: 28px;
    border-radius: var(--cp-radius);
    border: 1px solid var(--cp-border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.protection-card:hover {
    border-color: var(--cp-primary);
    box-shadow: 0 6px 20px rgba(54, 44, 114, 0.1);
    transform: translateY(-2px);
}

.protection-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-dark);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.protection-content {
    flex: 1;
}

.protection-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--cp-text);
    margin: 0 0 8px;
    line-height: 1.4;
}

.protection-card-description {
    font-size: 13px;
    line-height: 1.75;
    color: var(--cp-text-sec);
    margin: 0;
}


/* ============================================
   NOTICE BOX
   ============================================ */
.notice-section {
    padding: 80px 24px;
    background: var(--cp-white);
    border-top: 1px solid var(--cp-border-div);
}

@media (min-width: 1024px) {
    .notice-section {
        padding: 96px 24px;
    }
}

.notice-container {
    max-width: 768px;
    margin: 0 auto;
}

.notice-box {
    background: var(--cp-white);
    padding: 32px 36px;
    border-radius: var(--cp-radius-lg);
    border: 1px solid var(--cp-border);
    box-shadow: 0 2px 16px var(--cp-shadow);
}

@media (min-width: 1024px) {
    .notice-box {
        padding: 40px 48px;
    }
}

.notice-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cp-text);
    margin: 0 0 18px;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notice-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--cp-text-sec);
    margin: 0;
}

.notice-link {
    color: var(--cp-primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(54, 44, 114, 0.3);
    transition: text-decoration-color 0.2s ease;
}

.notice-link:hover {
    text-decoration-color: var(--cp-primary);
}


/* ============================================
   FAQ GRID
   ============================================ */
.faq-section {
    padding: 96px 24px;
    background: var(--cp-bg-light);
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 144px 24px;
    }
}

.faq-container {
    max-width: 896px;
    margin: 0 auto;
}

.faq-header {
    max-width: 660px;
    margin: 0 auto 56px;
    text-align: center;
}

.faq-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cp-text-muted);
    margin-bottom: 14px;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--cp-text);
    margin: 0;
}

.faq-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cp-text-sec);
    margin-top: 16px;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 768px;
    margin: 0 auto;
}

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

/* Card — matches vehicle-includes-card */
.faq-card {
    background: var(--cp-white);
    padding: 28px;
    border-radius: var(--cp-radius);
    border: 1px solid var(--cp-border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-card:hover {
    border-color: var(--cp-primary);
    box-shadow: 0 6px 20px rgba(54, 44, 114, 0.08);
    transform: translateY(-2px);
}

.faq-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--cp-text);
    margin: 0 0 10px;
    line-height: 1.4;
}

.faq-card-description {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--cp-text-sec);
    margin: 0;
}


/* ============================================
   ACCORDION — matches vehicles.css accordion
   ============================================ */
/* ============================================
   ACCORDION
   ============================================ */
.accordion-section {
    padding: 80px 24px;
    background: var(--cp-white);
}

@media (min-width: 1024px) {
    .accordion-section {
        padding: 112px 24px;
    }
}

.accordion-container {
    max-width: 740px;
    margin: 0 auto;
    width: 100%;
}

.accordion-header {
    margin-bottom: 48px;
    text-align: center;
}

.accordion-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--cp-text);
    margin: 0 0 12px;
    line-height: 1.1;
}

.accordion-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--cp-text-sec);
    margin: 0;
}

.accordion-wrapper {
    width: 100%;
    border-top: 1px solid #e8e8e8;
}

/* Item */
.accordion-item {
    border-bottom: 1px solid #e8e8e8;
    background: transparent;
    animation: cpSlideIn 0.45s ease both;
    opacity: 0;
}

.accordion-item:nth-child(1) {
    animation-delay: 0.05s;
}

.accordion-item:nth-child(2) {
    animation-delay: 0.10s;
}

.accordion-item:nth-child(3) {
    animation-delay: 0.15s;
}

.accordion-item:nth-child(4) {
    animation-delay: 0.20s;
}

.accordion-item:nth-child(5) {
    animation-delay: 0.25s;
}

.accordion-item:nth-child(6) {
    animation-delay: 0.30s;
}

@keyframes cpSlideIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button */
.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: space-between;
    background: #fff !important;
    border: none;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 24px;
}

.accordion-question {
    font-size: 15px;
    font-weight: 400;
    color: var(--cp-text);
    line-height: 1.5;
    flex: 1;
    transition: color 0.15s ease;
}

@media (min-width: 1024px) {
    .accordion-question {
        font-size: 15.5px;
    }
}

.accordion-button:hover .accordion-question {
    color: var(--cp-text);
}

/* Icon — circle with + */
.accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #d4d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
}

.accordion-button:hover .accordion-icon {
    border-color: #999;
    color: #666;
}

.accordion-item {
    border: none;
}

.accordion-button::after {
    display: none;
}

.accordion-button:focus {
    border: none !important;
    border-color: #fff !important;
}

.accordion-button:focus {
    outline: none;
}

button:focus {
    outline: none;
}

.accordion-button:focus-visible {
    outline: none;
}

.accordion-item.active .accordion-icon {
    background: var(--cp-text);
    border-color: var(--cp-text);
    color: #fff;
    transform: rotate(45deg);
}

/* Content panel */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding-bottom: 22px;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--cp-text-sec);
    margin: 0;
}

@media (min-width: 1024px) {
    .accordion-content p {
        font-size: 14.5px;
    }
}

@media (max-width: 640px) {
    .accordion-section {
        padding: 56px 16px;
    }

    .accordion-header {
        margin-bottom: 36px;
    }

    .accordion-title {
        font-size: 1.6rem;
    }

    .accordion-button {
        padding: 20px 0;
    }

    .accordion-question {
        font-size: 14px;
    }

    .accordion-icon {
        width: 26px;
        height: 26px;
        font-size: 15px;
    }
}


/* ============================================
   CTA SECTION — matches vehicles cta-section
   ============================================ */
.cta-section {
    padding: 80px 24px;
    background: var(--cp-dark);
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 112px 24px;
    }
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.08;
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cp-dark-text);
    margin: 0 auto 40px;
    max-width: 480px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Buttons — matches vehicles cta-button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.cta-button-primary {
    background: #fff;
    color: var(--cp-dark);
    border-color: #fff;
}

.cta-button-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-button-secondary {
    background: transparent;
    color: var(--cp-dark-text);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .cta-section {
        padding: 56px 16px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .cta-button {
        flex: 1;
        min-width: calc(50% - 6px);
        padding: 12px 20px;
    }

    .cta-button:nth-child(3) {
        flex-basis: 100%;
    }
}