/* Dokumentert marketing landing — Figma design (Razor, no React) */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:ital,opsz,wght@0,14..32,400;0,14..32,500;0,14..32,600&display=swap');

:root {
    --dk-green-dark: #004a35;
    --dk-green: #009d6e;
    --dk-green-hover: #008259;
    --dk-green-tint: #f0f9f6;
    --dk-fg: #252928;
    --dk-muted: #64746b;
    --dk-bg: #ffffff;
    --dk-muted-bg: #f8f9fa;
    --dk-border: rgba(0, 74, 53, 0.1);
    --dk-max: 1280px;
    --dk-radius: 12px;
    --dk-font-display: 'DM Sans', system-ui, sans-serif;
    --dk-font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.dk-page {
    margin: 0;
    padding: 0;
    background: var(--dk-bg);
    color: var(--dk-fg);
    font-family: var(--dk-font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.dk-page h1,
body.dk-page h2,
body.dk-page h3,
body.dk-page h4 {
    font-family: var(--dk-font-display);
    margin: 0;
    line-height: 1.2;
}

body.dk-page a:not(.dk-btn) { color: inherit; text-decoration: none; }
body.dk-page a:hover { text-decoration: none; }
body.dk-page img { max-width: 100%; display: block; }
body.dk-page p { margin: 0; }

.dk-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dk-icon--lg { width: 1.75rem; height: 1.75rem; }
.dk-icon--xl { width: 2.5rem; height: 2.5rem; }

.dk-container {
    width: 100%;
    max-width: var(--dk-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Nav ─────────────────────────────────────────────────── */
.dk-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.dk-nav.dk-nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dk-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dk-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
}

.dk-nav-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.dk-nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.dk-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(37, 41, 40, 0.8);
    transition: color 0.2s;
}

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

.dk-nav-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.dk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--dk-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
    text-decoration: none;
}

.dk-btn:hover { transform: translateY(-1px); }

.dk-btn--outline {
    padding: 10px 20px;
    color: var(--dk-green-dark);
    background: #fff;
    border: 1px solid var(--dk-green-dark);
}

.dk-btn--outline:hover {
    background: var(--dk-green-tint);
    color: var(--dk-green-dark);
}

.dk-btn--primary,
a.dk-btn--primary {
    padding: 10px 24px;
    color: #fff !important;
    background: var(--dk-green);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.dk-btn--primary:hover,
a.dk-btn--primary:hover {
    background: var(--dk-green-hover);
    color: #fff !important;
}

.dk-btn--primary-lg,
a.dk-btn--primary-lg {
    padding: 16px 32px;
    font-size: 1rem;
    color: #fff !important;
    background: var(--dk-green);
    box-shadow: 0 10px 15px -3px rgba(0, 157, 110, 0.2);
}

.dk-btn--primary-lg:hover,
a.dk-btn--primary-lg:hover {
    background: var(--dk-green-hover);
    color: #fff !important;
}

.dk-btn--outline-lg {
    padding: 16px 32px;
    font-size: 1rem;
    color: var(--dk-green-dark);
    background: transparent;
    border: 2px solid var(--dk-green-dark);
}

.dk-btn--outline-lg:hover { background: var(--dk-green-tint); }

.dk-btn--white {
    padding: 16px 40px;
    font-size: 1.125rem;
    color: var(--dk-green-dark);
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.dk-btn--white:hover { background: rgba(255, 255, 255, 0.9); }

.dk-btn--ghost-white {
    padding: 16px 40px;
    font-size: 1.125rem;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

.dk-btn--ghost-white:hover { background: rgba(255, 255, 255, 0.1); }

.dk-nav-toggle {
    display: flex;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dk-fg);
}

.dk-nav-toggle .dk-icon--close { display: none; }

.dk-nav.dk-nav--open .dk-nav-toggle .dk-icon--menu { display: none; }
.dk-nav.dk-nav--open .dk-nav-toggle .dk-icon--close { display: block; }

.dk-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 24px;
    border-top: 1px solid var(--dk-border);
}

.dk-nav.dk-nav--open .dk-nav-mobile {
    display: flex;
}

.dk-nav-mobile a {
    padding: 8px 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(37, 41, 40, 0.8);
}

.dk-nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .dk-nav-links,
    .dk-nav-actions { display: flex; }
    .dk-nav-toggle,
    .dk-nav-mobile { display: none !important; }
}

/* ─── Hero ────────────────────────────────────────────────── */
.dk-hero {
    position: relative;
    padding: 128px 0 96px;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--dk-green-tint), #fff, #fff);
}

.dk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle at 30% 50%, rgba(0, 157, 110, 0.1), transparent 50%);
    pointer-events: none;
}

