/* ============================================
   GROW GENIX - Main Stylesheet
   Themes: Light (Corporate) & Dark (Futuristic)
   ============================================ */

/* ==================== CSS Variables ==================== */

/* --- Dark Theme (Default) --- */
:root {
    --bg-primary: #030712;
    --bg-secondary: #050a18;
    --bg-tertiary: #111827;
    --primary-brand: #22d3ee; /* cyan */
    --secondary-brand: #a855f7; /* purple */
    --tertiary-brand: #ec4899; /* pink */
    --primary-brand-light: rgba(34, 211, 238, 0.1);
    --secondary-brand-light: rgba(168, 85, 247, 0.1);
    --primary-brand-border: rgba(34, 211, 238, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-shadow: none;
    --card-shadow-hover: 0 0 40px rgba(34, 211, 238, 0.3);
    --icon-bg: rgba(255, 255, 255, 0.05);
    --shadow-color-primary: rgba(34, 211, 238, 0.2);
    --shadow-color-secondary: rgba(168, 85, 247, 0.2);
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
}

/* --- Light Theme --- */
html[data-theme='light'] {
    --bg-primary: #f9fafb; /* light grey */
    --bg-secondary: #ffffff; /* white */
    --bg-tertiary: #f3f4f6; /* slightly darker grey */
    --primary-brand: #2563eb; /* blue */
    --secondary-brand: #4f46e5; /* indigo */
    --tertiary-brand: #db2777; /* pink */
    --primary-brand-light: rgba(37, 99, 235, 0.1);
    --secondary-brand-light: rgba(79, 70, 229, 0.1);
    --primary-brand-border: rgba(37, 99, 235, 0.3);
    --text-primary: #111827; /* almost black */
    --text-secondary: #374151; /* dark grey */
    --text-muted: #6b7280; /* medium grey */
    --card-bg: #ffffff;
    --card-border: #e5e7eb; /* light grey border */
    --card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --icon-bg: rgba(37, 99, 235, 0.1);
    --shadow-color-primary: rgba(37, 99, 235, 0.1);
    --shadow-color-secondary: rgba(79, 70, 229, 0.1);
}


/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    background-image: none;
}

html[data-theme='light'] body {
    background-image:
        radial-gradient(
            circle at var(--mouse-x, -100px) var(--mouse-y, -100px),
            rgba(37, 99, 235, 0.06) 0%,
            rgba(37, 99, 235, 0) 25%
        ),
        linear-gradient(to right, var(--card-border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--card-border) 1px, transparent 1px);
    background-size:
        100% 100%,
        40px 40px,
        40px 40px;
    background-attachment: fixed;
}


/* ==================== Custom Scrollbar ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-brand);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-brand);
}

/* ==================== Utility Classes ==================== */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Section Spacing */
.section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}
.section-alt {
    background: var(--bg-tertiary);
}
@media (max-width: 768px) {
    .section { padding: 3rem 0; }
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-brand), var(--secondary-brand));
    color: white;
    box-shadow: 0 4px 20px var(--shadow-color-primary), 0 4px 20px var(--shadow-color-secondary);
}
html[data-theme='light'] .btn-primary {
    background: var(--primary-brand);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px var(--shadow-color-primary), 0 8px 40px var(--shadow-color-secondary);
}
html[data-theme='light'] .btn-primary:hover {
     box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: var(--icon-bg);
    border-color: var(--primary-brand);
    color: var(--primary-brand);
}
html[data-theme='light'] .btn-secondary {
    color: var(--text-secondary);
}


.btn-ghost {
    background: var(--primary-brand-light);
    color: var(--primary-brand);
    border-color: var(--primary-brand-border);
}

.btn-ghost:hover {
    background: var(--primary-brand-light);
    box-shadow: 0 0 20px var(--shadow-color-primary);
    opacity: 0.9;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--icon-bg);
    color: var(--text-secondary);
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-icon:hover {
    color: var(--primary-brand);
    border-color: var(--primary-brand);
}

/* ==================== Cards ==================== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--transition-normal) ease-in-out;
    box-shadow: var(--card-shadow);
}
:root .card {
    backdrop-filter: blur(16px);
}
.card:hover {
    border-color: var(--primary-brand);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--card-shadow-hover);
}
html[data-theme='light'] .card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Glass panel is a specific type of card for dark mode */
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}
:root .glass-panel {
    backdrop-filter: blur(16px);
}
html[data-theme='light'] .glass-panel {
    /* Behave like a normal card in light mode */
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}


/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}
p {
    color: var(--text-secondary);
}
.text-muted {
    color: var(--text-muted);
}
.heading-xl { font-size: 2.5rem; }
@media (min-width: 768px) { .heading-xl { font-size: 3.5rem; } }

