/* ═══════════════════════════════════════════════════════════════
   ALTITUDEPDF - SHARED STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   CSS RESET & BASE
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Primary Colors */
    --deep-sky: #1E3A5F;
    --altitude: #3B82F6;
    --sky-blue: #0EA5E9;

    /* Neutral Colors */
    --cloud-white: #FFFFFF;
    --cloud-gray: #F8FAFC;
    --storm: #64748B;
    --night-sky: #1E293B;

    /* Functional Colors */
    --success: #10B981;
    --alert: #EF4444;
    --process: #6366F1;

    /* Borders */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--storm);
    background-color: var(--cloud-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--night-sky);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-display {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.text-h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.text-h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.text-h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.text-body {
    font-size: 1rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
}

.text-center {
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: 800px;
}

.section {
    padding: var(--space-4xl) 0;
}

.section--gray {
    background-color: var(--cloud-gray);
}

.section--dark {
    background: linear-gradient(135deg, var(--deep-sky) 0%, #2d4a6f 100%);
    color: white;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════════ */
.page-header {
    padding: var(--space-2xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--storm);
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   TOOL PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.tool-section {
    padding: var(--space-2xl) 0;
}

.tool-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-xl);
    align-items: start;
}

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

.main-panel {
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: 90px;
}

@media (max-width: 900px) {
    .sidebar {
        position: static;
    }
}

.file-list-container {
    margin-top: var(--space-lg);
}

.file-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.file-list-header h3 {
    font-size: 1rem;
}

.file-list-header span {
    font-size: 0.875rem;
    color: var(--storm);
}

.file-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--night-sky);
}

.navbar__logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.navbar__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--altitude) 0%, var(--sky-blue) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__link {
    font-weight: 500;
    color: var(--storm);
    transition: color var(--transition-fast);
}

.navbar__link:hover,
.navbar__link--active {
    color: var(--altitude);
}

.navbar__menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--night-sky);
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
    }

    .navbar__menu-btn {
        display: flex;
    }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn--primary {
    background: var(--altitude);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn--primary:hover:not(:disabled) {
    background: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn--secondary {
    background: var(--cloud-white);
    color: var(--night-sky);
    border: 1px solid var(--border-light);
}

.btn--secondary:hover:not(:disabled) {
    border-color: var(--altitude);
    color: var(--altitude);
}

.btn--danger {
    background: var(--alert);
    color: white;
}

.btn--danger:hover:not(:disabled) {
    background: #dc2626;
}

.btn--success {
    background: var(--success);
    color: white;
}

.btn--success:hover:not(:disabled) {
    background: #059669;
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn--small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn--icon {
    padding: 12px;
    border-radius: var(--radius-md);
}

.btn__icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .btn--large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   UPLOAD ZONE
   ═══════════════════════════════════════════════════════════════ */
.upload-zone {
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    background: var(--cloud-gray);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--altitude);
    background: rgba(59, 130, 246, 0.02);
}

.upload-zone--active {
    border-color: var(--altitude);
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.01);
}

.upload-zone--dragging {
    border-color: var(--altitude);
    background: rgba(59, 130, 246, 0.08);
    border-style: solid;
}

.upload-zone__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    color: var(--altitude);
}

.upload-zone__text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--night-sky);
    margin-bottom: var(--space-sm);
}

.upload-zone__hint {
    font-size: 0.9375rem;
    color: var(--storm);
    margin-bottom: var(--space-md);
}

