/* ============================================
   Dealers Hero Section
   ============================================ */
.dealers-hero {
    background-color: #1A1A2E;
    padding: 6rem 1.5rem 5rem;
}

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

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

/* Eyebrow */
.dealers-hero-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.30em;
    color: rgba(255, 255, 255, 0.40);
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

/* Heading */
.dealers-hero-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.dealers-hero-heading-muted {
    color: rgba(255, 255, 255, 0.35);
}

/* Subtext */
.dealers-hero-subtext {
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Actions */
.dealers-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
    .dealers-hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.dealers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.dealers-btn--primary {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border: 2px solid var(--color-bg-white);
}

.dealers-btn--primary:hover {
    background-color: var(--color-bg-hero-start);
    border-color: var(--color-bg-hero-start);
}

.dealers-btn--outline {
    background-color: transparent;
    color: var(--color-text-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.dealers-btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.40);
}

/* Stats */
.dealers-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dealers-hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dealers-stat-value {
    color: var(--color-text-white);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.dealers-stat-label {
    color: rgba(255, 255, 255, 0.30);
    font-size: 11px;
    line-height: 1.5;
}


/* ============================================
   Revenue Streams Section
   ============================================ */
:root {
    --color-bg-dark: #1A1A2E;
}

.streams-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .streams-section {
        padding: 7rem 0;
    }
}

.streams-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.streams-header {
    text-align: center;
    margin-bottom: 4rem;
}

.streams-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.streams-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.streams-subtext {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* Cards */
.streams-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stream-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    padding: 2rem;
    border-left: 4px solid var(--color-bg-dark);
}

@media (min-width: 768px) {
    .stream-card {
        padding: 2.5rem;
    }

    .stream-stats {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

/* Card Header */
.stream-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.stream-number {
    color: var(--color-bg-dark);
    opacity: 0.20;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.stream-title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: var(--color-text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.stream-subtitle {
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* Body */
.stream-body {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Stats */
.stream-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stream-stat {
    background-color: var(--color-bg-dark);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.stream-stat-value {
    color: var(--color-text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stream-stat-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    line-height: 1.4;
}

/* Link */
.stream-link {
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.stream-link:hover {
    color: var(--color-bg-dark);
}


/* ============================================
   The Math Section
   ============================================ */
.math-section {
    background-color: var(--color-bg-white);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .math-section {
        padding: 7rem 0;
    }
}

.math-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.math-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.math-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.math-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
    max-width: 40rem;
    margin: 0 auto;
}

.math-inner {
    max-width: 48rem;
    margin: 0 auto;
}

/* Rows */
.math-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.math-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 3px solid var(--color-bg-dark);
}

@media (min-width: 768px) {
    .math-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.math-row-info {
    flex: 1;
}

.math-row-title {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.math-row-desc {
    color: var(--color-text-secondary);
    font-size: 13px;
}

.math-row-values {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

.math-value-block {
    text-align: right;
}

.math-value-label {
    color: var(--color-text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.math-value-number {
    color: var(--color-text-primary);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Total */
.math-total {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-bg-dark);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .math-total {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.math-total-title {
    color: var(--color-text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.math-total-subtitle {
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
}

.math-total-right {
    text-align: right;
}

.math-total-value {
    color: var(--color-text-white);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.math-total-monthly {
    color: rgba(255, 255, 255, 0.30);
    font-size: 11px;
    margin-top: 0.25rem;
}

/* Disclaimer */
.math-disclaimer {
    color: rgba(103, 103, 103, 0.50);
    font-size: 11px;
    text-align: center;
    line-height: 1.7;
}

/* ============================================
   ROI Calculator Section
   ============================================ */
.roi-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .roi-section {
        padding: 7rem 0;
    }
}

.roi-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.roi-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.roi-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.roi-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.roi-subtext {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.roi-inner {
    max-width: 60rem;
    margin: 0 auto;
}

.roi-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Inputs */
.roi-inputs-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .roi-inputs-card {
        padding: 2rem;
    }
}

.roi-inputs-title {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.roi-sliders {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roi-slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.roi-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.roi-slider-label {
    color: var(--color-text-secondary);
    font-size: 13px;
}

.roi-slider-value {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.roi-range {
    width: 100%;
    accent-color: var(--color-bg-dark);
    cursor: pointer;
}

.roi-slider-ends {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(103, 103, 103, 0.50);
}

/* Results */
.roi-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roi-result-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

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

.roi-result-title {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.roi-result-desc {
    color: var(--color-text-secondary);
    font-size: 12px;
}

.roi-result-values {
    text-align: right;
}

.roi-result-mo {
    color: var(--color-text-primary);
    font-size: 1.15rem;
    font-weight: 700;
}

.roi-result-yr {
    color: var(--color-text-secondary);
    font-size: 12px;
}

.roi-bar-track {
    width: 100%;
    height: 8px;
    background-color: var(--color-bg-light);
    border-radius: 9999px;
    overflow: hidden;
}

.roi-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.6s ease;
}

.roi-bar-fill--1 {
    background-color: var(--color-bg-dark);
}

.roi-bar-fill--2 {
    background-color: var(--color-primary);
}

.roi-bar-fill--3 {
    background-color: var(--color-primary-dark);
}

/* Total */
.roi-total-card {
    background-color: var(--color-bg-dark);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-total-title {
    color: var(--color-text-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.roi-total-subtitle {
    color: rgba(255, 255, 255, 0.30);
    font-size: 12px;
}

.roi-total-right {
    text-align: right;
}

.roi-total-value {
    color: var(--color-text-white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.roi-total-mo {
    color: rgba(255, 255, 255, 0.30);
    font-size: 12px;
    margin-top: 0.2rem;
}

.roi-disclaimer {
    color: rgba(103, 103, 103, 0.50);
    font-size: 10px;
    line-height: 1.7;
}

/* ============================================
   Getting Started Section
   ============================================ */
.steps-section {
    background-color: var(--color-bg-white);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .steps-section {
        padding: 7rem 0;
    }
}

.steps-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.steps-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.steps-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.steps-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-text-white);
    font-size: 1.25rem;
    font-weight: 700;
}

.step-title {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-body {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Dealer Playbook Section
   ============================================ */
.playbook-section {
    background-color: var(--color-bg-dark);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .playbook-section {
        padding: 7rem 0;
    }
}

.playbook-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.playbook-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.30em;
    color: rgba(255, 255, 255, 0.30);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.playbook-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.playbook-subtext {
    color: rgba(255, 255, 255, 0.50);
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.playbook-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--color-bg-white);
    color: var(--color-bg-dark);
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.playbook-btn:hover {
    background-color: var(--color-bg-hero-start);
}

.playbook-note {
    color: rgba(255, 255, 255, 0.20);
    font-size: 11px;
    margin-top: 1rem;
}


.step-item {
    display: grid;
}

.step-item:not(:last-child)::after {
    background: none;
}




/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --color-bg-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-hero-start: #f5f0ff;
    --color-bg-hero-end: #e8dfff;
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-placeholder: #999999;
    --color-text-white: #ffffff;
    --color-border-light: #e5e5e5;
    --color-border-medium: #d0d0d0;
    --color-border-divider: #f0f0f0;
    --color-bg-dark: #1A1A2E;
}

/* ─── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
}

/* ─── Section ───────────────────────────────────────────── */
.cta-section {
    background-color: var(--color-bg-dark);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow behind content */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Top border line */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15));
}

/* ─── Inner ─────────────────────────────────────────────── */
.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ─── Title ─────────────────────────────────────────────── */
.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-title-dim {
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Description ───────────────────────────────────────── */
.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* ─── Actions ───────────────────────────────────────────── */
.cta-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ─── Buttons ───────────────────────────────────────────── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

/* Primary — white fill */
.cta-btn--primary {
    background-color: var(--color-bg-white);
    color: var(--color-bg-dark);
    border: none;
}

.cta-btn--primary:hover {
    opacity: 0.9;
}

/* Secondary — ghost */
.cta-btn--secondary {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.cta-btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 480px) {
    .cta-section {
        padding: 72px 20px 88px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }

    .stream-stats {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .math-total-right {
        text-align: left;
    }
}





/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.airfaq-section {
    background: var(--color-bg-white);
    padding: 112px 20px;
    border-top: 1px solid var(--color-border-divider);
}

@media (min-width: 1024px) {
    .airfaq-section {
        padding: 160px 20px;
    }
}

.airfaq-container {
    max-width: 672px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.airfaq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.airfaq-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin: 0;
}

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

.airfaq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border-light);
}

.airfaq-item {
    border-bottom: 1px solid var(--color-border-light);
}

.airfaq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.airfaq-btn span:first-child {
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.45;
    flex: 1;
    transition: color 0.2s ease;
}

.airfaq-btn:hover span:first-child {
    color: var(--color-primary);
}

/* Icon bubble — reutiliza o mesmo padrão do .resfaq-icon */
.airfaq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.airfaq-icon::before,
.airfaq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-text-secondary);
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.3s ease;
}

.airfaq-icon::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.airfaq-icon::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.airfaq-item.open .airfaq-btn span:first-child {
    color: var(--color-primary);
}

.airfaq-item.open .airfaq-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(45deg);
}

.airfaq-item.open .airfaq-icon::before,
.airfaq-item.open .airfaq-icon::after {
    background: #fff;
}

/* Accordion body */
.airfaq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.airfaq-item.open .airfaq-body {
    grid-template-rows: 1fr;
}

.airfaq-body-inner {
    overflow: hidden;
}

.airfaq-body-inner p {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
}