:root {
    --primary: #f0c419;
    --primary-dark: #d4a017;
    --secondary: #F16334;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-light: #FAFAFA;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sc4k-home-container {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Navigation */
.sc4k-site-header {
    padding: 24px 10%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.sc4k-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc4k-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.sc4k-logo-text span {
    color: var(--primary-dark);
}

.sc4k-main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sc4k-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.sc4k-nav-link:hover {
    color: var(--primary-dark);
}

.sc4k-btn-signup {
    padding: 12px 28px;
    background: var(--text-dark);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sc4k-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--primary-dark);
    color: var(--text-dark);
}

/* Hero Section */
.sc4k-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 80vh;
    background: radial-gradient(circle at top right, rgba(240, 196, 25, 0.1), transparent);
    position: relative;
}

.sc4k-hero-content {
    flex: 1;
    max-width: 600px;
}

.sc4k-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-dark);
}

.sc4k-hero-content h1 span {
    color: var(--primary-dark);
    position: relative;
}

.sc4k-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.sc4k-hero-cta {
    display: flex;
    gap: 20px;
}

.sc4k-btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.sc4k-btn-primary {
    background: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(240, 196, 25, 0.3);
}

.sc4k-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 196, 25, 0.4);
}

.sc4k-btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.sc4k-btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.sc4k-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.sc4k-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.sc4k-features {
    padding: 100px 10%;
    background: var(--white);
    text-align: center;
}

.sc4k-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sc4k-feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.sc4k-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.sc4k-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.sc4k-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.sc4k-feature-card p {
    color: var(--text-light);
}

/* Dashboard Mockup */
.sc4k-dashboard-preview {
    padding: 100px 10%;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.sc4k-mockup-container {
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 10px solid var(--white);
}

.sc4k-mockup-container img {
    width: 100%;
    display: block;
}

/* Stats Section */
.sc4k-stats {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    gap: 80px;
    background: var(--primary);
    color: var(--text-dark);
}

.sc4k-stat-item {
    text-align: center;
}

.sc4k-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
}

.sc4k-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .sc4k-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .sc4k-hero-content {
        margin-bottom: 60px;
    }

    .sc4k-hero-cta {
        justify-content: center;
    }

    .sc4k-hero-image {
        justify-content: center;
    }

    .sc4k-hero-content h1 {
        font-size: 3rem;
    }
}