/* =============================================
   TRAVEL CAPTION GENERATOR - CSS STYLESHEET
   Optimized for Travel Agents (40-65+ years)
   Color Scheme: Navy, Gold, Teal, White
   ============================================= */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Color Palette */
    --navy-primary: #0A2540;
    --navy-hover: #1a3550;
    --navy-active: #051829;
    
    --gold-accent: #D2A96A;
    --gold-hover: #c49955;
    --gold-active: #b58940;
    
    --teal-secondary: #40D5CB;
    --teal-hover: #35c4bb;
    --teal-active: #2ab3aa;
    
    --white: #FFFFFF;
    --gray-warm: #E5E5E5;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-disabled: #A9A9A9;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Font Sizes - Larger for older users */
    --text-xs: 14px;
    --text-sm: 16px;
    --text-base: 18px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 40px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    
    /* Border Radius - Soft edges */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows - Subtle depth */
    --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 4px 8px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 8px 16px rgba(10, 37, 64, 0.15);
    
    /* Focus Ring - High contrast for accessibility */
    --focus-ring: 0 0 0 3px rgba(64, 213, 203, 0.5);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--navy-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #e5e5e5 100%);
    min-height: 100vh;
    padding: var(--space-lg);
}

/* ===== WIZARD CONTAINER ===== */
.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ===== HEADER ===== */
.wizard-header {
    background: var(--navy-primary);
    color: var(--white);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}

.app-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.app-header-row > div:first-child {
    flex: 1;
}
.app-header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 4px;
}
.app-user-name {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
}
.app-user-name:hover { color: #fff; text-decoration: underline; }
.app-plan-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.app-plan-badge.plan-basic { background: rgba(30,120,200,0.5); }
.app-plan-badge.plan-pro   { background: rgba(120,60,200,0.5); }
.app-signout-btn {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.app-signout-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.wizard-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: var(--text-base);
    color: var(--gray-warm);
    font-weight: 400;
}

/* ===== PROGRESS BAR ===== */
.progress-container {
    padding: var(--space-xl) var(--space-lg);
    background: var(--gray-light);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-medium);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-secondary), var(--gold-accent));
    width: 20%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

/* Step Indicators */
.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xs);
}

.step-indicator {
    flex: 1;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    position: relative;
}

.step-indicator:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.step-indicator.active {
    opacity: 1;
    cursor: default;
}

.step-indicator.active:hover {
    transform: none;
}

.step-indicator.completed {
    opacity: 0.7;
}

.step-indicator.completed:hover {
    opacity: 1;
}

/* Tooltip for step indicators */
.step-indicator.completed::after {
    content: 'Click to go back';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.step-indicator.completed:hover::after {
    opacity: 1;
}

/* Hide tooltip on mobile */
@media (max-width: 768px) {
    .step-indicator.completed::after {
        display: none;
    }
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-xs);
    background: var(--gray-medium);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: var(--navy-primary);
    transform: scale(1.1);
}

.step-indicator.completed .step-number {
    background: var(--teal-secondary);
}

.step-indicator.completed .step-number::after {
    content: '✓';
    position: absolute;
    font-size: 14px;
    font-weight: bold;
}

.step-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy-primary);
}

/* ===== WIZARD STEPS ===== */
.wizard-form {
    padding: var(--space-2xl) var(--space-lg);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content {
    margin-bottom: var(--space-2xl);
}

.step-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: var(--text-base);
    color: #666;
    margin-bottom: var(--space-xl);
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: var(--space-lg);
}

label {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: var(--space-sm);
}

/* Text Inputs & Textareas */
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--navy-primary);
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    min-height: 52px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--teal-secondary);
    box-shadow: var(--focus-ring);
}

textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230A2540' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

::placeholder {
    color: #999;
}

/* ===== FILE UPLOAD ===== */
.file-upload-area {
    border: 3px dashed var(--gray-medium);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    background: var(--gray-light);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--teal-secondary);
    background: var(--white);
}

.file-upload-area.drag-over {
    border-color: var(--teal-secondary);
    background: #e8f8f7;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.upload-text {
    font-size: var(--text-base);
    color: var(--navy-primary);
    margin-bottom: var(--space-sm);
}

.upload-hint {
    font-size: var(--text-sm);
    color: #666;
}

input[type="file"] {
    display: none;
}

.file-preview {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border: 2px solid var(--teal-secondary);
    border-radius: var(--radius-lg);
    display: none;
}

.file-preview.active {
    display: block;
}

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

.preview-title {
    font-weight: 600;
    color: var(--navy-primary);
}

