@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #334E68;
    --primary-light: #486581;
    --secondary: #24C06F;
    --secondary-dark: #1A8B50;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-glow: 0 0 20px rgba(36, 192, 111, 0.3);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --white: #FFFFFF;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif !important;
    background: #0f172a !important;
    background: radial-gradient(circle at top right, #1e293b, #0f172a) !important;
    color: var(--text) !important;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    clear: both;
}

h1,
h2,
h3,
h4 {
    color: var(--white);
    line-height: 1.2;
    font-weight: 800;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to bottom right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    clear: both;
}

/* Header & Nav */
header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary);
    text-shadow: var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--white);
}

.btn-primary,
.btn-danger {
    color: var(--white) !important;
    padding: 12px 24px !important;
    /* Reduced padding */
    border-radius: 14px !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    width: auto !important;
    /* Ensures it doesn't take 100% width */
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #24C06F, #17a34a) !important;
    box-shadow: 0 10px 20px rgba(36, 192, 111, 0.3) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3) !important;
}

table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
}

th {
    padding: 15px 20px !important;
    text-align: left !important;
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

td {
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
}

td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(36, 192, 111, 0.2) !important;
}

.btn-primary:hover,
.btn-danger:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5) !important;
}

.btn-primary::after,
.btn-danger::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.btn-primary:hover::after,
.btn-danger:hover::after {
    left: 100%;
}

/* Glassmorphic Components */
.stat-card,
.feature-card,
.pricing-card,
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover,
.feature-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--accent-glow);
    transform: translateY(-5px);
}

.stats-grid,
.pricing-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    margin: 40px auto !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: stretch !important;
}

.stat-card,
.pricing-card {
    flex: 0 1 280px !important;
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    text-decoration: none !important;
    color: var(--white) !important;
    transition: all 0.4s ease !important;
    cursor: pointer !important;
}

.stat-card.centered {
    text-align: center !important;
}

.stat-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--secondary) !important;
    box-shadow: var(--accent-glow) !important;
}

.price {
    color: var(--secondary) !important;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(36, 192, 111, 0.5);
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 30px !important;
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 12px !important;
    color: var(--text-muted) !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

.form-group i {
    position: absolute !important;
    left: 20px !important;
    bottom: 20px !important;
    /* Fixed relative to input height */
    color: var(--secondary) !important;
    opacity: 0.7 !important;
    z-index: 10 !important;
    font-size: 1.1rem !important;
    pointer-events: none !important;
}

input,
select,
textarea {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    padding: 18px 25px 18px 55px !important;
    border-radius: 12px !important;
    width: 100% !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: all 0.4s ease !important;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    outline: none !important;
}

input:focus {
    border-color: var(--secondary) !important;
    background: rgba(30, 41, 59, 0.8) !important;
    box-shadow: 0 0 25px rgba(36, 192, 111, 0.2), inset 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Sections */
.hero {
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(36, 192, 111, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 24px;
    font-size: 24px;
    border: 1px solid rgba(36, 192, 111, 0.2);
}

.mockup-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    margin: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mockup-content {
    flex: 1;
    padding: 80px;
}

.mockup-image {
    flex: 1;
    padding: 40px;
}

.mockup-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Badges */
.badge {
    background: rgba(36, 192, 111, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(36, 192, 111, 0.2);
    display: inline-block;
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: rgba(10, 15, 26, 0.95);
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: inherit;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    width: 100%;
    max-width: 480px;
}

.tab-nav {
    display: flex !important;
    gap: 8px !important;
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(24px) !important;
    padding: 8px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: fit-content !important;
    margin: 0 auto 50px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.tab-btn {
    background: transparent !important;
    border: none !important;
    color: var(--text-muted) !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.tab-btn:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.tab-btn.active {
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(36, 192, 111, 0.4) !important;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mockup-section {
        flex-direction: column;
    }

    .mockup-content {
        padding: 40px;
    }
}

/ *     S Y N C     H A S H :     e 4 b 2 c 1 a 8 - 8 f 8 f - 4 f 8 f - 8 f 8 f - 8 f 8 f 8 f 8 f 8 f 8 f     * /     