/* ===== GLOBAL STYLES ===== */
:root {
    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Colors */
    --primary: #0059b3;
    --primary-light: rgba(0, 89, 179, 0.1);
    --primary-dark: #003d82;
    --text: #1a202c;
    --text-secondary: #64748b;
    --background: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
    --border-light: rgba(226, 232, 240, 0.5);
    --white: #ffffff;
    --warning: #fff3cd;
    --success: #10b981;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* ===== NAVBAR - MOBILVENLIG ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-md) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: var(--text-lg);
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-img.small {
    height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    font-size: var(--text-sm);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: var(--text-sm);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: var(--text-xl);
    color: var(--text);
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
    font-size: var(--text-base);
}

.mobile-menu a:hover {
    background: var(--background);
}

.mobile-menu .btn {
    width: 100%;
    text-align: center;
    margin-top: var(--space-sm);
}

/* ===== HERO SECTION - MOBILOPTIMERET ===== */
.hero {
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-title {
    font-size: var(--text-3xl);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: var(--radius-sm);
}

.hero-subtitle {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.store-badge {
    display: inline-block;
    height: 50px;
    transition: transform 0.2s;
    flex: 1;
    max-width: 180px;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.store-badge.large {
    height: 60px;
    max-width: 200px;
}

.hero-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--primary-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    max-width: 500px;
}

.hero-disclaimer i {
    color: var(--primary);
    font-size: var(--text-lg);
    margin-top: 2px;
}

.hero-disclaimer p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text);
    line-height: 1.5;
}

/* ===== PHONE MOCKUP - MOBILOPTIMERET ===== */
.hero-image {
    position: relative;
    perspective: 1000px;
    margin: 0 auto;
    max-width: 320px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    height: 640px;
    max-width: 320px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2c3e50 0%, #1a1a2e 100%);
    border-radius: 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 12px solid #1a1a2e;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(-5deg) rotateX(3deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 25px;
    background: #1a1a2e;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 28px;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    filter: blur(8px);
}

/* ===== APP MOCKUP - MOBILOPTIMERET ===== */
.app-container {
    height: 100%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    overflow-y: auto;
}

.app-header {
    padding: 45px 16px 14px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 12px;
}

.header-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
}

.empty-state-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 16px 10px;
    text-align: center;
    margin-bottom: 15px;
}

.empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background: rgba(0, 89, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.empty-icon-inner {
    width: 36px;
    height: 36px;
    border: 3px solid #0059b3;
    border-radius: 8px;
}

.empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
    text-align: center;
    padding: 0 4px;
}

.empty-text {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    line-height: 20px;
    max-width: 250px;
    margin: 0 auto;
    padding: 0 4px;
}

/* Add ID Card - MOBILOPTIMERET */
.add-id-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    border: 2px dashed #0059b3;
    margin: 0 16px 18px;
    transition: all 0.2s ease;
    margin-top: 5px;
    min-height: 52px;
}

.add-id-card:hover {
    background: rgba(0, 89, 179, 0.03);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 89, 179, 0.1);
}

