/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================================
   ACCESSIBILITY - Focus Styles
   =========================================== */

/* Skip to content link for keyboard users */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #00BFA6;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus visible styles for all interactive elements */
*:focus-visible {
    outline: 3px solid #00BFA6;
    outline-offset: 2px;
}

/* Checkbox focus styles */
.checkbox-container input[type="checkbox"]:focus-visible {
    outline: 3px solid #00BFA6;
    outline-offset: 2px;
}

/* Button focus styles */
button:focus-visible,
.btn-submit:focus-visible,
.btn-clear:focus-visible,
.btn-fullscreen:focus-visible {
    outline: 3px solid #00BFA6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.3);
}

/* Input focus styles */
input:focus-visible {
    outline: none;
    border-color: #00BFA6;
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.2);
}

/* Link focus styles */
a:focus-visible {
    outline: 3px solid #00BFA6;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    *:focus-visible {
        outline: 3px solid #000;
        outline-offset: 3px;
    }
}

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

:root {
    --primary-teal: #00BFA6;
    --accent-green: #4CAF50;
    --accent-orange: #FF9800;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --border-color: #e0e0e0;
    --background: #f5f5f5;
    --card-background: #ffffff;
    --error-color: #f44336;
    --success-color: #4CAF50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen - Dark Theme */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: #0a0a0a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #2a2a2a;
    border-top-color: #17afa5;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loading-screen p {
    margin-top: 20px;
    color: #a3a3a3;
    font-size: 15px;
}