.dk-hero-grid {
    position: relative;
    display: grid;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .dk-hero-grid { grid-template-columns: 1fr 1fr; }
}

.dk-hero h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--dk-green-dark);
    line-height: 1.1;
    margin-bottom: 32px;
}

.dk-hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dk-fg);
    margin-bottom: 16px;
}

.dk-hero-lede {
    font-size: 1.125rem;
    color: var(--dk-muted);
    line-height: 1.7;
    max-width: 36rem;
    margin-bottom: 32px;
}

.dk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.dk-tag {
    padding: 8px 16px;
    background: var(--dk-green-tint);
    color: var(--dk-green-dark);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 999px;
}

.dk-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

@media (min-width: 640px) {
    .dk-hero-ctas { flex-direction: row; flex-wrap: wrap; }
}

.dk-hero-visual {
    position: relative;
}

.dk-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    border: 1px solid var(--dk-border);
}

.dk-mockup-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--dk-border);
}

.dk-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dk-mockup-dot--red { background: #ef4444; }
.dk-mockup-dot--yellow { background: #eab308; }
.dk-mockup-dot--green { background: #22c55e; }

.dk-mockup-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--dk-muted);
}

.dk-wave-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dk-wave-row .dk-icon { color: var(--dk-green); animation: dk-pulse 2s ease-in-out infinite; }

@keyframes dk-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dk-wave-bar {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(0, 157, 110, 0.2), rgba(0, 157, 110, 0.4), rgba(0, 157, 110, 0.2));
}

.dk-mockup-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dk-muted);
    margin-bottom: 8px;
}

.dk-transcript {
    padding: 16px;
    background: var(--dk-muted-bg);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dk-transcript-line {
    display: flex;
    gap: 12px;
    font-size: 0.875rem;
}

.dk-transcript-line strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dk-green);
    flex-shrink: 0;
}

.dk-transcript-line span { color: rgba(37, 41, 40, 0.8); line-height: 1.6; }

.dk-mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.dk-stat-card {
    padding: 12px;
    background: var(--dk-green-tint);
    border-radius: 8px;
    border: 1px solid rgba(0, 157, 110, 0.2);
}

.dk-stat-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.dk-stat-card-head .dk-icon { width: 1rem; height: 1rem; color: var(--dk-green); }

.dk-stat-card-head span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dk-green-dark);
}

.dk-stat-card p {
    font-size: 0.75rem;
    color: var(--dk-muted);
}

.dk-badge-float {
    position: absolute;
    background: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--dk-border);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dk-green);
}

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

/* ─── Trust strip ─────────────────────────────────────────── */
.dk-trust {
    padding: 48px 0;
    border-top: 1px solid var(--dk-border);
    border-bottom: 1px solid var(--dk-border);
    background: var(--dk-muted-bg);
}

.dk-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .dk-trust-grid { grid-template-columns: repeat(5, 1fr); }
}

.dk-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dk-trust-item .dk-icon { color: var(--dk-green); }

.dk-trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dk-fg);
}

/* ─── Sections common ─────────────────────────────────────── */
.dk-section {
    padding: 96px 0;
}

.dk-section--white { background: #fff; }
.dk-section--muted { background: var(--dk-muted-bg); }

.dk-section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dk-green-dark);
    margin-bottom: 0;
}

.dk-section-header {
    margin-bottom: 60px;
}

.dk-section-header .dk-section-title {
    margin-bottom: 0;
}

