/* =====================================================
   LANDING PAGE — Modern design (konverterad från AblasModern)
   Ljus bakgrund, Inter font, Ablas röd accent
   ===================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.landing-logo {
    font-size: 32px;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #d4380d, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-nav-login {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 99px;
    transition: background 0.15s;
}

.landing-nav-login:hover {
    background: rgba(255,255,255,0.08);
}

.landing-nav-cta {
    background: #d4380d;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 99px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(212,56,13,0.3);
}

.landing-nav-cta:hover {
    background: #b42f0a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,56,13,0.4);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    padding: 140px 0 80px;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.hero-badge-dot {
    position: relative;
    display: flex;
    width: 8px;
    height: 8px;
}

.hero-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #d4380d;
    animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}

.hero-badge-dot::after {
    content: '';
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4380d;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-text h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #d4380d;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 460px;
    margin-bottom: 40px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 99px;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(5,150,105,0.35);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16,185,129,0.45);
}

.hero-btn-primary svg {
    transition: transform 0.2s;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 99px;
    transition: all 0.2s;
}

.hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.14);
}

/* Hero price / launch offer */
.hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.hero-price-old {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    text-decoration-color: #d4380d;
}

.hero-price-new {
    font-size: 28px;
    font-weight: 800;
    color: #d4380d;
}

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

.hero-price-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #d4380d, #ff6b35);
    padding: 4px 10px;
    border-radius: 99px;
}

.hero-launch-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.hero-launch-note strong {
    color: #d4380d;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(212,56,13,0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Hero trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-trust-avatars {
    display: flex;
}

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

.hero-trust-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-trust-text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Hero visual — mini quiz-vy (matchar do-quiz.html) */
.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #1a1a2e;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-card:hover {
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    transform: translateY(-4px);
}

/* Progress bar (toppen) */
.hq-progress {
    height: 4px;
    background: rgba(255,255,255,0.08);
}

.hq-progress-fill {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #d4380d, #ff6b35);
    border-radius: 0 4px 4px 0;
}

/* Quiz body */
.hq-body {
    padding: 28px 28px 20px;
}

.hq-label {
    font-size: 12px;
    font-weight: 700;
    color: #d4380d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hq-question {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Quiz options (A/B/C/D) */
.hq-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hq-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    cursor: default;
    transition: all 0.2s;
}

.hq-option-clickable {
    cursor: pointer;
}

.hq-option-clickable:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
}

.hq-option-correct {
    background: rgba(16,185,129,0.12);
    border-color: rgba(16,185,129,0.4);
}

.hq-option-wrong {
    background: rgba(239,68,68,0.12);
    border-color: rgba(239,68,68,0.4);
}

.hq-letter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.hq-letter-correct {
    background: #10b981;
}

.hq-letter-wrong {
    background: #ef4444;
}

/* Feedback */
.hq-feedback {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 12px;
    padding: 14px 16px;
}

.hq-feedback-title {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 6px;
}

.hq-feedback-wrong {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.2);
}

.hq-feedback-wrong .hq-feedback-title {
    color: #ef4444;
}

.hq-feedback-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Nav */
.hq-nav {
    padding: 0 28px 24px;
    display: flex;
    justify-content: flex-end;
}

