/* ═══════════════════════════════════════════════════════════
   AqariPilot - Site Vitrine Styles
   ═══════════════════════════════════════════════════════════ */

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eef2ff;
    --secondary: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

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

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background: var(--primary);
    color: white;
}
.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(79 70 229 / 0.4);
}

.btn--outline {
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
}
.btn--ghost:hover { color: var(--primary); }

.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ─── NAVBAR ───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.navbar__logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon { font-size: 1.6rem; }

.navbar__links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.navbar__links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.navbar__links a:hover { color: var(--primary); }

.navbar__actions { display: flex; gap: 12px; }

.navbar__burger { display: none; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero__content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__cta { display: flex; gap: 16px; margin-bottom: 48px; }

.hero__stats {
    display: flex;
    gap: 40px;
}
.hero__stats .stat {
    display: flex;
    flex-direction: column;
}
.hero__stats .stat strong {
    font-size: 1.5rem;
    color: var(--secondary);
}
.hero__stats .stat span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mockup */
.hero__mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid var(--border);
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }
.mockup-url {
    margin-left: 12px;
    font-size: 10px;
    color: #94a3b8;
    background: #fff;
    padding: 3px 14px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    flex: 1;
    max-width: 200px;
}

.mockup-body {
    display: flex;
    min-height: 370px;
}

