/* --- AIETICKS CLOUD DESIGN SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand-primary: #4f46e5; /* Modern Indigo */
    --brand-primary-hover: #4338ca;
    --brand-dark: #0f172a; /* Slate Dark */
    --surface-color: #f8fafc;
    --border-subtle: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--surface-color);
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

/* Typography Polish */
h1, h2, h3, h4, h5, h6 {
    color: var(--brand-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Premium Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -2px rgba(79, 70, 229, 0.2);
}

    .btn-primary:hover {
        background-color: var(--brand-primary-hover);
        border-color: var(--brand-primary-hover);
        transform: translateY(-1px);
        box-shadow: 0 6px 12px -2px rgba(79, 70, 229, 0.3);
    }

/* Glass & Shadow Cards */
.card {
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Inputs & Forms */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
}

    .form-control:focus {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }

/* Custom Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    /* Scale down typography for mobile */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Make buttons full width on small screens if necessary, or just adjust padding */
    .btn {
        padding: 0.5rem 1rem;
    }

    /* Stack pricing cards neatly */
    .pricing-card {
        margin-bottom: 1.5rem;
    }
}