.remove-file {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: var(--text-base);
    padding: var(--space-xs);
}

.preview-content {
    max-width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.preview-content img,
.preview-content video {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.file-info {
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: #666;
}

/* ===== RADIO CARDS ===== */
.radio-group {
    display: grid;
    gap: var(--space-md);
}

.radio-card {
    display: block;
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-light);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-card:hover {
    background: var(--white);
    border-color: var(--teal-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card input[type="radio"]:checked + .radio-content {
    color: var(--navy-primary);
}

.radio-card input[type="radio"]:checked ~ * {
    font-weight: 600;
}

.radio-card:has(input:checked) {
    background: var(--white);
    border-color: var(--navy-primary);
    border-width: 3px;
    box-shadow: var(--shadow-md);
}

.radio-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.radio-content strong {
    font-size: var(--text-lg);
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

.radio-content span {
    font-size: var(--text-sm);
    color: #666;
}

/* ===== CHECKBOXES ===== */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.checkbox-label:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--teal-secondary);
}

.checkbox-label span {
    font-size: var(--text-base);
    color: var(--navy-primary);
}

/* ===== BUTTONS ===== */
.button-group {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    padding-top: var(--space-lg);
    border-top: 2px solid var(--gray-warm);
}

.btn {
    padding: 16px 32px;
    font-size: var(--text-base);
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.btn:focus {
    outline: none;
    box-shadow: var(--focus-ring), var(--shadow-md);
}

.btn:active {
    transform: translateY(1px);
}

/* Primary Button - Navy Blue */
.btn-primary {
    background: var(--navy-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-primary:active {
    background: var(--navy-active);
}

.btn-primary:disabled {
    background: var(--gray-disabled);
    cursor: not-allowed;
    transform: none;
}

/* Accent Button - Gold */
.btn-accent {
    background: var(--gold-accent);
    color: var(--navy-primary);
}

.btn-accent:hover {
    background: var(--gold-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-accent:active {
    background: var(--gold-active);
}

/* Tertiary Button - White with Border */
.btn-tertiary {
    background: var(--white);
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
    box-shadow: none;
}

.btn-tertiary:hover {
    background: var(--gray-light);
    border-color: var(--navy-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.btn-tertiary:active {
    background: var(--gray-warm);
}

/* Teal Button - Travel Vibes */
.btn-teal {
    background: var(--teal-secondary);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--teal-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-teal:active {
    background: var(--teal-active);
}

/* Quick Caption Button */
.btn-quick-caption {
    background: linear-gradient(135deg, #D2A96A, #c08a40);
    color: var(--navy-primary);
    font-weight: 700;
}

.btn-quick-caption:hover {
    background: linear-gradient(135deg, #c49955, #b07530);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-quick-caption:active {
    background: linear-gradient(135deg, #b58940, #9f6520);
    transform: translateY(0);
}

/* Quick Caption Topic Cards */
.quick-caption-hint {
    font-size: var(--text-sm);
    color: #666;
    margin: 0 0 20px 0;
    background: #f5f8ff;
    border-left: 3px solid var(--navy-primary);
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
}

.quick-topics-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.quick-loading {
    text-align: center;
    padding: 32px;
    color: #888;
    font-style: italic;
    font-size: var(--text-base);
}

.quick-topic-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 2px solid var(--gray-warm);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    user-select: none;
}

.quick-topic-card:hover {
    border-color: var(--navy-primary);
    background: #f0f4ff;
    transform: translateX(4px);
}

.quick-topic-card.selected {
    border-color: var(--navy-primary);
    background: #e8effe;
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}

.quick-topic-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--gray-warm);
    color: var(--navy-primary);
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s;
}

.quick-topic-card.selected .quick-topic-number {
    background: var(--navy-primary);
    color: var(--white);
}

.quick-topic-text {
    font-size: var(--text-base);
    color: #2c2c2c;
    line-height: 1.4;
}

.btn-refresh-topics {
    background: none;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.btn-refresh-topics:hover {
    border-color: var(--navy-primary);
    color: var(--navy-primary);
    background: #f0f4ff;
}

.quick-options-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

/* Copy Button - Small Utility */
.btn-copy {
    padding: 10px 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    background: var(--white);
    color: var(--navy-primary);
    border: 2px solid var(--gold-accent);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
}

.btn-copy:hover {
    background: var(--gold-accent);
    color: var(--navy-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== RESULT CARD ===== */
.result-card {
    background: var(--gray-light);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gray-medium);
}

.result-label {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--navy-primary);
}

.result-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--navy-primary);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    min-height: 150px;
    white-space: pre-wrap;
}

/* Result Info Cards */
.result-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.info-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-warm);
    text-align: center;
}

.info-card strong {
    display: block;
    font-size: var(--text-sm);
    color: #666;
    margin-bottom: 4px;
}

.info-card span {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

/* ===== SOCIAL MEDIA PLATFORMS ===== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.platform-card {
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: var(--teal-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gray-warm);
}

.platform-icon {
    font-size: 40px;
}

.platform-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--navy-primary);
    margin-bottom: 4px;
}

.platform-status {
    font-size: var(--text-sm);
    color: #666;
}

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

.preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: var(--gray-light);
}

.preview-caption {
    font-size: var(--text-sm);
    color: var(--navy-primary);
    background: var(--gray-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    max-height: 120px;
    overflow-y: auto;
    line-height: 1.6;
    white-space: pre-wrap;
}

.platform-limits {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

.platform-limits.error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.platform-limits.success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.char-count {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: #666;
    margin-bottom: var(--space-md);
}

.post-btn {
    width: 100%;
    padding: 14px;
    font-size: var(--text-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.post-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.post-btn.facebook {
    background: #1877f2;
    color: white;
}

.post-btn.tiktok {
    background: #000000;
    color: white;
}

.post-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-btn:disabled {
    background: var(--gray-disabled);
    cursor: not-allowed;
    transform: none;
}

.post-btn.success {
    background: #28a745;
}

/* Success Animation */
@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.platform-card.posted {
    border-color: #28a745;
    animation: successPulse 0.6s ease;
}

/* Alert Box */
.alert-box {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
}

.alert-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border: 2px solid #17a2b8;
    color: #0c5460;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding: var(--space-sm);
    }
    
    .wizard-header h1 {
        font-size: var(--text-2xl);
    }
    
    .wizard-form {
        padding: var(--space-lg) var(--space-md);
    }
    
    .step-title {
        font-size: var(--text-xl);
    }
    
    .progress-steps {
        gap: 4px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .result-info {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MERGED LANDING PAGE STYLES (from user) ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding: 0; /* override global page padding for landing layout */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #1877f2;
}

/* Header nav (login / sign up buttons) */
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-login {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s;
}
.nav-login:hover { color: #1877f2; }
.nav-signup {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: opacity 0.2s;
}
.nav-signup:hover { opacity: 0.9; }

/* Back-to-home link on auth pages */
.auth-back-home {
    display: inline-block;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}
.auth-back-home:hover { color: #667eea; }

.logo-img {
    height: clamp(44px, 6.5vw, 72px);
    width: auto;
    display: block;
}

.logo-text {
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 48px 18px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.15;
    text-align: center;
}

.hero .subheadline {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero p {
    font-size: 16px;
    margin-bottom: 18px;
    opacity: 0.92;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Problem Section */
.problem-section {
    padding: 48px 18px;
    background: #f8f9fa;
}

.problem-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 48px 18px;
    background: linear-gradient(135deg, #1877f2 0%, #0c5db8 100%);
    color: white;
    text-align: center;
}

.stats-section h2 { font-size: 28px; margin-bottom: 30px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }

.stat-card { padding: 20px; }

.stat-number { font-size: 60px; font-weight: 700; margin-bottom: 10px; display: block; }
.stat-label { font-size: 18px; opacity: 0.9; }

/* Solution Section */
.solution-section { padding: 48px 18px; background: white; }
.solution-section h2 { font-size: 28px; text-align: center; margin-bottom: 12px; color: #2c3e50; }
.solution-subtitle { text-align: center; font-size: 16px; color: #7f8c8d; margin-bottom: 28px; font-style: italic; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card { padding: 18px; border: 2px solid #e8e8e8; border-radius: 10px; transition: transform 0.18s, border-color 0.18s; }

/* Responsive fallbacks for features grid */
@media (max-width: 1000px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-card:hover { transform: translateY(-5px); border-color: #667eea; }
.feature-icon { font-size: 40px; margin-bottom: 20px; }
.feature-card h3 { font-size: 22px; margin-bottom: 15px; color: #2c3e50; }
.feature-card p { color: #555; line-height: 1.7; }

/* How It Works */
.how-it-works { padding: 48px 18px; background: #f8f9fa; }
.how-it-works h2 { font-size: 28px; text-align: center; margin-bottom: 36px; color: #2c3e50; }
.steps-container { max-width: 800px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; margin-bottom: 20px; background: white; padding: 18px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.step-number { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; flex-shrink: 0; margin-right: 18px; }
.step-content h3 { font-size: 22px; margin-bottom: 10px; color: #2c3e50; }
.step-content p { color: #555; line-height: 1.7; }

/* Social Proof */
.social-proof { padding: 48px 18px; background: white; text-align: center; }
.social-proof h2 { font-size: 28px; margin-bottom: 30px; color: #2c3e50; }
.testimonial-placeholder { max-width: 700px; margin: 0 auto; padding: 40px; background: #f8f9fa; border-radius: 10px; font-style: italic; color: #7f8c8d; }

/* Final CTA */
.final-cta { padding: 48px 18px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; text-align: center; }
.final-cta h2 { font-size: 28px; margin-bottom: 12px; }
.final-cta p { font-size: 16px; margin-bottom: 18px; opacity: 0.92; }

/* Footer */
footer.landing { background: #2c3e50; color: white; padding: 40px 20px; text-align: center; }
footer.landing p { opacity: 0.8; }

/* Responsive */
@media (max-width: 1100px) {
    .problem-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .hero .subheadline { font-size: 16px; }
    .hero p { font-size: 14px; }
    .problem-section h2, .stats-section h2, .solution-section h2, .how-it-works h2, .social-proof h2 { font-size: 20px; }
    .stat-number { font-size: 36px; }
    .step { flex-direction: column; text-align: center; }
    .step-number { margin-right: 0; margin-bottom: 12px; }
    .final-cta h2 { font-size: 22px; }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
*:focus-visible {
    outline: 3px solid var(--teal-secondary);
    outline-offset: 2px;
}

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

/* ===== FEEDBACK FORM STYLES ===== */
.feedback-form {
    background: #fff;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.feedback-form .form-group { margin-bottom: 16px; }
.feedback-form label { font-weight:600; margin-bottom:6px; display:block; }
.feedback-form input[type="text"], .feedback-form input[type="email"], .feedback-form select, .feedback-form textarea {
    width:100%; padding:12px 14px; border:1px solid #ddd; border-radius:8px; font-size:16px; box-sizing:border-box;
}
.feedback-form textarea { min-height:140px; }
.feedback-form .button-group .btn { min-width:160px; }

/* ===== SUBSCRIBE / EARLY ACCESS STYLES ===== */
.subscribe-form { margin-top:12px; }
.subscribe-form input[type="email"] { font-size:16px; }
.subscribe-form .btn { min-width:120px; }

/* Inline success message for forms */
.inline-success {
    background: #f6fffa;
    border: 1px solid #d4f7ea;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    color: #065f46;
}
.inline-success h3 { margin: 0 0 8px 0; font-size:18px; }
.inline-success p { margin: 0; color: #064e3b; }

/* ===== HERO ADDITIONS ===== */
.hero-fine-print {
    margin-top: 12px !important;
    font-size: 13px !important;
    opacity: 0.72 !important;
    margin-bottom: 0 !important;
}

/* ===== TRY IT NOW BOX ===== */
.try-it-box {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 620px;
    margin: 28px auto 26px;
    text-align: left;
}

.try-it-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.82;
    margin: 0 0 14px;
    color: #fff;
    display: block;
}

.try-it-input-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.try-it-field-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.try-it-field-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

.try-it-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 9px;
    font-size: 15px;
    background: rgba(255,255,255,0.92);
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.try-it-input:focus {
    border-color: #fff;
    background: #fff;
}

.try-it-btn {
    padding: 12px 20px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    flex-shrink: 0;
    font-family: inherit;
}

.try-it-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

.try-it-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.try-it-result { margin-top: 18px; }

.try-it-preview-wrap {
    position: relative;
    background: rgba(255,255,255,0.96);
    border-radius: 10px;
    overflow: hidden;
}

.try-it-preview-text {
    padding: 16px 18px 88px;
    font-size: 14px;
    line-height: 1.65;
    color: #2c2c2c;
    margin: 0 !important;
}

.preview-visible { color: #1a1a2e; }

.preview-blurred {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    color: #444;
}

.try-it-blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.97) 32%, #fff 100%);
    padding: 16px 18px 16px;
    text-align: center;
}

.blur-cta-text {
    font-size: 13px;
    color: #555;
    margin: 0 0 9px !important;
    font-weight: 500;
}

.blur-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 10px rgba(102,126,234,0.38);
}

.blur-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(102,126,234,0.5);
}

@media (max-width: 580px) {
    .try-it-box { padding: 18px 16px; }
    .try-it-input-row { flex-direction: column; align-items: stretch; }
    .try-it-btn { width: 100%; text-align: center; }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 72px 18px;
    background: #f8f9fa;
}

.pricing-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pricing-subtitle {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.pricing-card-featured {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(102,126,234,0.18);
}

.pricing-card-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 38px rgba(102,126,234,0.26);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-badge-gold { background: #D2A96A; color: #0A2540; }

.plan-name { font-size: 19px; font-weight: 700; color: #2c3e50; margin-bottom: 6px; }

.plan-price {
    font-size: 40px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2px;
    line-height: 1;
}

.plan-period { font-size: 15px; font-weight: 400; color: #7f8c8d; }

.plan-tagline { font-size: 12px; color: #7f8c8d; margin-bottom: 20px; margin-top: 4px; }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

.plan-features li {
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444;
}

.feat-yes::before { content: '✓'; color: #27ae60; font-weight: 700; flex-shrink: 0; }
.feat-no { opacity: 0.42; }
.feat-no::before { content: '✗'; color: #aaa; flex-shrink: 0; }

.plan-cta {
    display: block;
    text-align: center;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.plan-cta-outline { border: 2px solid #667eea; color: #667eea; background: transparent; }
.plan-cta-outline:hover { background: #667eea; color: #fff; }

.plan-cta-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(102,126,234,0.32);
}
.plan-cta-primary:hover { box-shadow: 0 6px 20px rgba(102,126,234,0.48); transform: translateY(-1px); color: #fff; }

.plan-cta-gold {
    background: linear-gradient(135deg, #D2A96A, #b58940);
    color: #0A2540;
    border: none;
    box-shadow: 0 4px 14px rgba(210,169,106,0.32);
}
.plan-cta-gold:hover { box-shadow: 0 6px 20px rgba(210,169,106,0.48); transform: translateY(-1px); }

@media (max-width: 840px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card-featured { transform: none; order: -1; }
    .pricing-card-featured:hover { transform: translateY(-4px); }
}

/* ===== FREE USAGE BANNER (app) ===== */
.free-usage-banner {
    background: #fff8ee;
    border-bottom: 1px solid #f0d9b0;
    padding: 9px 20px;
    text-align: center;
    font-size: 13px;
    color: #7a5c1e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--font-body);
}

.free-usage-banner a { color: #667eea; font-weight: 700; text-decoration: none; }
.free-usage-banner a:hover { text-decoration: underline; }

.usage-pips { display: flex; gap: 4px; }

.usage-pip {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f0d9b0;
    transition: background 0.3s;
}

.usage-pip.used { background: #D2A96A; }

/* ===== AUTH PAGES (signup, login, welcome) ===== */
body.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-family: var(--font-body);
}

.auth-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.auth-logo-img {
    height: 44px;
    width: auto;
}

.auth-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.auth-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-primary);
    margin: 0 0 6px;
    text-align: center;
}

.auth-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    margin: 0 0 24px;
}

/* Google Button */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    font-family: var(--font-body);
}

.btn-google:hover {
    background: #f8f8f8;
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.google-icon { flex-shrink: 0; }

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #ccc;
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

/* Form fields */
.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 6px;
}

.auth-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 9px;
    font-size: 15px;
    font-family: var(--font-body);
    color: #222;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.auth-field input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
}

.auth-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.auth-field-row label { margin-bottom: 0; }

.forgot-link {
    font-size: 12px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover { text-decoration: underline; }

/* Primary auth button */
.btn-auth-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(102,126,234,0.35);
}

.btn-auth-primary:hover {
    opacity: 0.93;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.45);
}

.btn-auth-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Error / success messages */
.auth-error {
    background: #fff0f0;
    border: 1px solid #f5c6c6;
    color: #c0392b;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.auth-success {
    background: #f0fff4;
    border: 1px solid #b7e4c7;
    color: #1a7f37;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.auth-switch {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 20px;
    margin-bottom: 0;
}

.auth-switch a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
}

.auth-switch a:hover { text-decoration: underline; }

.auth-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin: 0;
}

.auth-legal a {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
}

/* Welcome page extras */
.welcome-container { max-width: 500px; }

.welcome-card { padding: 36px 32px; }

.welcome-checkmark {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 20px;
}

.welcome-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 10px;
}

.welcome-feature-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.welcome-feature strong {
    display: block;
    font-size: 14px;
    color: var(--navy-primary);
    margin-bottom: 2px;
}

.welcome-feature p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.welcome-free-note {
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.welcome-cta { margin-top: 0 !important; }

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; }
    .welcome-card { padding: 28px 20px; }
}

