/* Huro-Inspired Design System for WiseLead Solutions */

@font-face {
    font-family: 'Nexa Light';
    src: url('/assets/fonts/text/nexa/NexaLight.woff') format('woff'),
         url('/assets/fonts/text/nexa/NexaLight.ttf') format('truetype'),
         url('/assets/fonts/text/nexa/Nexa%20Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Bold';
    src: url('/assets/fonts/text/nexa/NexaBold.woff') format('woff'),
         url('/assets/fonts/text/nexa/NexaBold.ttf') format('truetype'),
         url('/assets/fonts/text/nexa/Nexa%20Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #1c65af;
    --primary-dark: #1f1c4e;
    --primary-light: #2699d3;
    --accent: #92d7ef;
    --success: #48bb78;
    --warning: #ff9500;
    --danger: #ff3b30;
    --text-dark: #363636;
    --text-light: #7a7a7a;
    --bg-light: #f5f5f5;
    --border-light: #e8e8e8;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --bs-primary: #3b777e;
    --bs-primary-rgb: 59, 119, 126;
    --bs-secondary: #2a5a60;
    --bs-secondary-rgb: 42, 90, 96;
    --bs-success: #48bb78;
    --bs-success-rgb: 72, 187, 120;
    --bs-info: #4a8890;
    --bs-info-rgb: 74, 136, 144;
    --bs-warning: #ff9500;
    --bs-warning-rgb: 255, 149, 0;
    --bs-danger: #ff3b30;
    --bs-danger-rgb: 255, 59, 48;
    --bs-light: #f5f5f5;
    --bs-dark: #2a5a60;
    --bs-link-color: #3b777e;
    --bs-link-hover-color: #2a5a60;
}

/* Base Styles */
* {
    font-family: 'Nexa Light', 'Segoe UI', sans-serif;
}

body {
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nexa Bold', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Typography */
.display-6 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
}

/* Sections & Layout */
section {
    position: relative;
    z-index: 1;
}

section.py-5 {
    padding: 3rem 0 !important;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #2a5a60 0%, #3b777e 50%, #4a8890 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b777e 0%, #2a5a60 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 119, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 119, 126, 0.4);
    background: linear-gradient(135deg, #2a5a60 0%, #3b777e 100%);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 2rem;
}

/* Forms */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(59, 119, 126, 0.1);
}

.form-control:disabled {
    background-color: var(--bg-light);
    cursor: not-allowed;
    border-color: #d1d5db;
    color: #9ca3af;
}

.form-control::placeholder {
    color: #9ca3af;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    color: #856404;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
}

/* Background Colors */
.bg-primary {
    background: linear-gradient(135deg, #3b777e 0%, #2a5a60 100%) !important;
    color: #ffffff !important;
}

.bg-light {
    background: var(--bg-light) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-dark) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-white {
    color: #ffffff !important;
}

/* Spacing Utilities */
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

/* Waitlist Form Styles */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-left: 4px solid #ff3b30;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.urgency-banner p {
    font-size: 1.1rem;
    margin: 0;
}

.urgency-banner strong {
    color: #d9750f;
    font-weight: 700;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
    50% { box-shadow: 0 0 20px 0 rgba(255, 59, 48, 0.2); }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.benefit-item:hover {
    background: rgba(59, 119, 126, 0.05);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--success);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

#waitlist .card {
    background: #ffffff;
    color: var(--text-dark);
}

#waitlist .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#waitlist .form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

#waitlist .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(59, 119, 126, 0.25);
}

#waitlist .form-control:disabled {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

#waitlist .btn-light {
    background: #ffffff;
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#waitlist .btn-light:hover:not(:disabled) {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#waitlist .btn-light:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#waitlist .text-danger {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

#waitlist .alert {
    border-radius: 12px;
    border: none;
}

#waitlist .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

#waitlist .alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

#waitlist .alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    color: #856404;
}

.success-message {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid #48bb78;
    border-radius: 12px;
    padding: 1.5rem;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Products Section */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.product-card .card-body {
    padding: 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b777e, #2a5a60);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-badge.coming-soon {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

footer .section-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-6 {
        font-size: 1.75rem;
    }

    .hero-gradient {
        min-height: auto;
        padding: 3rem 1rem;
    }

    section.py-5 {
        padding: 2rem 0 !important;
    }

    .card-body {
        padding: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
    }

    .urgency-banner {
        padding: 1rem;
        font-size: 0.95rem;
    }

    #waitlist .btn-light {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .display-6 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    nav, footer {
        display: none;
    }
}

