/*
Theme Name: aiAct.dk One-Page Theme
Theme URI: https://aiact.dk
Author: aiAct
Description: Et skræddersyet, lynhurtigt og responsivt One-Page tema til aiAct.dk med fokus på AI Act compliance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://gnu.org
Text Domain: aiact-theme
*/

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --text-dark: #334155;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --danger: #dc2626;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

body {
    background-color: var(--bg-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #64748b;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.hero {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #cbd5e1;
}

.hero-buttons {
    margin-bottom: 50px;
}

.hero .btn-secondary {
    color: white;
    border-color: white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.hero .card {
    background: var(--primary-light);
    border: 1px solid #334155;
    text-align: left;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.hero .card h3 {
    color: white;
}

.card p {
    font-size: 15px;
    color: #64748b;
}

.hero .card p {
    color: #94a3b8;
}

.overview-section {
    background-color: var(--bg-light);
}

.overview-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.step-block {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.step-block h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.sub-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.sub-points li {
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.sub-points li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.center-btn {
    text-align: center;
    margin-top: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.management-section {
    background-color: var(--primary);
    color: white;
}

.management-section .section-title {
    color: white;
}

.management-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #cbd5e1;
}

.management-content p {
    margin-bottom: 20px;
}

.highlight-box {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--danger);
    padding: 20px;
    border-radius: 6px;
    color: #fca5a5;
    font-weight: 500;
    margin-top: 30px;
}

.pricing-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.price-card.popular {
    border: 2px solid var(--accent);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.price-card p.desc {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 44px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

.price-features li::before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-card .btn {
    width: 100%;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #64748b;
    font-size: 15px;
}

.faq-answer p {
    padding-top: 15px;
}

.faq-answer ul {
    padding-top: 10px;
    padding-left: 20px;
}

.faq-toggle {
    font-size: 22px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
    .btn-primary {
        display: block;
        width: 100%;
    }
    section {
        padding: 60px 0;
    }
}
