/* ============================================
   FONT IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - Color System
   ============================================ */
:root {
    /* Primary Colors */
    --color-primary: #1A1A2E;
    --color-primary-dark: #1A1A2E;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-hero-start: #f5f0ff;
    --color-bg-hero-end: #e8dfff;

    /* Text Colors */
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-placeholder: #999999;
    --color-text-white: #ffffff;

    /* Border Colors */
    --color-border-light: #e5e5e5;
    --color-border-medium: #d0d0d0;
    --color-border-divider: #f0f0f0;

    /* Overlay & Shadow Colors */
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-shadow-light: rgba(0, 0, 0, 0.1);
}

/* ============================================
   Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

/* ============================================
   Section
   ============================================ */
.robotics-section {
    background: var(--color-bg-white);
    padding: 7rem 0 8rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

/* ============================================
   Text Content Column
   ============================================ */
.content-col {
    max-width: 580px;
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.badge-pill {
    display: inline-block;
    color: #fff;
    background: #362C72;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 700;
    color: #362C72;
    line-height: 1.04;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-desc {
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ============================================
   Email Capture
   ============================================ */
.email-capture-wrap {
    margin-top: 2.5rem;
    max-width: 460px;
}

.email-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-medium);
    border-radius: 999px;
    padding: 0.375rem;
    box-shadow: 0 2px 12px var(--color-shadow-light);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.email-form:focus-within {
    box-shadow: 0 2px 18px rgba(54, 44, 114, 0.15);
    border-color: var(--color-primary);
}

.email-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.25rem;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
}

.email-input::placeholder {
    color: var(--color-text-placeholder);
}

.btn-join {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: #362C72;
    color: var(--color-text-white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-join:hover {
    background: var(--color-primary-dark);
    transform: scale(1.03);
}

/* ============================================
   Sub-links Row
   ============================================ */
.sub-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.timeline-link {
    color: var(--color-text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.timeline-link:hover {
    color: var(--color-text-primary);
}

.patent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-border-medium);
    background: var(--color-bg-light);
    color: var(--color-text-primary);
    border-radius: 999px;
}

/* ============================================
   Image Column
   ============================================ */
.image-col {
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-image {
    width: 100%;
    height: 288px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 1024px) {
    .robotics-section {
        padding: 11rem 0 13rem;
    }

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

    .hero-image {
        height: 440px;
    }
}


/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.stat-source {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--color-text-placeholder);
    margin-top: 0.25rem;
}

/* ============================================
   DARK SECTION
   ============================================ */
.dark-section {
    background: var(--color-primary-dark);
}

.dark-section__inner {
    padding: 7rem 0;
}

.dark-section__intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.dark-section__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-style: italic;
}

.dark-section__text {
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ============================================
   DARK STATS GRID
   ============================================ */
.dark-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 48rem;
    margin: 4rem auto 0;
    text-align: center;
    animation: fadeUp 0.7s 0.15s ease both;
}

.dark-stat__value {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.dark-stat__label {
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-white);
}

.dark-stat__source {
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.dark-section__footnote {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .dark-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .dark-section__inner {
        padding: 10rem 0;
    }
}


/* ============================================
   INCOME SECTION
   ============================================ */
.income-section {
    padding: 7rem 0;
    background: var(--color-bg-white);
}

.income-intro {
    max-width: 660px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.income-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.income-intro__text {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.income-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.income-card {
    padding: 2rem;
    background: var(--color-bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border-light);
}

.income-card--featured {
    border: 2px solid var(--color-primary);
}

.income-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.income-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.income-card__revenue {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.income-card__value {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.income-card__unit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.income-footnote {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 2.5rem;
}

/* ============================================
   PRINCIPLES SECTION
   ============================================ */
.principles-section {
    padding: 5rem 0 7rem;
    background: var(--color-bg-white);
    border-top: 1px solid var(--color-border-light);
}

.principles-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.principles-intro {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.7s ease both;
}

.principles-intro__tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.principles-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-top: 1rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.principle__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.principle__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-top: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .income-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .robotics-section {
        background: var(--color-bg-white);
        padding: 50px 20px 70px 0;
    }



}




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

    .principles-section {
        padding: 7rem 0;
    }
}


/* ============================================
   POSITION SECTION
   ============================================ */
.position-section {
    background: var(--color-bg-white);
    padding: 7rem 0;
}

.position-intro {
    max-width: 660px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.position-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.position-intro__text {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.glossary-term {
    cursor: help;
    border-bottom: 1px dotted var(--color-text-secondary);
}

.position-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.position-card {
    background: var(--color-bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border-light);
}

.position-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.position-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .position-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

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



/* ============================================
   OWNERSHIP SECTION
   ============================================ */
.ownership-section {
    background: var(--color-bg-white);
    padding: 7rem 0;
}

.ownership-intro {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.ownership-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.ownership-intro__text {
    margin-top: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   LIST
   ============================================ */
.ownership-list {
    max-width: 48rem;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--color-border-medium);
    animation: fadeUp 0.7s 0.1s ease both;
}

.ownership-item {
    background: var(--color-bg-white);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ownership-item__info {
    flex: 1;
}

.ownership-item__title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.ownership-item__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.ownership-item__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.ownership-item__price {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .ownership-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

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


/* ============================================
   PARTICIPATE SECTION
   ============================================ */
.participate-section {
    background: var(--color-bg-white);
    padding: 7rem 0;
}

.participate-intro {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.participate-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.participate-intro__text {
    margin-top: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.participate-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.participate-card {
    padding: 2.5rem;
    background: var(--color-bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border-light);
}

.participate-card--featured {
    border: 2px solid var(--color-primary);
}

.participate-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.participate-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.participate-card__price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    background: var(--color-primary-dark);
}

.timeline-section__top {
    padding: 7rem 0;
}

.timeline-intro {
    max-width: 660px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeUp 0.7s ease both;
}

.timeline-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-style: italic;
    color: var(--color-text-white);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.timeline-intro__text {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Timeline items */
.timeline {
    max-width: 40rem;
    margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-item__label {
    flex-shrink: 0;
    width: 5rem;
    text-align: right;
    padding-top: 0.2rem;
}

.timeline-item__tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.timeline-item__year {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-white);
}

.timeline-item__line {
    flex-shrink: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
}

.timeline-item__dot {
    position: absolute;
    top: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-secondary);
}

.timeline-item__dot--active {
    background: var(--color-text-white);
}

.timeline-item__content {
    padding-bottom: 2.5rem;
}

.timeline-item__title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.timeline-item__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.timeline-footnote {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
}

/* ============================================
   COMPARISON CARDS
   ============================================ */
.timeline-section__bottom {
    padding: 5rem 0 7rem;
}

.comparison-intro {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.comparison-intro__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.comparison-card {
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.comparison-card--pro {
    border-color: rgba(255, 255, 255, 0.25);
}

.comparison-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.comparison-card__title--muted {
    color: rgba(255, 255, 255, 0.5);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}


/* ═══════════════════════════════════════════
   SAFETY NET SECTION
═══════════════════════════════════════════ */
.safety-section {
    background: var(--color-bg-white);
    padding: 112px 20px;
}

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

.safety-container {
    max-width: 896px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.safety-header {
    max-width: 640px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.safety-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

@media (min-width: 640px) {
    .safety-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.safety-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.safety-card:hover {
    border-color: var(--color-border-medium);
    box-shadow: 0 8px 24px var(--color-shadow-light);
    transform: translateY(-2px);
}

.safety-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
}

.safety-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
}

.safety-footnote {
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 0;
    max-width: 680px;
}

/* ═══════════════════════════════════════════
   EQUITY CHART SECTION
═══════════════════════════════════════════ */
.equity-section {
    background: var(--color-bg-white);
    padding: 80px 20px;
    border-top: 1px solid var(--color-border-divider);
}

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

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

/* Header */
.equity-header {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.equity-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Chart wrap */
.equity-chart-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Legend */
.equity-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 13px;
    color: var(--color-text-secondary);
    flex-wrap: wrap;
}

.equity-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.equity-legend-line {
    display: inline-block;
    width: 32px;
    height: 3px;
    border-radius: 999px;
    flex-shrink: 0;
}

.equity-legend-line--red {
    background: #C0392B;
}

.equity-legend-line--dark {
    background: var(--color-primary);
}

/* SVG card */
.equity-svg-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 16px var(--color-shadow-light);
    overflow-x: auto;
}

@media (min-width: 1024px) {
    .equity-svg-card {
        padding: 32px;
    }
}

.equity-svg {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    min-width: 420px;
}

/* Stats */
.equity-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.equity-stat {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s ease;
}

.equity-stat:hover {
    box-shadow: 0 4px 16px var(--color-shadow-light);
}

.equity-stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.equity-stat-number--primary {
    color: var(--color-primary);
}

.equity-stat-number--dark-bg {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-radius: 8px;
    padding: 4px 0;
    display: block;
}

.equity-stat-label {
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Source note */
.equity-source {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {

    .safety-section,
    .equity-section {
        padding: 80px 16px;
    }

    .safety-card {
        padding: 24px;
    }

    .equity-stat {
        padding: 20px;
    }
}


/* ═══════════════════════════════════════════
   ROBOT CALCULATOR SECTION
═══════════════════════════════════════════ */
.robo-calc-section {
    background: var(--color-bg-white);
    padding: 80px 20px;
}

@media (min-width: 1024px) {
    .robo-calc-section {
        padding: 112px 20px;
    }
}

.robo-calc-container {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ── Header ── */
.robo-calc-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 560px;
}

.robo-calc-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

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

.robo-calc-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ── Card ── */
.robo-calc-card {
    width: 100%;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px var(--color-shadow-light);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .robo-calc-card {
        padding: 40px;
    }
}

/* ── Info grid ── */
.robo-calc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 480px) {
    .robo-calc-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.robo-calc-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.robo-calc-info-item label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: block;
}

.robo-calc-info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.robo-calc-info-item p {
    font-size: 11px;
    color: var(--color-text-placeholder);
    margin: 0;
    line-height: 1.4;
}

/* ── Slider ── */
.robo-calc-slider-wrap {
    border-top: 1px solid var(--color-border-divider);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.robo-calc-slider-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: block;
}

.robo-calc-range-wrap {
    position: relative;
    width: 100%;
}

/* Range input reset + custom style */
.robo-calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right,
            #1A1A2E 0%,
            #1A1A2E var(--progress, 30%),
            var(--color-border-light) var(--progress, 30%),
            var(--color-border-light) 100%);
}

.robo-calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1A1A2E;
    border: 3px solid var(--color-bg-white);
    box-shadow: 0 0 0 1.5px #1A1A2E, 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: grab;
    transition: transform 0.15s ease;
}

.robo-calc-range::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.robo-calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1A1A2E;
    border: 3px solid var(--color-bg-white);
    box-shadow: 0 0 0 1.5px #1A1A2E;
    cursor: grab;
}

/* Range labels */
.robo-calc-range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.robo-calc-range-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    transition: all 0.2s ease;
}

/* ── Results ── */
.robo-calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 400px) {
    .robo-calc-results {
        grid-template-columns: 1fr;
    }
}

.robo-calc-result-item {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-divider);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s ease;
}

.robo-calc-result-item--featured {
    background: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary), 0 4px 16px rgba(54, 44, 114, 0.1);
}

.robo-calc-result-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin: 0;
}

.robo-calc-result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    transition: color 0.3s ease;
}

.robo-calc-result-item--featured .robo-calc-result-value {
    color: var(--color-primary);
}

/* Animate on update */
.robo-calc-result-value.updating {
    color: var(--color-primary);
    transform: scale(1.04);
}

/* ── Footnote ── */
.robo-calc-footnote {
    font-size: 11px;
    color: var(--color-text-placeholder);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .robo-calc-section {
        padding: 64px 16px;
    }

    .robo-calc-results {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .robotics-section {
        background: var(--color-bg-white);
        padding: 50px 0px 45px;
    }

    .robo-calc-card {
        padding: 24px;
        gap: 24px;
    }
}


@media (min-width: 768px) {
    .robo-calc-results {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .robotics-section {
        background: var(--color-bg-white);
        padding: 50px 0px 45px;
    }
}


/* ═══════════════════════════════════════════
   SECURITY SECTION
═══════════════════════════════════════════ */
.security-section {
    background: #1A1A2E;
    padding: 112px 20px;
}

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

.security-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

/* ── Header ── */
.security-header {
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

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

.security-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.security-term {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
    cursor: help;
    transition: border-color 0.2s ease;
}

.security-term:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

/* ── Grid ── */
.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

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

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

/* ── Card ── */
.security-card {
    background: #2A2A3E;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.security-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: #2f2f4a;
    transform: translateY(-2px);
}

.security-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.security-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ── CTA ── */
.security-cta {
    text-align: center;
}

.security-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.security-link:hover {
    color: #fff;
    letter-spacing: 0.01em;
}

/* ── Responsivo ── */
@media (max-width: 480px) {
    .security-section {
        padding: 80px 16px;
    }

    .security-card {
        padding: 24px;
    }
}


/* ═══════════════════════════════════════════
   ROBOT COMPARE TABLE SECTION
═══════════════════════════════════════════ */
.rcomp-section {
    background: #1A1A2E;
    padding: 80px 20px;
}

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

.rcomp-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ── Header ── */
.rcomp-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rcomp-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

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

.rcomp-description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    max-width: 600px;
}

.rcomp-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* ── Table wrap ── */
.rcomp-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── Column headers ── */
.rcomp-col-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
    min-width: 520px;
}

.rcomp-col-spacer {
    /* empty */
}

.rcomp-col-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 0;
}

.rcomp-col-label--red {
    color: #FF6B6B;
}

.rcomp-col-label--white {
    color: #fff;
}

/* ── Rows ── */
.rcomp-rows {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 520px;
}

.rcomp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.15s ease;
}

.rcomp-row--alt {
    background: rgba(255, 255, 255, 0.03);
}

.rcomp-row--border {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
}

.rcomp-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ── Cells ── */
.rcomp-row-feature {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.rcomp-row-trad {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 107, 107, 0.75);
    font-weight: 400;
    line-height: 1.4;
}

.rcomp-row-sc {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* ── Footnote ── */
.rcomp-footnote {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    line-height: 1.65;
    margin: 20px 0 0;
}

/* ── Responsivo ── */
@media (max-width: 560px) {
    .rcomp-section {
        padding: 64px 16px;
    }

    .rcomp-row {
        padding: 14px 12px;
        gap: 8px;
    }

    .rcomp-row-feature,
    .rcomp-row-trad,
    .rcomp-row-sc {
        font-size: 12px;
    }

    .rcomp-col-label {
        font-size: 10px;
    }
}



/* ── Show/hide ── */
.rcomp-desktop {
    display: block;
}

.rcomp-mobile {
    display: none;
}

@media (max-width: 767px) {
    .rcomp-desktop {
        display: none;
    }

    .rcomp-mobile {
        display: block;
    }
}

/* ════════════════════════════════════
   RCOMP MOBILE ACCORDION — DARK THEME
════════════════════════════════════ */

.rcomp-accordion {
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    background: #16162a;
}

.rcomp-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rcomp-item:last-of-type {
    border-bottom: none;
}

.rcomp-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #9090aa;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.rcomp-trigger:hover {
    background: rgba(255, 255, 255, 0.03);
}

.rcomp-chevron {
    flex-shrink: 0;
    color: #555570;
    transition: transform 0.25s ease;
}

.rcomp-item.active .rcomp-chevron {
    transform: rotate(180deg);
}

.rcomp-panel {
    display: none;
    padding: 0 8px 10px;
}

.rcomp-item.active .rcomp-panel {
    display: block;
}

.rcomp-mob-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.rcomp-mob-row--trad {
    border-left: 3px solid #ef4444;
}

.rcomp-mob-row--sc {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.rcomp-mob-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555570;
    font-family: 'Inter', sans-serif;
}

.rcomp-mob-label--sc {
    color: #8888aa;
}

.rcomp-mob-value {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.rcomp-mob-row--trad .rcomp-mob-value {
    color: #ef4444;
}

.rcomp-footnote--mobile {
    font-size: 12px;
    color: #444460;
    text-align: center;
    padding: 14px 18px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rcomp-footnote--mobile a {
    color: #6666aa;
    text-decoration: underline;
}




/* ═══════════════════════════════════════════
   FLEET BUILDER SECTION
═══════════════════════════════════════════ */
.fleet-builder-section {
    background: var(--color-bg-white);
    padding: 80px 20px;
    border-top: 1px solid var(--color-border-divider);
}

@media (min-width: 1024px) {
    .fleet-builder-section {
        padding: 112px 20px;
    }
}

.fleet-builder-container {
    max-width: 896px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ── Header ── */
.fleet-builder-header {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.fleet-builder-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;
}

.fleet-builder-description {
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
    max-width: 640px;
    align-self: center;
}

/* ── Grid ── */
.fleet-builder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

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

/* ── Card ── */
.fleet-builder-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fleet-builder-card:hover {
    border-color: var(--color-border-medium);
    box-shadow: 0 8px 24px var(--color-shadow-light);
    transform: translateY(-2px);
}

.fleet-builder-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
}

.fleet-builder-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ── Coming soon tag ── */
.fleet-builder-coming,
.brag-coming {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-placeholder);
    letter-spacing: 0.05em;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-builder-coming::before,
.brag-coming::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ═══════════════════════════════════════════
   BRAG AND EARN SECTION
═══════════════════════════════════════════ */
.brag-section {
    background: var(--color-bg-white);
    padding: 80px 20px;
    border-top: 1px solid var(--color-border-divider);
}

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

.brag-container {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ── Header ── */
.brag-header {
    max-width: 640px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.brag-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;
}

.brag-description {
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ── Grid ── */
.brag-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 680px;
}

@media (min-width: 640px) {
    .brag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Card ── */
.brag-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-divider);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.brag-card:hover {
    background: var(--color-bg-hero-start);
    border-color: var(--color-border-medium);
    box-shadow: 0 8px 24px var(--color-shadow-light);
    transform: translateY(-2px);
}

.brag-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
}

.brag-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 480px) {

    .fleet-builder-section,
    .brag-section {
        padding: 64px 16px;
    }

    .fleet-builder-card,
    .brag-card {
        padding: 22px;
    }
}


/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
    background: var(--color-bg-white);
    padding: 112px 20px;
}

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

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

/* ── Header ── */
.faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-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;
}

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

/* ── List ── */
.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border-light);
}

/* ── Item ── */
.faq-item {
    border-bottom: 1px solid var(--color-border-light);
}

/* ── Button ── */
.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

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

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

/* Icon: + / × */
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

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

/* Horizontal bar */
.faq-icon::before {
    width: 10px;
    height: 1.5px;
}

/* Vertical bar */
.faq-icon::after {
    width: 1.5px;
    height: 10px;
}

/* Open state */
.faq-item.open .faq-btn span:first-child {
    color: var(--color-primary);
}

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

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

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

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

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

.faq-body-inner p {
    padding-bottom: 28px;
    font-size: clamp(14px, 1.5vw, 15px);
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
    max-width: 640px;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .faq-section {
        padding: 80px 16px;
    }

    .faq-btn {
        padding: 22px 0;
        gap: 16px;
    }
}