.dk-section-title--sm { margin-bottom: 16px; }

.dk-section-sub {
    text-align: center;
    font-size: 1.125rem;
    color: var(--dk-muted);
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.dk-pricing-header {
    margin-bottom: 48px;
    width: 100%;
    text-align: center;
}

.dk-pricing-header .dk-section-title--sm {
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.dk-pricing-header .dk-section-sub {
    display: block;
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ─── Features accordion ──────────────────────────────────── */
.dk-features {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dk-feature {
    background: #fff;
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.dk-feature:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08); }

.dk-feature summary {
    list-style: none;
    cursor: pointer;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dk-feature summary::-webkit-details-marker { display: none; }

.dk-feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--dk-green-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dk-feature-icon-wrap .dk-icon { width: 1.5rem; height: 1.5rem; color: var(--dk-green); }

.dk-feature-text { flex: 1; }

.dk-feature-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.dk-feature-text p {
    font-size: 0.875rem;
    color: var(--dk-muted);
}

.dk-feature-chevron {
    flex-shrink: 0;
    color: var(--dk-muted);
    transition: transform 0.35s ease;
}

.dk-feature.dk-feature--expanded .dk-feature-chevron { transform: rotate(180deg); }

.dk-feature-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.dk-feature.dk-feature--expanded .dk-feature-panel {
    grid-template-rows: 1fr;
}

.dk-feature-panel > .dk-feature-body {
    overflow: hidden;
    min-height: 0;
}

.dk-feature-body {
    padding: 0 24px 24px 88px;
    font-size: 0.875rem;
    color: rgba(37, 41, 40, 0.8);
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dk-feature.dk-feature--expanded .dk-feature-body {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .dk-feature-panel,
    .dk-feature-chevron,
    .dk-feature-body {
        transition: none;
    }

    .dk-feature-body {
        opacity: 1;
    }
}

/* ─── How it works (always horizontal flow) ───────────────── */
.dk-steps-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.dk-steps-flow {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: max-content;
    min-width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 8px;
}

.dk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 0 0 auto;
    width: 6.75rem;
}

.dk-step-sep {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 1.5rem;
    padding-top: 1.5rem;
    color: var(--dk-muted);
    user-select: none;
}

.dk-step-sep .dk-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--dk-muted);
    color: var(--dk-muted);
}

.dk-step-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--dk-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dk-step-icon--user {
    background: #fff;
    border: 2px solid var(--dk-green);
}

.dk-step-icon--user .dk-icon { color: var(--dk-green); }

.dk-step-icon--ai {
    background: var(--dk-green);
}

.dk-step-icon--ai .dk-icon { color: #fff; }

.dk-step-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.dk-step-label--user { color: var(--dk-fg); }
.dk-step-label--ai { color: var(--dk-green); }

.dk-step-actor {
    font-size: 0.75rem;
    color: var(--dk-muted);
}

/* ─── AI highlight ────────────────────────────────────────── */
.dk-ai {
    padding: 96px 0;
    background: var(--dk-green-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dk-ai::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 70% 30%, rgba(0, 157, 110, 0.5), transparent 70%);
    pointer-events: none;
}

.dk-ai .dk-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dk-ai-header {
    text-align: center;
    margin-bottom: 48px;
    width: 100%;
    max-width: 48rem;
}

.dk-ai .dk-section-title {
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
}

.dk-ai-lede,
.dk-ai .dk-ai-header p {
    display: block;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center !important;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.dk-ai-panel {
    position: relative;
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dk-ai-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.dk-ai-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #fff;
    cursor: default;
}

.dk-ai-answer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--dk-radius);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dk-ai-answer-inner {
    display: flex;
    gap: 12px;
}

.dk-ai-answer-inner > .dk-icon {
    color: var(--dk-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.dk-ai-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 12px;
}

.dk-ai-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.dk-ai-source .dk-icon { width: 1rem; height: 1rem; }

/* ─── Pricing ───────────────────────────────────────────────── */
#priser .dk-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dk-pricing-grid {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .dk-pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
        gap: 20px;
    }
}

.dk-price-card {
    position: relative;
    border-radius: 16px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--dk-border);
    display: flex;
    flex-direction: column;
}

.dk-price-card--featured {
    background: var(--dk-green-dark);
    color: #fff;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .dk-price-card--featured {
        padding: 40px 32px;
        margin-top: -8px;
        margin-bottom: 0;
    }
}

