/* Import Haas Grotesk font (fallback to system fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0040FF;
    --primary-blue-hover: #0033CC;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --background-dark: #1A1A1A;
    --background-gradient: linear-gradient(135deg, #1A1A1A 0%, #2D1B69 50%, #FF6B35 100%);
    --card-background: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Inter', 'Haas Grotesk Text Web', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background: var(--background-gradient);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: transparent !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white) !important;
    text-decoration: none;
}

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

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-size: 13px;
    font-weight: 400;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    position: relative;
    background: var(--background-gradient);
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.btn-outline-light {
    border: 1px solid var(--border-color);
    color: var(--text-white);
    background: transparent;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--background-dark);
}

/* Demo Interface */
.demo-interface {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.demo-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    width: 280px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.demo-card:nth-child(2) {
    animation-delay: -2s;
}

.demo-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 500;
}

.demo-header i {
    color: var(--primary-blue);
}

.demo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 13px;
}

.demo-item i {
    color: var(--text-gray);
    width: 16px;
}

.success-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 12px;
}

.metric-label {
    min-width: 80px;
}

.metric-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 2px;
}

.metric-value {
    min-width: 30px;
    text-align: right;
    font-weight: 500;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 12px;
}

.social-platform i {
    color: var(--primary-blue);
    width: 16px;
}

.status {
    margin-left: auto;
    padding: 0.1rem 0.5rem;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

/* Companies Section */
.companies-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.companies-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo i {
    font-size: 2rem;
    color: var(--text-gray);
}

.company-logo span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Features Section */
.features-section {
    background: var(--background-dark);
    padding: 5rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-section h5,
.footer-section h6 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .demo-interface {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;
        overflow-x: auto;
        padding: 1rem;
    }
    
    .demo-card {
        min-width: 250px;
    }
    
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .demo-interface {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-card {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Form Styles */
.form-control {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: var(--card-background);
    border-color: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 0 0 0.2rem rgba(0, 64, 255, 0.25);
}

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

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

/* Page Specific Styles */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--background-gradient);
}

.page-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
    background: var(--background-dark);
}

.pricing-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.feature-list li i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}
