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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-card: #ffffff;
    --bg-dark: #0f0f0f;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --accent: #e11d48;
    --accent-hover: #be123c;
    --accent-light: #fff1f2;
    --accent-glow: rgba(225, 29, 72, 0.2);
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --gradient-1: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, .logo-text, .stat-number, .filter-btn, .submit-btn {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-dot {
    color: var(--accent);
}

.header-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-light);
    border-radius: 100px;
    margin-left: auto;
    margin-right: 16px;
}

.counter-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
}

.counter-label {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 600px) {
    .header-counter {
        display: none;
    }
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-1);
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.header-cta svg {
    flex-shrink: 0;
}

/* Hero */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--accent-light) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 28px;
    background: var(--gradient-1);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 24px var(--accent-glow), 0 4px 12px rgba(225, 29, 72, 0.3);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--accent-glow), 0 6px 16px rgba(225, 29, 72, 0.4);
}

.hero-btn-number {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
}

/* Search Box Inline (ved listen) */
.search-box-inline {
    position: relative;
    max-width: 100%;
    margin-bottom: 32px;
}

.search-box-inline input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 16px;
    background: var(--bg-primary);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.search-box-inline input::placeholder {
    color: var(--text-muted);
}

.search-box-inline input:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.search-box-inline .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

/* Stats - Highlighted Box */
.stats {
    padding: 0;
    background: transparent;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stat-highlight {
    background: var(--gradient-2);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stat-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
}

.stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.05; }
}

.stat-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-highlight .stat-number {
    font-size: 80px;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.stat-highlight .stat-label {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.stat-updated {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* Success Stat (grøn) */
.stat-success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.stat-badge-success {
    background: #10b981 !important;
}

.stat-number-success {
    color: #ecfdf5 !important;
}

.stat-pulse-success {
    background: #10b981 !important;
}

/* Stat Tooltip - overlay inde i boksen */
.stat-with-tooltip {
    cursor: help;
}

.stat-tooltip {
    position: absolute;
    inset: 0;
    background: rgba(5, 150, 105, 0.97);
    color: white;
    padding: 32px 28px;
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stat-tooltip p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.stat-tooltip p:first-child {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.stat-with-tooltip:hover .stat-tooltip,
.stat-with-tooltip.tooltip-active .stat-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-tooltip {
        padding: 24px 20px;
    }
}

/* City Stats Section */
.city-stats-section {
    padding: 40px 0 0;
}

.city-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.city-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.city-stat:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.city-stat-count {
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-light);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 13px;
}

/* List Section */
.list-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 100px;
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Clinic Cards */
.clinic-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.clinic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.clinic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
}

.clinic-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

.clinic-card:hover::before {
    opacity: 1;
}

.clinic-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.clinic-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.clinic-image {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.clinic-image-link {
    display: block;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 14px;
}

.clinic-image-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.clinic-image-link .clinic-logo,
.clinic-image-link .clinic-image {
    display: block;
}

.clinic-title {
    flex: 1;
    min-width: 0;
}

.clinic-name {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.clinic-location {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.clinic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.type-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.type-clinic {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid rgba(3, 105, 161, 0.2);
}

.type-person {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid rgba(180, 83, 9, 0.2);
}

.clinic-warnings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #b91c1c;
    border-radius: 10px;
    border: 2px solid #fca5a5;
    position: relative;
    animation: warningGlow 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.15);
}

.warning-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    opacity: 0;
    z-index: -1;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(185, 28, 28, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(185, 28, 28, 0.35);
        transform: scale(1.02);
    }
}

@keyframes warningPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.1; }
}

.warning-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    animation: warningIcon 1.5s ease-in-out infinite;
}

