/* AutoPiloter AI - Refined Inspiration Design System */
:root {
    --bg-dark: #0a0a0a;
    --accent: #c1ff72;
    --accent-glow: rgba(193, 255, 114, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

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

.accent {
    color: var(--accent);
}

/* Background - Plain & Stationary */
.background-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}

#static-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.5);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: -1;
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

/* Override nav link white + weight for the CTA button */
.nav-links .btn-primary {
    color: var(--bg-dark);
    font-weight: 700;
}

.nav-links .btn-primary:hover {
    color: var(--bg-dark);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary .arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 10rem;
}

.hero-logo {
    height: 450px;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Removed separate ROI block, now in hero */
.hero-roi {
    margin-top: 4rem;
    padding-top: 2rem;
}

.hero-roi h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: none;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    opacity: 0.65;
}

/* ─── Stats Section ─── */
.stats-section {
    padding: 8rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(193, 255, 114, 0.5);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 1400px) {
    .stats-section .container {
        max-width: 1400px;
    }

    .stat-item h3 {
        font-size: 4rem;
    }

    .stat-item p {
        font-size: 1.2rem;
    }
}

@media (min-width: 1800px) {
    .stats-section .container {
        max-width: 1600px;
    }

    .stat-item h3 {
        font-size: 4.5rem;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

/* Features/Modules Section */
.features {
    padding: 8rem 0;
}

/* Stretch container to scale with viewport */
.features .container {
    max-width: 90vw;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
}

/* Default: 5 per row — cards grow to fill the row */
.card {
    flex: 1 1 calc(20% - 1.2rem);
    max-width: 400px;
    min-height: 300px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* 3 on top, 2 on bottom */
@media (max-width: 1400px) {
    .card {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: 520px;
    }
}

/* 2 on top, 2 middle, 1 on bottom */
@media (max-width: 900px) {
    .card {
        flex: 1 1 calc(50% - 0.75rem);
        max-width: 600px;
    }
}

/* 1 per row */
@media (max-width: 600px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(193, 255, 114, 0.03);
}

.card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Process Section */
.process {
    padding: 8rem 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    line-height: 1;
    min-width: 6.5rem;
    text-align: center;
}

.step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.step-content {
    display: flex;
    flex-direction: column;
}

/* Final CTA */
.cta-final {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.cta-final .section-title {
    margin-bottom: 0;
}

.pricing-text-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.pricing-text {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    padding: 1.5rem 0 0.5rem 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 1);
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1.0s;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .roi-text {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }
}

/* ─── Footer Legal Links ─── */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.legal-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent);
}

.legal-divider {
    color: var(--text-secondary);
    opacity: 0.4;
    font-size: 0.8rem;
}

/* ─── Legal Modals ─── */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-modal.open {
    display: flex;
}

.legal-modal-box {
    background: #0f0f0f;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.legal-modal-header h2 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    line-height: 1;
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.modal-back {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0;
}

.modal-back:hover {
    color: var(--accent);
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.legal-modal-body {
    padding: 2rem 2.5rem;
    overflow-y: auto;
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

.legal-modal-body p {
    margin-bottom: 1rem;
}

.legal-modal-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-modal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-modal-body ul li {
    margin-bottom: 0.5rem;
}

.legal-modal-body strong {
    color: var(--text-primary);
}

.modal-footer {
    display: none;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--glass-border);
    justify-content: center;
    align-items: center;
    background: #0f0f0f;
    flex-shrink: 0;
}

.modal-footer.show {
    display: flex;
}

.legal-meta {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem !important;
}

/* ─── Choice & Contact Modals ─── */
.borderless {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.choice-body {
    padding-top: 0;
}

.choice-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.choice-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.choice-card:hover {
    border-color: var(--accent);
    background: rgba(193, 255, 114, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 255, 114, 0.1);
}

.choice-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

.choice-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-right: 2rem;
}

.choice-arrow {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.choice-card:hover .choice-arrow {
    opacity: 1;
    right: 1.5rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
}

/* iframe adjust */
.iframe-body {
    padding: 0 16px;
    overflow: hidden;
}

/* ─── Contact Success State ─── */
.contact-success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 1.5rem;
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-wrap {
    margin-bottom: 1rem;
}

.success-circle.big {
    width: 100px;
    height: 100px;
}

.success-circle.big .checkmark-svg {
    width: 60px;
    height: 60px;
}

.success-title {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

.success-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
}

.view-message-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: var(--transition);
}

.view-message-link:hover {
    opacity: 0.8;
    border-bottom-width: 2px;
}

/* ─── About Section ─── */

.about-section {
    padding: 8rem 0;
}

.about-section .container,
.case-studies .container,
.testimonials .container {
    max-width: 90vw;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.about-block {
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: var(--transition);
}

.about-block:hover {
    border-color: var(--accent);
    background: rgba(193, 255, 114, 0.03);
}

.about-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-block p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* ─── Case Studies ─── */
.case-studies {
    padding: 8rem 0;
}

.case-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-card {
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    background: var(--glass-bg);
    transition: var(--transition);
}

.case-card:hover {
    border-color: var(--accent);
    background: rgba(193, 255, 114, 0.03);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.case-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.case-title {
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.case-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

.case-segment label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.case-segment p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

.case-segment p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    background: var(--glass-bg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--accent);
    background: rgba(193, 255, 114, 0.03);
}

.quote-mark {
    font-size: 5rem;
    line-height: 0.9;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.testimonial-headline {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.testimonial-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .case-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Success Toast Animation (Redesigned) ─── */
/* ─── Success Toast Animation (Redesigned with Cloud) ─── */
.success-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 11000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    pointer-events: none;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* The "Solid Shield" Backdrop (Upscaled to 260px) */
    background: #000000;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-glow);
}

/* Glassmorphism Backup (Commented for easy revert):
.success-toast {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    width: 250px;
    height: 250px;
}
*/


.success-toast.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.success-circle {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--accent-glow);
}

.success-text {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--accent-glow);
    font-family: 'Outfit', sans-serif;
}

.checkmark-svg {
    width: 45px;
    height: 45px;
    stroke: var(--bg-dark);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ─── Custom Validation Tooltips (Green Excellence) ─── */
.error-tooltip {
    position: absolute;
    background: #000;
    color: var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 12000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 15px var(--accent-glow);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.error-tooltip .exclamation {
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
}