.add-id-icon {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: rgba(0, 89, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.plus-icon-large {
    width: 22px;
    height: 22px;
    position: relative;
}

.plus-horizontal-large {
    position: absolute;
    width: 22px;
    height: 3px;
    background: #0059b3;
    top: 9.5px;
    border-radius: 1.5px;
}

.plus-vertical-large {
    position: absolute;
    width: 3px;
    height: 22px;
    background: #0059b3;
    left: 9.5px;
    border-radius: 1.5px;
}

.add-id-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.add-id-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.add-id-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
}

.arrow-icon-inner {
    width: 6px;
    height: 6px;
    border-right: 2px solid #0059b3;
    border-top: 2px solid #0059b3;
    transform: rotate(45deg);
}

.security-notice {
    display: flex;
    align-items: center;
    background: rgba(0, 89, 179, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 89, 179, 0.1);
    margin: 0 16px 16px;
    flex-shrink: 0;
    margin-top: 8px;
}

.lock-icon-container {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lock-icon {
    width: 14px;
    height: 18px;
    border: 2px solid #0059b3;
    border-radius: 3px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.security-text-container {
    flex: 1;
    min-width: 0;
}

.security-title {
    font-size: 13px;
    font-weight: 700;
    color: #0059b3;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.security-text {
    font-size: 11px;
    color: #64748b;
    line-height: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Tab Bar - MOBILOPTIMERET */
.app-footer {
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 4px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-icon-container {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.id-card-icon {
    width: 22px;
    height: 16px;
    border: 2px solid #64748b;
    border-radius: 3px;
}

.id-card-icon.active {
    border-color: #0059b3;
    background: rgba(0, 89, 179, 0.1);
}

.scan-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.scan-icon-body {
    width: 100%;
    height: 100%;
    position: relative;
    border: 2px solid #64748b;
    border-radius: 4px;
}

.scan-line {
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 1px;
    background: #64748b;
    transform: translateY(-50%);
}

.scan-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border-color: #64748b;
}

.scan-corner-tl {
    top: -1px;
    left: -1px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.scan-corner-tr {
    top: -1px;
    right: -1px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.scan-corner-bl {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.scan-corner-br {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.settings-icon {
    font-size: 20px;
    color: #64748b;
    transition: color 0.2s ease;
}

.settings-icon.active {
    color: #0059b3;
}

.footer-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.footer-label.active {
    color: #0059b3;
}

/* ===== HOW IT WORKS - MOBILOPTIMERET ===== */
.how-it-works {
    background: var(--background);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.step {
    text-align: center;
    padding: var(--space-lg);
    background: var(--surface);
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: var(--text-xl);
    color: var(--primary);
}

.step-title {
    color: var(--text);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
}

.step-description {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.step-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--background);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.step-note i {
    color: var(--primary);
    font-size: var(--text-sm);
}

.privacy-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    margin: 0 auto;
    max-width: 600px;
}

.privacy-banner i {
    font-size: var(--text-xl);
    color: var(--primary);
}

.privacy-banner p {
    margin: 0;
    font-size: var(--text-base);
    color: var(--text);
    text-align: center;
}

/* ===== PRIVACY SECTION - MOBILOPTIMERET ===== */
.privacy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.privacy-card {
    padding: var(--space-lg);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.privacy-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
    color: var(--primary);
}

.privacy-card h3 {
    color: var(--text);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.privacy-card ul {
    list-style: none;
    margin-bottom: var(--space-md);
}

.privacy-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.4;
}

.privacy-card li i {
    color: var(--success);
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-light);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    margin-top: var(--space-sm);
}

.privacy-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== SECURITY SECTION - MOBILOPTIMERET ===== */
.security-section {
    background: var(--background);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.security-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.security-header {
    padding: var(--space-lg);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.security-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-base);
}

.security-header h3 {
    margin: 0;
    color: var(--text);
    font-size: var(--text-base);
}

.security-content {
    padding: var(--space-lg);
}

.security-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.security-content ul {
    list-style: none;
}

.security-content li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.4;
}

.security-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===== DISCLAIMER - MOBILOPTIMERET ===== */
.disclaimer-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: #fef3e7;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.disclaimer-card i {
    font-size: var(--text-xl);
    color: #8B6E3C;
    margin-top: var(--space-xs);
    flex-shrink: 0;
}

.disclaimer-content h3 {
    color: #8B6E3C;
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
}

.disclaimer-content p {
    color: #8B6E3C;
    margin: 0;
    opacity: 0.9;
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* ===== DOWNLOAD SECTION - MOBILOPTIMERET ===== */
.download-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.download-section .section-title {
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.download-section .section-subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.feature i {
    color: var(--white);
    opacity: 0.9;
    font-size: var(--text-base);
}

/* ===== ABOUT SECTION - MOBILOPTIMERET ===== */
.about-card {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.about-card h3 i {
    font-size: var(--text-lg);
}

.about-content p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.4;
}

.detail i {
    color: var(--primary);
    font-size: var(--text-sm);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ===== FOOTER - MOBILOPTIMERET ===== */
.footer {
    background: var(--text);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-xs);
    max-width: 250px;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
}

.footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
    line-height: 1.4;
}

.footer-contact-info .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE DESIGN - MOBIL FØRST ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .hero-image {
        order: -1;
        margin-bottom: var(--space-xl);
    }
    
    .phone-mockup {
        max-width: 300px;
        height: 600px;
        transform: rotateY(-8deg) rotateX(5deg);
    }
    
    .steps,
    .privacy-features,
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation - Mobile */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .store-badge {
        max-width: 220px;
    }
    
    /* Phone Mockup */
    .phone-mockup {
        transform: none;
        max-width: 280px;
        height: 560px;
        border-radius: 35px;
    }
    
    .phone-notch {
        width: 150px;
        height: 22px;
    }
    
    /* Content Sections */
    .steps,
    .privacy-features,
    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-contact-info {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .footer-contact-info .separator {
        display: none;
    }
    
    /* Download Section */
    .download-features {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* App Mockup - Mobile Optimizations */
    .app-header {
        padding: 40px 12px 12px;
    }
    
    .header-title {
        font-size: 20px;
    }
    
    .empty-state-container {
        padding: 15px 12px 5px;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .empty-icon-inner {
        width: 32px;
        height: 32px;
    }
    
    .empty-title {
        font-size: 18px;
    }
    
    .empty-text {
        font-size: 13px;
        max-width: 220px;
    }
    
    .add-id-card {
        margin: 0 12px 16px;
        padding: 16px 12px;
        min-height: 48px;
    }
    
    .add-id-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .add-id-title {
        font-size: 14px;
    }
    
    .add-id-text {
        font-size: 11px;
    }
    
    .security-notice {
        margin: 0 12px 14px;
        padding: 14px;
    }
    
    .security-title {
        font-size: 12px;
    }
    
    .security-text {
        font-size: 10px;
    }
    
    .app-footer {
        height: 56px;
    }
    
    .footer-icon-container {
        width: 24px;
        height: 24px;
    }
    
    .id-card-icon {
        width: 18px;
        height: 14px;
        border-width: 1.5px;
    }
    
    .scan-icon {
        width: 22px;
        height: 22px;
    }
    
    .scan-icon-body {
        border-width: 1.5px;
    }
    
    .settings-icon {
        font-size: 18px;
    }
    
    .footer-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: var(--space-xl);
    }
    
    .hero-title {
        font-size: var(--text-xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }
    
    .hero-disclaimer {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .hero-disclaimer i {
        font-size: var(--text-base);
    }
    
    .hero-disclaimer p {
        font-size: var(--text-xs);
    }
    
    .phone-mockup {
        max-width: 260px;
        height: 520px;
        border-width: 10px;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        font-size: var(--text-xl);
    }
    
    .section-subtitle {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }
    
    .step {
        padding: var(--space-md);
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-lg);
    }
    
    .step-title {
        font-size: var(--text-sm);
    }
    
    .step-description {
        font-size: var(--text-xs);
    }
    
    .privacy-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
        gap: var(--space-sm);
    }
    
    .privacy-banner i {
        font-size: var(--text-lg);
    }
    
    .privacy-banner p {
        font-size: var(--text-sm);
    }
    
    .privacy-card,
    .security-card {
        padding: var(--space-md);
    }
    
    .disclaimer-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .download-section .section-title {
        font-size: var(--text-xl);
    }
    
    .download-section .section-subtitle {
        font-size: var(--text-sm);
    }
    
    .download-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .store-badge.large {
        height: 55px;
        max-width: 180px;
    }
    
    .about-card {
        padding: var(--space-lg);
    }
    
    .about-card h3 {
        font-size: var(--text-base);
    }
    
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
    
    .footer-main {
        gap: var(--space-lg);
    }
    
    .footer-links {
        gap: var(--space-xl);
    }
    
    .footer-column h4 {
        font-size: var(--text-sm);
        margin-bottom: var(--space-sm);
    }
    
    .footer-column a {
        font-size: var(--text-xs);
        margin-bottom: var(--space-xs);
    }
    
    /* App Mockup - Extra Small */
    .app-header {
        padding: 35px 10px 10px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .empty-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 14px;
    }
    
    .empty-icon-inner {
        width: 28px;
        height: 28px;
    }
    
    .empty-title {
        font-size: 16px;
    }
    
    .empty-text {
        font-size: 12px;
        max-width: 200px;
    }
    
    .add-id-card {
        padding: 14px 10px;
        min-height: 44px;
    }
    
    .add-id-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }
    
    .plus-icon-large {
        width: 20px;
        height: 20px;
    }
    
    .plus-horizontal-large {
        width: 20px;
        top: 8.5px;
    }
    
    .plus-vertical-large {
        height: 20px;
        left: 8.5px;
    }
    
    .add-id-title {
        font-size: 13px;
    }
    
    .add-id-text {
        font-size: 10px;
    }
    
    .arrow-icon {
        width: 18px;
        height: 18px;
    }
    
    .arrow-icon-inner {
        width: 5px;
        height: 5px;
        border-width: 1.5px;
    }
    
    .security-notice {
        padding: 12px;
    }
    
    .lock-icon-container {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .lock-icon {
        width: 12px;
        height: 15px;
    }
    
    .app-footer {
        height: 52px;
        padding: 4px 0;
    }
    
    .footer-tab {
        gap: 2px;
    }
    
    .footer-icon-container {
        width: 22px;
        height: 22px;
    }
    
    .scan-icon {
        width: 20px;
        height: 20px;
    }
    
    .settings-icon {
        font-size: 16px;
    }
}