.upload-zone__formats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.upload-zone__format {
    padding: 4px 12px;
    background: var(--cloud-white);
    color: var(--storm);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.upload-zone__input {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   FILE LIST
   ═══════════════════════════════════════════════════════════════ */
.file-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.file-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--cloud-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.file-item:hover {
    border-color: var(--altitude);
    box-shadow: var(--shadow-md);
}

.file-item__handle {
    cursor: grab;
    color: var(--border-medium);
    padding: var(--space-xs);
}

.file-item__handle:active {
    cursor: grabbing;
}

.file-item__preview {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--cloud-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.file-item__preview img,
.file-item__preview canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-item__preview-icon {
    width: 24px;
    height: 24px;
    color: var(--altitude);
}

.file-item__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--cloud-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.file-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--altitude);
}

.file-item__icon canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.file-item__order {
    width: 24px;
    height: 24px;
    background: var(--altitude);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.file-item__info {
    flex: 1;
    min-width: 0;
}

.file-item__name {
    font-weight: 500;
    color: var(--night-sky);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-item__meta {
    font-size: 0.8125rem;
    color: var(--storm);
}

.file-item__actions {
    display: flex;
    gap: var(--space-xs);
}

.file-item__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--storm);
    transition: all var(--transition-fast);
}

.file-item__btn:hover {
    background: var(--cloud-gray);
    color: var(--altitude);
}

.file-item__btn--danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--alert);
}

.file-item__btn svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════════════
   TOOL CARDS GRID
   ═══════════════════════════════════════════════════════════════ */
.tools__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.tools__header p {
    margin-top: var(--space-md);
}

.tools__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1024px) {
    .tools__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.tool-card {
    background: var(--cloud-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.tool-card:hover {
    border-color: var(--altitude);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.tool-card--active {
    border-color: var(--altitude);
    background: rgba(59, 130, 246, 0.05);
}

.tool-card__icon {
    display: none;
}

.tool-card {
    padding: var(--space-lg);
}

.tool-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--night-sky);
    margin-bottom: var(--space-xs);
}

.tool-card__desc {
    font-size: 0.8125rem;
    color: var(--storm);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   STEPS / HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.steps__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    position: relative;
}

.steps__list::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--altitude), var(--sky-blue), var(--altitude));
    opacity: 0.3;
}

@media (max-width: 768px) {
    .steps__list {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .steps__list::before {
        display: none;
    }
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--altitude);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--night-sky);
    margin-bottom: var(--space-sm);
}

.step__desc {
    font-size: 0.9375rem;
    color: var(--storm);
    max-width: 280px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   ALTITUDE LINE — SIGNATURE DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.altitude-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--altitude) 20%, var(--sky-blue) 50%, var(--altitude) 80%, transparent 100%);
    opacity: 0.3;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--altitude) 0%, var(--sky-blue) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo img,
.footer__logo svg {
    width: 18px;
    height: 18px;
    color: white;
}

.footer__brand span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--night-sky);
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__link {
    font-size: 0.875rem;
    color: var(--storm);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--altitude);
}

.footer__copyright {
    width: 100%;
    text-align: center;
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--storm);
}

@media (max-width: 640px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */
.progress {
    width: 100%;
    height: 8px;
    background: var(--border-light);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--altitude), var(--sky-blue));
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--night-sky);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-xl);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 1000;
}

.toast--visible {
    transform: translateY(0);
    opacity: 1;
}

.toast--success {
    background: var(--success);
}

.toast--error {
    background: var(--alert);
}

.toast__icon {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   LOADING SPINNER
   ═══════════════════════════════════════════════════════════════ */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-light);
    border-top-color: var(--altitude);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.loading-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.loading-overlay__text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--night-sky);
}

/* ═══════════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--storm);
}

.empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    color: var(--border-medium);
}

.empty-state__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--night-sky);
    margin-bottom: var(--space-sm);
}

.empty-state__desc {
    font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.text-success {
    color: var(--success);
}

.text-error {
    color: var(--alert);
}

/* ═══════════════════════════════════════════════════════════════
   ACTION CARD (Sidebar)
   ═══════════════════════════════════════════════════════════════ */
.action-card {
    background: var(--cloud-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.action-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.action-card__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--cloud-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.action-card__info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.action-card__info-item span:first-child {
    color: var(--storm);
}

.action-card__info-item span:last-child {
    font-weight: 600;
    color: var(--night-sky);
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--storm);
}

.privacy-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--altitude);
}