@keyframes warningIcon {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

/* Kategori 1 - Ulovlig klinik (rød) */
.warning-badge.category-1:first-child {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
}

.warning-badge.category-1:first-child svg {
    fill: white;
}

/* Kategori 2 - Ulovlige behandlinger (orange/gul) */
.warning-badge.category-2:first-child {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: warningGlowOrange 2s ease-in-out infinite;
}

.warning-badge.category-2:first-child svg {
    fill: white;
}

@keyframes warningGlowOrange {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
        transform: scale(1.02);
    }
}

/* Sekundær badge - mere subtil */
.warning-badge:not(:first-child) {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    font-weight: 500;
    animation: none;
    box-shadow: none;
}

.warning-badge:not(:first-child)::before {
    display: none;
}

.warning-badge:not(:first-child) svg {
    display: none;
}

/* Tooltip for sekundær badge */
.warning-badge[data-tooltip] {
    position: relative;
    cursor: help;
}

.warning-badge[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    width: 280px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.warning-badge[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

.clinic-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.clinic-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    flex-wrap: wrap;
}

.clinic-footer .evidence-link {
    margin-left: auto;
}

.clinic-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.clinic-link:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.clinic-link svg {
    width: 14px;
    height: 14px;
}

.clinic-link.evidence-link {
    padding: 6px 12px;
    font-size: 12px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.clinic-link.evidence-link:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: rgba(225, 29, 72, 0.2);
}

.clinic-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Social section */
.clinic-social {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border-light);
}

/* Voting */
.clinic-voting {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.voting-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.voting-buttons {
    display: flex;
    gap: 8px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.vote-btn:hover {
    border-color: var(--text-muted);
}

.vote-btn.vote-yes:hover {
    background: #dcfce7;
    border-color: #22c55e;
}

.vote-btn.vote-no:hover {
    background: #fee2e2;
    border-color: #ef4444;
}

.vote-btn.voted.vote-yes {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.vote-btn.voted.vote-no {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.vote-count {
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

/* Share buttons */
.share-buttons {
    display: flex;
    gap: 6px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.share-btn svg {
    width: 14px;
    height: 14px;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
}

.share-facebook:hover svg {
    fill: white;
}

.share-twitter:hover {
    background: #000;
    color: white;
}

.share-twitter:hover svg {
    fill: white;
}

.share-copy:hover {
    background: var(--accent);
    color: white;
}

.no-results {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-muted);
    font-size: 17px;
    grid-column: 1 / -1;
}

/* Coming Soon Section (Privatpersoner) */
.coming-soon-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.coming-soon-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-primary);
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.coming-soon-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.coming-soon-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Questions Section (FAQ) */
.questions-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.questions-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.questions-section > .container > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 18px;
}

.questions-list {
    max-width: 880px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

.question-item {
    border-bottom: 1px solid var(--border-light);
}

.question-item:last-child {
    border-bottom: none;
}

.question-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s;
}

.question-header:hover {
    color: var(--accent);
}

.question-header svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-muted);
    width: 22px;
    height: 22px;
}

.question-item.active .question-header svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.question-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.question-item.active .question-answer {
    max-height: 300px;
}

.question-answer p {
    padding: 0 0 24px 0;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.question-answer a {
    color: var(--accent);
    text-decoration: none;
}

.question-answer a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

.faq-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
}

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

.faq-item {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.faq-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 6px 20px var(--accent-glow);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Tip Section */
.tip-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #fef2f2 100%);
}

.tip-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.tip-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-1);
}

.tip-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.tip-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px var(--accent-glow);
}

.tip-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.tip-header p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.tip-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-type-option {
    cursor: pointer;
}

.form-type-option input {
    display: none;
}

.form-type-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
}

.form-type-box:hover {
    border-color: var(--text-muted);
}

.form-type-option input:checked + .form-type-box {
    color: var(--accent);
    background: var(--accent-light);
    border-color: var(--accent);
}