.hq-btn-next {
    background: linear-gradient(135deg, #d4380d, #ff6b35);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.hq-btn-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,56,13,0.4);
}

/* Floating notifications */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.hero-float-tr { top: -16px; right: -16px; }
.hero-float-bl { bottom: -16px; left: -16px; }

.hero-float-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-icon-green { background: #dcfce7; color: #16a34a; }
.hero-float-icon-red { background: #fef2f2; color: #d4380d; }

.hero-float-title { font-size: 11px; font-weight: 700; color: #0a0a0a; }
.hero-float-sub { font-size: 10px; color: #888; }

/* =====================================================
   STATS
   ===================================================== */
.stats {
    background: #111;
    padding: 80px 0;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stats-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.stats-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212,56,13,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stats-card-val { font-size: 36px; font-weight: 900; color: #d4380d; }
.stats-card-unit { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 4px; }
.stats-card-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.stats-card-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* =====================================================
   DEVICE
   ===================================================== */
.device {
    padding: 112px 0;
}

.device-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.device-grid {
    display: flex;
    align-items: center;
    gap: 64px;
}

.device-text { flex: 1; }

.device-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: #d4380d;
    margin-bottom: 16px;
}

.device-accent { color: #ff6b35; }

.device-lead {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    max-width: 400px;
    margin-bottom: 32px;
}

.device-features { display: flex; flex-direction: column; gap: 16px; }

.device-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.device-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #d4380d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Device visual (phone + laptop) */
.device-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.device-phone {
    width: 160px;
    height: 320px;
    border-radius: 28px;
    border: 3px solid #0a0a0a;
    background: #0a0a0a;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.device-phone-screen {
    height: 100%;
    border-radius: 20px;
    background: #f5f5f5;
    overflow: hidden;
}

/* Mini prov i telefon-mockup */
.device-phone-prov {
    padding: 14px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dpp-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.dpp-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dpp-badge-e {
    font-size: 8px;
    font-weight: 700;
    color: #10b981;
    background: #ecfdf5;
    padding: 2px 6px;
    border-radius: 4px;
}

.dpp-question {
    font-size: 9px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 10px;
}

.dpp-textarea {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    font-size: 8px;
    color: #aaa;
    min-height: 50px;
}

.dpp-hint {
    font-size: 7px;
    color: #bbb;
    font-style: italic;
    margin-top: 6px;
}

.device-laptop {
    position: absolute;
    right: -40px;
    bottom: -32px;
    width: 280px;
    height: 180px;
    border-radius: 12px 12px 0 0;
    border: 3px solid rgba(255,255,255,0.15);
    border-bottom: none;
    background: #1a1a1a;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.device-laptop-screen {
    height: 100%;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.device-laptop-title { font-size: 11px; font-weight: 700; color: #fff; }
.device-laptop-sub { font-size: 9px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.device-laptop-bar {
    width: 80px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255,255,255,0.1);
    margin-top: 8px;
    overflow: hidden;
}

.device-laptop-bar-fill {
    width: 75%;
    height: 100%;
    border-radius: 99px;
    background: #d4380d;
}

/* =====================================================
   OFFER
   ===================================================== */
.offer {
    padding: 112px 0;
}

.offer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.offer-header {
    max-width: 480px;
    margin-bottom: 80px;
}

.offer-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d4380d;
    margin-bottom: 12px;
}

.offer-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #d4380d;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
}

.offer-card {
    background: #0a0a0a;
    padding: 40px;
    transition: background 0.3s;
}

.offer-card:hover {
    background: rgba(212,56,13,0.06);
}

.offer-card-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    margin-bottom: 24px;
    transition: color 0.3s;
}

.offer-card:hover .offer-card-num { color: #d4380d; }

.offer-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.offer-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

/* =====================================================
   SUBJECTS
   ===================================================== */
.subjects {
    background: #0a0a0a;
    padding: 112px 0;
    color: #fff;
}

.subjects-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.subjects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}

.subjects-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d4380d;
    margin-bottom: 12px;
}

.subjects-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.subjects-desc {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
}

.subject-item {
    text-align: center;
}

.subject-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.subject-item:hover .subject-icon {
    border-color: #d4380d;
    background: #d4380d;
}

.subject-item p {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}

.subject-item:hover p { color: #fff; }

/* =====================================================
   BOTTOM CTA
   ===================================================== */
.bottom-cta {
    background: #d4380d;
    padding: 96px 0;
    color: #fff;
    text-align: center;
}

.bottom-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px;
}

.bottom-cta h2 {
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.bottom-cta p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

.bottom-cta-btn {
    display: inline-block;
    background: #fff;
    color: #d4380d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 40px;
    border-radius: 99px;
    transition: all 0.2s;
}

.bottom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* =====================================================
   FOOTER
   ===================================================== */
.landing-footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.5);
    padding: 64px 0 32px;
}

.landing-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.landing-footer-logo {
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #d4380d, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.landing-footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 300px;
}

.landing-footer h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.landing-footer li {
    font-size: 13px;
    line-height: 2;
}

.landing-footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.landing-footer a:hover {
    color: #d4380d;
}

.landing-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    font-size: 12px;
    text-align: center;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-float { display: none; }
    .hero { padding: 110px 0 60px; }
    .hero-inner { padding: 0 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .device-grid { flex-direction: column; }
    .device-laptop { display: none; }
    .offer-grid { grid-template-columns: 1fr; gap: 0; }
    .offer-inner { padding: 0 24px; }
    .subjects-grid { grid-template-columns: repeat(3, 1fr); }
    .subjects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .subjects-inner { padding: 0 24px; }
    .landing-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .landing-footer-inner { padding: 0 24px; }
    .landing-nav { padding: 0 20px; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 36px; }
    .hero-price { flex-wrap: wrap; }
    .subjects-grid { grid-template-columns: repeat(3, 1fr); }
    .subject-icon { width: 52px; height: 52px; font-size: 14px; }
    .stats { padding: 48px 0; }
    .device, .offer { padding: 64px 0; }
    .subjects { padding: 64px 0; }
    .bottom-cta { padding: 64px 0; }
}