/* Error Screen - Dark Theme */
.error-screen {
    --es-bg: #0a0a0a;
    --es-text: #f5f5f5;
    --es-text-secondary: #a3a3a3;
    --es-error: #ef4444;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 24px;
    text-align: center;
    background: var(--es-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.error-icon {
    font-size: 64px;
    margin-bottom: 24px;
    filter: grayscale(0);
}

.error-screen h2 {
    color: var(--es-error);
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
}

.error-screen p {
    color: var(--es-text-secondary);
    margin-bottom: 8px;
    max-width: 400px;
    font-size: 16px;
    line-height: 1.6;
}

.error-hint {
    font-size: 14px;
    color: var(--es-text-secondary);
    opacity: 0.7;
    margin-top: 4px;
}

/* Success Screen - Dark Theme */
.success-screen {
    --ss-bg: #0a0a0a;
    --ss-card-bg: #1a1a1a;
    --ss-border: #2a2a2a;
    --ss-text: #f5f5f5;
    --ss-text-secondary: #a3a3a3;
    --ss-primary: #17afa5;
    --ss-success: #22c55e;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 24px;
    text-align: center;
    background: var(--ss-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.success-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--ss-success) 0%, #16a34a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.success-screen h2 {
    color: var(--ss-text);
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.success-screen > p {
    color: var(--ss-text-secondary);
    margin-bottom: 8px;
    max-width: 400px;
    font-size: 16px;
    line-height: 1.6;
}

.success-hint {
    font-size: 14px;
    color: var(--ss-text-secondary);
    opacity: 0.7;
    margin-top: 4px;
}

.next-steps {
    margin-top: 36px;
    text-align: left;
    background: var(--ss-card-bg);
    border: 1px solid var(--ss-border);
    padding: 28px;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
}

.next-steps h3 {
    margin-bottom: 18px;
    color: var(--ss-primary);
    font-size: 18px;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 24px;
    margin: 0;
}

.next-steps li {
    margin-bottom: 12px;
    color: var(--ss-text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.next-steps li::marker {
    color: var(--ss-primary);
    font-weight: 600;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-teal);
}

.quote-status {
    background: var(--primary-teal);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Quote Card */
.quote-card {
    background: var(--card-background);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quote-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.quote-number label,
.quote-date label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.quote-header .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Business Info */
.business-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.business-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.business-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Client Info */
.client-info {
    margin-bottom: 25px;
}

.client-info label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.client-info .value {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-info .vehicle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Line Items */
.line-items {
    margin-bottom: 25px;
}

.line-items h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.line-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.line-item:last-child {
    border-bottom: none;
}

.line-item-details {
    flex: 1;
}

.line-item-description {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.line-item-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

.line-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-left: 15px;
    white-space: nowrap;
}

/* Totals */
.totals {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.total-row.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-teal);
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
}

/* Notes */
.notes {
    margin-top: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.notes label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.notes p {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Validity */
.validity {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.validity p {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Signature Section */
.signature-section {
    background: var(--card-background);
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.signature-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.signature-instructions {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 14px;
}

/* Signature Pad */
.signature-pad-container {
    position: relative;
    margin-bottom: 25px;
}

.signature-pad {
    width: 100%;
    height: 200px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: crosshair;
    /* Critical for mobile - prevents scrolling while drawing */
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Prevent iOS text selection */
    -webkit-tap-highlight-color: transparent;
}

.signature-pad.has-signature {
    border-color: var(--primary-teal);
}

/* Stroke counter for mobile debugging */
.stroke-counter {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
}

/* Mobile expanded mode (alternative to fullscreen) */
.signature-pad-container.mobile-expanded {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: white;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signature-pad-container.mobile-expanded .signature-pad {
    flex: 1;
    max-height: calc(100vh - 80px);
    height: auto;
    min-height: 300px;
}

.signature-pad-container.mobile-expanded .signature-controls {
    top: 30px;
    right: 30px;
}

.signature-pad-container.mobile-expanded .stroke-counter {
    bottom: 30px;
    left: 30px;
}

.signature-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
}

.btn-fullscreen,
.btn-clear {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-fullscreen {
    font-size: 16px;
    padding: 6px 10px;
}

.btn-fullscreen:hover,
.btn-clear:hover {
    background: white;
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.btn-clear:hover {
    color: var(--error-color);
    border-color: var(--error-color);
}

/* Fullscreen mode styles */
.signature-pad-container:fullscreen {
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signature-pad-container:-webkit-full-screen {
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signature-pad-container:-moz-full-screen {
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signature-pad-container:-ms-fullscreen {
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signature-pad-container:fullscreen .signature-pad {
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    height: 90vh;
}

.signature-pad-container:-webkit-full-screen .signature-pad {
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    height: 90vh;
}

.signature-pad-container:-moz-full-screen .signature-pad {
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    height: 90vh;
}

/* Exit fullscreen indicator */
.signature-pad-container:fullscreen::before {
    content: 'Press ESC to exit fullscreen';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 1000;
    animation: fadeOut 3s forwards;
}

@keyframes fadeOut {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-submit:hover:not(:disabled) {
    background: #00a890;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-submit.submitting {
    background: #999;
    pointer-events: none;
}

/* Electronic Signature Disclosure */
.esign-disclosure {
    background: #f0f8ff;
    border: 2px solid #00BFA6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.esign-disclosure h3 {
    color: var(--primary-teal);
    font-size: 18px;
    margin-bottom: 12px;
}

.esign-disclosure p {
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.esign-disclosure ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.esign-disclosure li {
    color: var(--text-primary);
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Legal Consents */
.legal-consents {
    margin: 25px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group:last-child {
    margin-bottom: 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-teal);
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.checkbox-label a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Legal Text */
.legal-text {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .header {
        margin-bottom: 20px;
    }

    .logo {
        font-size: 20px;
    }

    .quote-card,
    .signature-section {
        padding: 20px;
    }

    .quote-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .signature-pad {
        /* Larger signature area on mobile for easier signing */
        height: 220px;
        min-height: 180px;
    }

    .signature-pad-container {
        /* Add visual hint that this is interactive on mobile */
        position: relative;
    }

    .signature-pad-container::after {
        content: 'Sign here with your finger';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ccc;
        font-size: 14px;
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.3s;
    }

    .signature-pad-container:has(.signature-pad.has-signature)::after {
        opacity: 0;
    }

    .total-row.total {
        font-size: 18px;
    }

    .next-steps {
        padding: 20px;
    }
}

/* Print Styles (for future PDF generation) */
@media print {
    body {
        background: white;
    }

    .signature-section,
    .btn-clear,
    .btn-submit {
        display: none;
    }

    .quote-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

/* ===========================================
   LANDING PAGE STYLES - Dark Theme
   =========================================== */

/* Dark Theme Variables */
.landing-screen {
    --lp-bg: #0a0a0a;
    --lp-bg-card: #1a1a1a;
    --lp-bg-card-hover: #222222;
    --lp-border: #2a2a2a;
    --lp-border-light: #333333;
    --lp-text: #f5f5f5;
    --lp-text-secondary: #a3a3a3;
    --lp-text-muted: #737373;
    --lp-primary: #17afa5;
    --lp-primary-light: #1fc4b8;
    --lp-primary-glow: rgba(23, 175, 165, 0.3);
}

.landing-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 24px;
    background: var(--lp-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.landing-content {
    max-width: 1000px;
    width: 100%;
}

/* Header */
.landing-header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(23, 175, 165, 0.25);
}

.landing-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-size: 18px;
    color: var(--lp-text-secondary);
    font-weight: 400;
}

/* Cards Grid */
.landing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

/* Card */
.landing-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-card:hover {
    background: var(--lp-bg-card-hover);
    border-color: var(--lp-border-light);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(23, 175, 165, 0.15);
}

/* Card Badge */
.card-badge {
    display: inline-block;
    background: rgba(23, 175, 165, 0.15);
    color: var(--lp-primary);
    border: 1px solid rgba(23, 175, 165, 0.3);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.card-badge.secondary {
    background: rgba(163, 163, 163, 0.1);
    color: var(--lp-text-secondary);
    border-color: rgba(163, 163, 163, 0.2);
}

/* Card App Icon */
.card-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
}

.landing-card:hover .card-app-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(23, 175, 165, 0.3);
}

/* Card Content */
.landing-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 12px;
}

.card-description {
    font-size: 15px;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Expecting Quote Box */
.expecting-quote-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(23, 175, 165, 0.08);
    border: 1px solid rgba(23, 175, 165, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.eq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.expecting-quote-box strong {
    display: block;
    color: var(--lp-text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.expecting-quote-box p {
    color: var(--lp-text-secondary);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.card-divider {
    height: 1px;
    background: var(--lp-border);
    margin: 24px 0;
    width: 100%;
}

.card-description {
    text-align: left;
    width: 100%;
}

/* Feature List */
.landing-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    width: 100%;
    text-align: left;
}

.landing-card .feature-list li {
    font-size: 14px;
    color: var(--lp-text-secondary);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.landing-card .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 14px;
}

/* Buttons */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.landing-btn.primary {
    background: var(--lp-primary);
    color: white;
    box-shadow: 0 0 0 0 var(--lp-primary-glow),
                0 4px 12px rgba(23, 175, 165, 0.3);
}

.landing-btn.primary:hover {
    background: var(--lp-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--lp-primary-glow),
                0 6px 20px rgba(23, 175, 165, 0.4);
}

.landing-btn.secondary {
    background: transparent;
    color: var(--lp-text);
    border: 1px solid var(--lp-border-light);
}

.landing-btn.secondary:hover {
    background: var(--lp-bg-card);
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    transform: translateY(-2px);
}

.landing-btn .apple-icon {
    width: 18px;
    height: 18px;
}

/* Footer */
.landing-footer {
    text-align: center;
}

.landing-footer > p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: var(--lp-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lp-primary);
}

.footer-dot {
    width: 4px;
    height: 4px;
    background: var(--lp-border-light);
    border-radius: 50%;
}

/* Tablet */
@media (max-width: 900px) {
    .landing-header h1 {
        font-size: 40px;
    }

    .landing-cards {
        gap: 20px;
    }

    .landing-card {
        padding: 28px 24px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .landing-screen {
        padding: 40px 20px;
    }

    .landing-header {
        margin-bottom: 40px;
    }

    .landing-logo {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .landing-header h1 {
        font-size: 32px;
    }

    .landing-subtitle {
        font-size: 16px;
    }

    .landing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .landing-card {
        padding: 28px 24px;
    }

    .card-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .landing-card h2 {
        font-size: 22px;
    }
}

/* ===========================================
   APP PROMO (Success Screen)
   =========================================== */

.app-promo {
    margin-top: 40px;
    text-align: center;
    max-width: 420px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 32px 28px;
}

.promo-divider {
    display: none;
}

.promo-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(23, 175, 165, 0.3);
    object-fit: contain;
}

.app-promo h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 8px;
}

.app-promo > p {
    font-size: 14px;
    color: #a3a3a3;
    margin-bottom: 20px;
}

.app-promo ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.app-promo ul li {
    font-size: 13px;
    color: #a3a3a3;
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.app-promo ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #17afa5;
    font-weight: 700;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #17afa5;
    color: white;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(23, 175, 165, 0.3),
                0 4px 12px rgba(23, 175, 165, 0.3);
}

.promo-btn:hover {
    background: #1fc4b8;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(23, 175, 165, 0.3),
                0 6px 20px rgba(23, 175, 165, 0.4);
}

.promo-btn .apple-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 500px) {
    .app-promo ul {
        grid-template-columns: 1fr;
    }
}