/* Root Variables - Rejist Color Palette */
:root {
    /* Primary Colors */
    --primary: #3b777e;
    --primary-light: #4a8890;
    --primary-dark: #2a5a60;
    --secondary: #4a8890;
    --accent: #4a8890;
    
    /* UI Colors */
    --success: #48bb78;
    --warning: #ff9500;
    --danger: #ff3b30;
    --info: #4a8890;
    
    /* Neutral Colors */
    --white: #ffffff;
    --smoke-white: #fcfcfc;
    --grey-white: #f7f7f7;
    --light-grey: #ededed;
    --border-grey: #e8e8e8;
    --placeholder: #cecece;
    --muted-grey: #999;
    --title-grey: #a9abac;
    --dark-text: #4a5568;
    --light-text: #8b9097;
    --fade-grey: #ededed;
    
    /* Dark Theme */
    --dark-sidebar: #2e3648;
    --dark-sidebar-light: #373d51;
    --dark-sidebar-dark: #24293b;
    
    /* Typography */
    --font-main: 'Nexa Light', 'Segoe UI', sans-serif;
    --font-heading: 'Nexa Bold', 'Segoe UI', sans-serif;
    
    /* Shadows */
    --light-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
    --primary-box-shadow: 0px 5px 43px rgba(85, 150, 230, 0.18);
    --spread-box-shadow: 0 6px 30px -4px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-rounded: 500px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--smoke-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea,
.btn,
.nav-link,
.card,
p,
span,
a,
li {
    font-family: var(--font-main) !important;
}

main {
    min-height: calc(100vh - 80px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading) !important;
}

.display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.lead {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* Header / Navbar */
.header.sticky-top {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--light-box-shadow);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-text) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background-color: var(--grey-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--spread-box-shadow);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--grey-white);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #2a5a60 0%, #3b777e 50%, #4a8890 100%);
    color: var(--white) !important;
}

.bg-gradient-primary h1,
.bg-gradient-primary h2,
.bg-gradient-primary .lead {
    color: var(--white) !important;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section p,
.cta-section .lead {
    color: var(--white) !important;
}

.cta-section .btn-light {
    color: var(--primary-dark);
    border: none;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--light-box-shadow);
    transition: var(--transition);
    background-color: var(--white);
}

.card:hover {
    box-shadow: var(--spread-box-shadow);
    transform: translateY(-4px);
}

.product-card,
.pricing-card {
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--white);
    overflow: hidden;
}

.product-card .icon-wrapper {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-card:hover .icon-wrapper {
    transform: scale(1.1);
    color: var(--accent);
}

.product-card .card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.product-card .card-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero :focus,
.hero :focus-visible,
.product-card :focus,
.product-card :focus-visible {
    outline: none;
    box-shadow: none;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--light-grey);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    border-color: var(--primary);
    box-shadow: var(--primary-box-shadow);
    transform: translateY(-4px);
}

.feature-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.feature-box p {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.feature-box i {
    display: block;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    padding: 2rem;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--primary-box-shadow);
}

.pricing-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-rounded);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    font-family: var(--font-main);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(85, 150, 230, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(85, 150, 230, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(85, 150, 230, 0.3);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: var(--smoke-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Icon Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-circle:hover {
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--grey-white) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Forms */
.form-control,
.form-select {
    border: 1px solid var(--border-grey);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(85, 150, 230, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--placeholder);
}

.form-label {
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-sidebar);
    color: var(--light-grey);
    padding: 3rem 0 1.5rem;
}

.footer a {
    color: var(--light-grey);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-light);
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Utilities */
.shadow-sm {
    box-shadow: var(--light-box-shadow) !important;
}

.shadow {
    box-shadow: var(--spread-box-shadow) !important;
}

.text-muted {
    color: var(--light-text) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.rounded {
    border-radius: var(--radius) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 3rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Blazor Loading */
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Waitlist Form Styles */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.urgency-banner p {
    font-size: 1.1rem;
}

.urgency-banner strong {
    color: #ffd700;
}

.benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.benefit-item i {
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

#waitlist .card {
    background: #ffffff;
    color: var(--text-dark);
}

#waitlist .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#waitlist .form-control {
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

#waitlist .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(85, 150, 230, 0.25);
}

#waitlist .form-control:disabled {
    background-color: #f7f9fa;
    cursor: not-allowed;
}

#waitlist .btn-light {
    background: #ffffff;
    color: var(--primary);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#waitlist .btn-light:hover:not(:disabled) {
    background: #f7f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#waitlist .btn-light:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#waitlist .text-danger {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

#waitlist .alert {
    border-radius: 12px;
    border: none;
}

#waitlist .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

#waitlist .alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

#waitlist .alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    color: #856404;
}