.form-type-box svg {
    flex-shrink: 0;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.success-btn:hover {
    background: var(--bg-primary);
    border-color: var(--accent);
    color: var(--accent);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.form-divider span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 14px;
    background: var(--bg-primary);
    color: var(--text-primary);
    outline: none;
    transition: all 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select select {
    width: 100%;
    padding: 16px 48px 16px 20px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 14px;
    background: var(--bg-primary);
    color: var(--text-primary);
    outline: none;
    transition: all 0.25s;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 22px 48px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px var(--accent-glow);
    margin-top: 8px;
}

.submit-btn svg {
    width: 22px;
    height: 22px;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(225, 29, 72, 0.4);
}

.submit-btn:active {
    transform: translateY(-2px);
}

/* Moral Section */
.moral-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
}

.moral-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.moral-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px;
    box-shadow: 0 12px 40px rgba(225, 29, 72, 0.3);
}

.moral-icon svg {
    color: white;
}

.moral-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

.moral-text {
    text-align: left;
}

.moral-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.moral-highlight {
    font-size: 22px !important;
    color: white !important;
    font-weight: 500;
    line-height: 1.6 !important;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px !important;
}

.moral-conclusion {
    font-size: 20px !important;
    color: white !important;
    font-weight: 600;
    margin-top: 32px !important;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 48px;
    padding: 36px 40px;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 20px;
    text-align: left;
}

.action-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon svg {
    color: white;
}

.action-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.action-content p {
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0 !important;
    line-height: 1.8 !important;
}

/* Check Section (Tjek en klinik) */
.check-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.check-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 48px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #6ee7b7;
    border-radius: 24px;
}

.check-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.check-icon svg {
    color: white;
}

.check-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.check-text p {
    font-size: 16px;
    color: #047857;
    line-height: 1.7;
}

.check-text a {
    color: #065f46;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.check-text a:hover {
    color: #059669;
}

/* Multi Links Form */
.multi-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.link-type-select {
    padding: 14px 20px 14px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    min-width: 150px;
    transition: all 0.25s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.link-type-select:hover {
    border-color: var(--text-muted);
    background-color: var(--bg-primary);
}

.link-type-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background-color: var(--bg-primary);
}

.link-row input {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    outline: none;
    transition: all 0.25s;
}

.link-row input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.remove-link-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-link-btn:hover {
    background: #fee2e2;
    border-color: #f87171;
}

.add-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px dashed var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.add-link-btn:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom .disclaimer {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        height: 64px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .clinic-list {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-type-selector {
        grid-template-columns: 1fr;
    }

    .tip-wrapper {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .tip-header {
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        margin: 0 auto;
    }

    .tip-header h2 {
        font-size: 24px;
    }

    .stat-highlight {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .stat-highlight .stat-number {
        font-size: 56px;
    }

    .stat-highlight .stat-label {
        font-size: 17px;
    }

    nav {
        gap: 20px;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }

    .moral-section {
        padding: 60px 0;
    }

    .moral-section h2 {
        font-size: 28px;
    }

    .moral-text p {
        font-size: 16px;
    }

    .moral-highlight {
        font-size: 18px !important;
        padding: 20px;
    }

    .moral-icon {
        width: 80px;
        height: 80px;
    }

    .moral-icon svg {
        width: 36px;
        height: 36px;
    }

    .action-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .action-icon {
        margin: 0 auto;
    }

    .action-content {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        text-align: center;
    }

    .check-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .link-row {
        flex-wrap: wrap;
    }

    .link-type-select {
        width: 100%;
        min-width: unset;
    }

    .link-row input {
        width: 100%;
    }

    .remove-link-btn {
        margin-left: auto;
    }

    .clinic-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .share-buttons {
        order: 2;
    }

    .clinic-date {
        order: 1;
    }

    .clinic-footer .evidence-link {
        order: 3;
        margin-left: 0;
    }

    .share-btn {
        width: 32px;
        height: 32px;
    }
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #059669;
    font-weight: 500;
    padding: 10px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    margin-top: 16px;
    width: 100%;
    border: 1px solid #bbf7d0;
}

.social-proof svg {
    flex-shrink: 0;
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.social-proof .social-count {
    font-weight: 700;
}
