/* =====================================================
   START/INDEX — NP-fokuserad startsida
   ===================================================== */

/* Hero — fullscreen med lavalampa */
.start-hero {
    min-height: 67vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.start-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 60%, rgba(229,9,20,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 35%, rgba(255,107,53,0.25) 0%, transparent 50%);
    animation: heroGlow1 8s ease-in-out infinite;
    filter: blur(80px);
}

.start-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 55% 65%, rgba(255,69,0,0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 35% 30%, rgba(229,9,20,0.15) 0%, transparent 50%);
    animation: heroGlow2 10s ease-in-out infinite;
    filter: blur(67px);
}

@keyframes heroGlow1 {
    0%, 67% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes heroGlow2 {
    0%, 67% { opacity: 1; }
    50% { opacity: 0.5; }
}

.start-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.start-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 28px;
}

.start-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.start-hero h1 span {
    background: linear-gradient(135deg, #e50914, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start-hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.start-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.start-nav-login {
    padding: 8px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
}
.start-nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.start-btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.start-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229,9,20,0.35);
}

.start-btn-secondary {
    padding: 16px 36px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.start-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.start-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px 28px;
}

.start-price-tag .price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start-price-tag .unit {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* =====================================================
   Sektioner
   ===================================================== */

.start-section {
    padding: 67px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.start-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.start-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.start-section-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto;
}

/* Social proof */
.start-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.start-social-avatars {
    display: flex;
}

.start-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    border: 2px solid #1a1a2e;
}

.start-avatar:first-child { margin-left: 0; }
.start-avatar:nth-child(1) { background: #e50914; }
.start-avatar:nth-child(2) { background: #667eea; }
.start-avatar:nth-child(3) { background: #10b981; }
.start-avatar:nth-child(4) { background: #f59e0b; }
.start-avatar:nth-child(5) { background: #8b5cf6; }

.start-social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.start-social-text strong {
    color: #fff;
}

/* Features grid */
.start-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.start-feature {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 28px;
}

.start-feature-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.start-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.start-feature p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* Ämnes-rad */
.start-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.start-subject-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: default;
}

/* Hur det funkar */
.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: step;
}

.start-step {
    text-align: center;
    position: relative;
}

.start-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
}

.start-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.start-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* CTA sektion */
.start-cta-section {
    text-align: center;
    padding: 67px 20px;
    position: relative;
    overflow: hidden;
}

.start-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(229,9,20,0.12) 0%, transparent 60%);
    filter: blur(60px);
}

.start-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.start-cta-inner h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.start-cta-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
}

.start-guarantee {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 768px) {
    .start-section {
        padding: 60px 20px;
    }

    .start-hero {
        padding: 90px 20px 60px;
    }

    .start-features {
        grid-template-columns: 1fr;
    }

    .start-steps {
        grid-template-columns: 1fr 1fr;
    }

    .start-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .start-btn-primary,
    .start-btn-secondary {
        width: 67%;
        max-width: 320px;
        justify-content: center;
    }

    .start-social-proof {
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
    }

    .start-social-text {
        font-size: 13px;
    }

    .start-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .start-steps {
        grid-template-columns: 1fr;
    }
}