.heading-lg { font-size: 2rem; }
@media (min-width: 768px) { .heading-lg { font-size: 3rem; } }

.heading-md { font-size: 1.5rem; }


/* ==================== Navbar ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all var(--transition-normal);
}
.navbar.scrolled {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
html[data-theme='dark'] .navbar.scrolled {
    box-shadow: none;
}


.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    cursor: pointer;
    text-decoration: none;
}
.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 992px) { .navbar-menu { display: flex; } }

.navbar-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: color var(--transition-fast);
}
.navbar-link:hover { color: var(--primary-brand); }
.navbar-link.active { color: var(--primary-brand); font-weight: 600; }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}
@media (min-width: 992px) { .mobile-menu-btn { display: none; } }

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 1rem;
    border-top: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(16px);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.375rem;
}
.mobile-menu a:hover {
    color: var(--text-primary);
    background: var(--icon-bg);
}
.mobile-menu-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    gap: 1rem;
    align-items: center;
}
.mobile-menu-actions .btn-ghost { flex-grow: 1; }


/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding-top: 4rem;
}
#hero-headline { opacity: 0; }
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--primary-brand-border);
    background: var(--primary-brand-light);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}
.hero-badge span {
    color: var(--primary-brand);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
@media (min-width: 768px) { .hero-description { font-size: 1.25rem; } }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== Footer ==================== */
.footer {
    background-color: transparent;
    padding: 4rem 1.5rem 2rem;
    position: relative;
    margin-top: 0;
}
@media (max-width: 768px) {
    .footer {
        padding-top: 2rem;
    }
}


.footer-container {
    background: var(--bg-primary);
    border-radius: 1.5rem;
    padding: 4rem;
    border: 1px solid var(--card-border);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .footer-container { padding: 3rem; }
}
@media (max-width: 768px) {
    .footer-container { padding: 2rem; }
}

:root .footer-container {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    border-color: rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.15);
}

html[data-theme='light'] .footer-container {
    background: var(--bg-secondary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.07);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--card-border);
}
@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul a, .footer-column ul span {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column ul a:hover {
    color: var(--primary-brand);
}
.footer-column ul svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer-brand-column .navbar-logo {
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-brand-column p {
    max-width: 300px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--icon-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}
.footer-social a:hover {
    background: var(--primary-brand);
    color: white;
    border-color: var(--primary-brand);
    transform: scale(1.1);
}
.footer-social a svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* For legal pages */
.footer-legal .footer-container {
    padding: 3rem;
}
@media (max-width: 768px) {
    .footer-legal .footer-container { padding: 2rem; }
}
.footer-legal .footer-main {
    border-bottom: none;
    padding-bottom: 0;
}

/* ==================== Preloader ==================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-slow);
}
.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}
.preloader-spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.preloader-spinner::before {
    content: '';
    position: absolute;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 2px solid var(--primary-brand-light);
    filter: blur(2px);
}
.preloader-ring {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-brand);
    border-right-color: var(--secondary-brand);
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-dot {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--text-primary);
    border-radius: 50%;
}
.preloader-text {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    animation: pulse 2s infinite;
    color: var(--text-primary);
}
.preloader-text span { color: var(--primary-brand); }
@keyframes pulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}

/* ==================== Custom Cursor & Background ==================== */
.cursor-dot {
    position: fixed;
    top: 0; left: 0; width: 8px; height: 8px;
    background: white; border-radius: 50%;
    pointer-events: none; z-index: 9999;
    mix-blend-mode: difference;
}
.cursor-follower {
    position: fixed;
    top: 0; left: 0; width: 32px; height: 32px;
    border-radius: 50%; border: 1px solid var(--primary-brand);
    opacity: 0.6; pointer-events: none; z-index: 9998;
    box-shadow: 0 0 15px var(--shadow-color-primary);
}
#three-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
}
/* Hide on mobile and light theme */
@media (max-width: 767px) {
    .cursor-dot, .cursor-follower, #three-bg { display: none; }
}
html[data-theme='light'] .cursor-dot,
html[data-theme='light'] .cursor-follower,
html[data-theme='light'] #three-bg {
    display: none;
}

/* ==================== Animations ==================== */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--shadow-color-primary), 0 0 20px var(--shadow-color-secondary); }
    50% { box-shadow: 0 0 35px var(--shadow-color-primary), 0 0 35px var(--shadow-color-secondary); }
}
html[data-theme='light'] .btn-pulse {
    animation: pulse-glow-light 2.5s infinite;
}
@keyframes pulse-glow-light {
    0%, 100% { box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25); }
    50% { box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35); }
}
.btn-pulse { animation: pulse-glow 2.5s infinite; }