.dk-price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--dk-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
}

.dk-price-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dk-price-card--featured h3 { color: #fff; }

.dk-price-hours {
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.dk-price-card:not(.dk-price-card--featured) .dk-price-hours { color: var(--dk-muted); }
.dk-price-card--featured .dk-price-hours { color: rgba(255, 255, 255, 0.8); }

.dk-price-amount {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}

.dk-price-card:not(.dk-price-card--featured) .dk-price-amount { color: var(--dk-green-dark); }

.dk-price-card .dk-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: auto;
}

.dk-price-card:not(.dk-price-card--featured) .dk-btn--primary,
.dk-price-card:not(.dk-price-card--featured) a.dk-btn--primary {
    color: #fff !important;
    background: var(--dk-green);
}

.dk-price-card--featured .dk-btn,
.dk-price-card--featured a.dk-btn {
    background: #fff;
    color: var(--dk-green-dark) !important;
}

.dk-price-card--featured .dk-btn:hover,
.dk-price-card--featured a.dk-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dk-green-dark) !important;
}

.dk-price-footnote {
    display: block;
    width: 100%;
    max-width: 40rem;
    margin: 72px auto 0;
    padding: 0 16px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--dk-muted);
    line-height: 1.6;
}

/* ─── Downloads ─────────────────────────────────────────────── */
.dk-downloads-header {
    margin-bottom: 80px;
}

.dk-downloads {
    display: grid;
    gap: 32px;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dk-downloads { grid-template-columns: repeat(3, 1fr); }
}

.dk-download-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--dk-border);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.dk-download-card:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08); }

.dk-download-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 16px;
    background: var(--dk-green-tint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dk-platform-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    object-fit: contain;
}

.dk-download-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dk-green-dark);
    margin: 0 0 32px;
}

.dk-download-card .dk-btn,
.dk-download-card a.dk-btn {
    width: 100%;
    padding: 14px 28px;
    color: #fff !important;
    background: var(--dk-green);
    border-radius: 9999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.dk-download-card .dk-btn:hover,
.dk-download-card a.dk-btn:hover {
    background: var(--dk-green-hover);
    color: #fff !important;
}

.dk-download-card .dk-btn .dk-icon {
    color: #fff;
    stroke: #fff;
}

/* ─── Testimonials ────────────────────────────────────────── */
.dk-testimonials {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .dk-testimonials { grid-template-columns: repeat(3, 1fr); }
}

.dk-testimonial {
    background: var(--dk-muted-bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--dk-border);
}

.dk-testimonial blockquote {
    margin: 0 0 24px;
    font-style: italic;
    color: rgba(37, 41, 40, 0.9);
    line-height: 1.7;
}

.dk-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dk-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 157, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dk-testimonial-avatar .dk-icon { color: var(--dk-green); }

.dk-testimonial-name { font-weight: 600; }
.dk-testimonial-role { font-size: 0.875rem; color: var(--dk-muted); }

/* ─── Final CTA ───────────────────────────────────────────── */
.dk-cta-final {
    padding: 96px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--dk-green-dark), var(--dk-green));
}

.dk-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3), transparent 70%);
    pointer-events: none;
}

.dk-cta-final .dk-container { position: relative; }

.dk-cta-final h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.dk-cta-final > .dk-container > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 48px;
}

.dk-cta-final-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .dk-cta-final-actions { flex-direction: row; }
}

/* ─── Footer ──────────────────────────────────────────────── */
.dk-footer {
    padding: 64px 0;
    background: var(--dk-green-dark);
    color: #fff;
}

.dk-footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .dk-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.dk-footer-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.dk-footer-about {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.dk-footer h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.dk-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dk-footer ul a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.dk-footer ul a:hover { color: #fff; }

.dk-footer-copy {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}