/* Sidebar */
.mockup-sidebar {
    width: 52px;
    background: linear-gradient(180deg, #312e81, #4338ca);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 2px;
    flex-shrink: 0;
}
.ms-logo {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 4px;
    filter: grayscale(0.3);
}
.ms-item {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.ms-item .material-icons-outlined {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
}
.ms-item.ms-active {
    background: rgba(255,255,255,0.15);
}
.ms-item.ms-active .material-icons-outlined {
    color: #fff;
}

/* Content area */
.mockup-content {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8fafc;
    overflow: hidden;
}

/* KPI cards */
.mk-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.mk-kpi {
    background: #fff;
    border-radius: 8px;
    padding: 10px 11px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mk-kpi__label {
    font-size: 8px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}
.mk-kpi__value {
    font-size: 14px;
    font-weight: 700;
}
.mk-kpi__value--primary { color: #4f46e5; }
.mk-kpi__value--success { color: #059669; }
.mk-kpi__value--info { color: #0284c7; }
.mk-kpi__value--danger { color: #dc2626; }
.mk-kpi__trend {
    font-size: 8px;
    font-weight: 600;
}
.mk-kpi__trend--up { color: #059669; }
.mk-kpi__trend--down { color: #dc2626; }

/* Chart + Progress row */
.mk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.mk-chart-card, .mk-progress-card, .mk-table-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
}
.mk-chart-title {
    font-size: 9px;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 8px;
}

/* Bar chart */
.mk-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}
.mk-bar {
    flex: 1;
    background: linear-gradient(180deg, #c7d2fe, #e0e7ff);
    border-radius: 3px 3px 0 0;
    min-width: 0;
}
.mk-bar--active {
    background: linear-gradient(180deg, #6366f1, #818cf8);
}

/* Progress bars */
.mk-project {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 8px;
    align-items: center;
    margin-bottom: 6px;
}
.mk-project > span:first-child {
    font-size: 8.5px;
    color: #334155;
    font-weight: 500;
    grid-column: 1 / -1;
}
.mk-prog-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    flex: 1;
}
.mk-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #818cf8);
    border-radius: 3px;
}
.mk-prog-fill--warn { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.mk-prog-fill--new { background: linear-gradient(90deg, #06b6d4, #67e8f9); }
.mk-prog-pct {
    font-size: 8px;
    font-weight: 700;
    color: #64748b;
}

/* Mini table */
.mk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 8.5px;
}
.mk-table th {
    text-align: left;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 7.5px;
    padding: 0 6px 5px;
    border-bottom: 1px solid #e2e8f0;
}
.mk-table td {
    padding: 5px 6px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}
.mk-badge {
    font-size: 7.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
}
.mk-badge--green { background: #dcfce7; color: #16a34a; }
.mk-badge--blue { background: #dbeafe; color: #2563eb; }

/* Responsive mockup */
@media (max-width: 768px) {
    .mk-kpis { grid-template-columns: repeat(2, 1fr); }
    .mk-row { grid-template-columns: 1fr; }
    .mockup-body { min-height: 340px; }
}

/* ─── SECTION HEADERS ──────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ─── FEATURES ─────────────────────────────────────────── */
.features {
    padding: 100px 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ─── HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step { text-align: center; }

.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ─── PRICING ──────────────────────────────────────────── */
.pricing {
    padding: 100px 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card__badge--soon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-card--premium {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 40%);
    opacity: 0.9;
}
.pricing-card--premium:hover {
    opacity: 1;
}
.pricing-card--premium .pricing-card__price .amount {
    color: #d97706;
    font-size: 2rem;
}
.pricing-card--premium .pricing-card__features li span {
    color: #f59e0b;
}

.btn--disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing-card__header {
    margin-bottom: 32px;
}
.pricing-card__header h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.pricing-card__price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}
.pricing-card__price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}
.pricing-card__price .period {
    font-size: 0.9rem;
    color: var(--text-light);
}
.pricing-card__header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-card__trial {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* ── Promo banner ── */
.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #e53e3e);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
    animation: promo-pulse 2s ease-in-out infinite;
}
.promo-banner__badge {
    background: #fff;
    color: #e53e3e;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.promo-banner__text {
    font-weight: 700;
    font-size: 1rem;
}
@keyframes promo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ── Old price (barré) ── */
.pricing-card__old-price {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* ── Promo savings text ── */
.pricing-card__promo {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e53e3e;
    background: #fef2f2;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 4px;
    display: inline-block;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 32px;
}
.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
}
.pricing-card__features .material-icons-outlined {
    font-size: 18px;
    color: var(--primary);
}

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
}

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
}
.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── CONTACT ──────────────────────────────────────────── */
.contact {
    padding: 100px 0;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact__info h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}
.contact__info > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact__details {
    list-style: none;
}
.contact__details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text);
    font-size: 0.95rem;
}
.contact__details .material-icons-outlined {
    color: var(--primary);
    font-size: 20px;
}

.contact__form {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(79 70 229 / 0.1);
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: white;
    transition: border var(--transition);
    cursor: pointer;
}

.form-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-note {
    margin-top: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.form-error {
    color: #dc2626;
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
    min-height: 18px;
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15) !important;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Demo Steps */
.demo-steps {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.demo-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.demo-step__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.demo-step strong {
    display: block;
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.demo-step p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Contact Simple */
.contact-simple {
    padding: 60px 0;
    background: var(--bg-alt);
    text-align: center;
}
.contact-simple__inner h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.contact-simple__inner > p {
    color: var(--text-light);
    margin-bottom: 24px;
}
.contact-simple__row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e293b;
}

.footer__brand p {
    margin-top: 12px;
    font-size: 0.9rem;
}
.footer__brand .navbar__logo { color: white; }

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer__links h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.footer__links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer__links a:hover { color: white; }

.footer__bottom {
    padding: 20px 0;
    font-size: 0.85rem;
    text-align: center;
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 968px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .hero__content h1 { font-size: 2.4rem; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .contact__inner { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .navbar__links, .navbar__actions { display: none; }
    .navbar__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
    .navbar__burger span { width: 24px; height: 2px; background: var(--secondary); }
    .hero { padding: 110px 0 60px; }
    .hero__content h1 { font-size: 2rem; }
    .hero__cta { flex-direction: column; }
    .hero__stats { gap: 24px; }
    .features__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__links { grid-template-columns: 1fr; }
}

/* ─── Toast Modal ─────────────────────────────────────── */
.toast-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.toast-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}
.toast-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
}
.toast-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}
.toast-icon.success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
}
.toast-icon.error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
}
.toast-icon.warning {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: #d97706;
}
.toast-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.toast-message {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.toast-btn {
    min-width: 120px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Form field highlighting ─────────────────────────── */
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group input.input-success {
    border-color: #22c55e !important;
}