/* ==================== Form Styles ==================== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block; font-size: 0.875rem; font-weight: 500;
    color: var(--text-secondary); margin-bottom: 0.25rem;
}
.form-input {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--icon-bg); border: 1px solid var(--card-border);
    border-radius: 0.5rem; color: var(--text-primary);
    font-size: 1rem; transition: all var(--transition-fast);
}
.form-input:focus {
    outline: none; border-color: var(--primary-brand);
    box-shadow: 0 0 0 3px var(--primary-brand-light);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    background-size: 1rem; padding-right: 3rem;
}
.form-select option { background: #1f2937; color: #f1f5f9; }
html[data-theme='light'] .form-select option { background: #ffffff; color: #111827; }

/* ==================== Modal ==================== */
@keyframes modal-fade-in-up {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modal-fade-out-down {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(20px) scale(0.98); }
}
.modal {
    position: fixed; inset: 0; z-index: 100;
    display: none; align-items: center; justify-content: center;
    padding: 1rem; opacity: 0;
    transition: opacity var(--transition-normal);
}
.modal.active { display: flex; }
.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
}
.modal-content {
    position: relative; width: 100%; max-width: 400px;
    background: var(--bg-secondary);
    backdrop-filter: blur(16px); border: 1px solid var(--card-border);
    border-radius: 1rem; padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
html[data-theme='light'] .modal-content { backdrop-filter: none; }

.modal.active .modal-content { animation: modal-fade-in-up 0.3s ease-out forwards; }
.modal-content.closing { animation: modal-fade-out-down 0.25s ease-in forwards; }
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: transparent; border: none;
    color: var(--text-secondary); cursor: pointer;
    padding: 0.5rem; transition: color var(--transition-fast);
}
.modal-close:hover { color: var(--text-primary); }

/* ==================== Intl Tel Input Overrides ==================== */
.iti { width: 100%; display: block; }
.iti__country-list {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text-primary) !important;
}
.iti__country:hover, .iti__country.iti__highlight {
    background-color: var(--primary-brand-light) !important;
}
.iti__dial-code { color: var(--text-secondary) !important; }
.iti__selected-dial-code { color: var(--text-primary) !important; }

/* ... (omitting some less relevant styles for brevity) ... */

/* ==================== CTA Box ==================== */
.cta-box {
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    background: var(--bg-secondary);
    text-align: center;
}
html[data-theme='light'] .cta-box {
    background: linear-gradient(135deg, var(--primary-brand-light), var(--secondary-brand-light));
    border: 1px solid var(--card-border);
}


/* ==================== Success Animation ==================== */
.success-checkmark { width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.check-icon {
    width: 80px; height: 80px; position: relative;
    border-radius: 50%; box-sizing: content-box; border: 4px solid #22c55e;
}
.check-icon::before, .check-icon::after {
    content: ''; height: 100px; position: absolute;
    background: var(--bg-secondary);
    transform: rotate(-45deg);
}
.check-icon::before { top: 3px; left: -2px; width: 30px; transform-origin: 100% 50%; border-radius: 100px 0 0 100px; }
.check-icon::after { top: 0; left: 30px; width: 60px; transform-origin: 0 50%; border-radius: 0 100px 100px 0; animation: rotate-circle 4.25s ease-in; }
.icon-line { height: 5px; background-color: #22c55e; display: block; border-radius: 2px; position: absolute; z-index: 10; }
.icon-line.line-tip { top: 46px; left: 14px; width: 25px; transform: rotate(45deg); animation: icon-line-tip 0.75s; }
.icon-line.line-long { top: 38px; right: 8px; width: 47px; transform: rotate(-45deg); animation: icon-line-long 0.75s; }
.icon-circle { top: -4px; left: -4px; z-index: 10; width: 80px; height: 80px; border-radius: 50%; position: absolute; box-sizing: content-box; border: 4px solid rgba(34, 197, 94, 0.3); }
.icon-fix { top: 8px; width: 5px; left: 26px; z-index: 1; height: 85px; position: absolute; transform: rotate(-45deg); background-color: var(--bg-secondary); }

@keyframes rotate-circle {
    0%, 5% { transform: rotate(-45deg); }
    12%, 100% { transform: rotate(-405deg); }
}
@keyframes icon-line-tip {
    0%, 54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}
@keyframes icon-line-long {
    0%, 65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}
.success-title {
    font-size: 1.5rem; font-weight: 700;
    background: linear-gradient(135deg, #22c55e, var(--primary-brand));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; margin-bottom: 0.5rem;
    animation: fadeInUp 0.5s ease 0.5s both;
}
.success-subtitle { color: var(--text-secondary); font-size: 1rem; margin-bottom: 0.5rem; animation: fadeInUp 0.5s ease 0.7s both; }
.success-hint { color: var(--text-muted); font-size: 0.8rem; animation: fadeInUp 0.5s ease 0.9s both; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}