/* ===== BUTTONS ===== */
.cta-button-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--dark-text);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.2px;
}

.nav-apple-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--dark-text);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.2px;
    margin-top: var(--spacing-md);
}

.cta-button-large {
    font-size: 18px;
    padding: 18px 48px;
}

.cta-button:hover,
.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== BADGES ===== */
.pill-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.2px;
}

.pill-badge-light {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.2px;
}

.step-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--dark-text);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.2px;
}

/* ===== APP BADGES ===== */
.app-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background-color: var(--dark-text);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.badge-small {
    font-size: 9px;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
    line-height: 1;
}

.badge-large {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1;
}

/* Navigation-specific app badge styling */
nav .app-badge {
    padding: 12px 20px;
}

nav .app-badge .badge-icon {
    width: 20px;
    height: 20px;
}

nav .app-badge .badge-small {
    font-size: 8px;
}

nav .app-badge .badge-large {
    font-size: 14px;
}

/* ===== CARDS ===== */
.value-card,
.feature-card-invest,
.revenue-card,
.metric-point,
.market-stat {
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover,
.feature-card-invest:hover,
.revenue-card:hover,
.metric-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.step-card,
.position-card,
.tech-card {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--light-purple) 0%, rgba(228, 222, 243, 0.4) 100%);
    border-radius: var(--radius-lg);
}

.position-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.step-card {
    text-align: left;
}

/* ===== ICONS ===== */
.value-card-icon,
.card-icon,
.revenue-icon,
.position-icon,
.metric-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-purple) 0%, rgba(228, 222, 243, 0.6) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card-icon svg,
.card-icon svg,
.revenue-icon svg,
.position-icon svg,
.metric-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--dark-text);
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 28px;
    height: 28px;
}
