:root {
    --primary: #007AFF;
    --primary-dark: #0056b3;
    --bg: #ffffff;
    --text: #1d1d1f;
    --text-muted: #86868b;
    --card-bg: #f5f5f7;
    --border: #d2d2d7;
    --success: #34c759;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.4;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
nav { 
    height: 80px; 
    display: flex; 
    align-items: center; 
    background: rgba(255,255,255,0.8); 
    backdrop-filter: blur(20px); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

nav .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; color: var(--text); }
.logo span { color: var(--primary); }

/* Desktop Menu */
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 14px; transition: 0.2s; }
.nav-links a:hover { color: var(--primary); }

.login-btn-style {
    background: var(--text);
    color: white !important;
    padding: 10px 22px;
    border-radius: 12px;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
header { padding: 60px 0 40px; text-align: center; }
.badge { background: #e8f2ff; color: var(--primary); padding: 8px 16px; border-radius: 100px; display: inline-block; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
h1 { font-size: 42px; font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(90deg, #007AFF, #00C6FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-p { font-size: 19px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.cta-group { display: flex; flex-direction: column; gap: 12px; align-items: center; margin: 40px 0; }
.input-container { background: var(--card-bg); padding: 16px 20px; border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; width: 100%; max-width: 360px; }
.btn-primary { background: var(--primary); color: white; padding: 16px 32px; border-radius: 16px; font-weight: 700; text-decoration: none; width: 100%; max-width: 360px; text-align: center; border: none; cursor: pointer; }

/* Showcase Grid */
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 60px; padding: 60px 0; text-align: center; }

/* Phone Mockup */
.phone-wrapper {
    width: 280px; height: 560px; background: #1d1d1f; border-radius: 44px; padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1); border: 4px solid #3a3a3c; margin: 0 auto;
    position: relative;
}
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 90px; height: 18px; background: #1d1d1f; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.phone-screen { background: white; height: 100%; border-radius: 34px; overflow: hidden; display: flex; flex-direction: column; align-items: center; padding: 40px 15px; }

.mock-avatar { width: 70px; height: 70px; border-radius: 50%; margin-bottom: 10px; background: #f5f5f7; }
.mock-link { width: 100%; padding: 12px; background: var(--card-bg); border-radius: 12px; font-size: 12px; font-weight: 600; margin-bottom: 8px; border: 1px solid var(--border); }
.mock-product { width: 100%; border: 2px solid var(--primary); border-radius: 14px; padding: 10px; display: flex; align-items: center; gap: 10px; margin-top: 10px; text-align: left; }

/* Features & Checkmarks */
.pulse-item { display: flex; align-items: center; gap: 12px; padding: 15px; border-radius: 18px; }
.check-list-container { display: flex; justify-content: center; }
.check-list { list-style: none; text-align: left; display: inline-block; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-weight: 600; display: flex; align-items: center; }

/* Responsiveness */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute; top: 80px; left: 0; width: 100%;
        background: white; flex-direction: column; padding: 40px; border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (min-width: 992px) {
    h1 { font-size: 64px; }
    .cta-group { flex-direction: row; justify-content: center; }
    .showcase-grid { grid-template-columns: 1fr 300px 1fr; text-align: left; }
    .mobile-right { text-align: right; }
    .flex-end { justify-content: flex-end; }
    .check-list-container { justify-content: flex-start; }
}

footer { padding: 60px 0; border-top: 1px solid var(--border); text-align: center; color: var(--text-muted); font-size: 14px; }

@media (max-width: 991px) {
    /* Centrerer Anita-sektionen på mobil */
    .mobile-right {
        text-align: center !important;
    }
    
    .flex-end {
        justify-content: center !important;
        text-align: center !important;
        margin-right: 0 !important;
    }

    .pulse-item {
        flex-direction: column; /* Valgfrit: sætter navn over billede på mobil */
        gap: 10px;
    }

    .pulse-item div {
        margin-right: 0 !important;
        text-align: center !important;
    }
}