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

        :root {
            --blue: #2563EB;
            --blue-dark: #1D4ED8;
            --blue-light: #EFF6FF;
            --blue-bg: #1E3A8A;
            --dark: #1E293B;
            --dark-2: #0F172A;
            --gray: #64748B;
            --gray-light: #F1F5F9;
            --gray-border: #E2E8F0;
            --white: #FFFFFF;
            --red: #EF4444;
            --red-light: #FEF2F2;
            --green: #15803d;
            --green-light: #ECFDF5;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; }

        /* ========== NAV ========== */
        .nav-wrapper {
            border-bottom: 1px solid var(--gray-border);
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--dark);
            flex-shrink: 0;
        }
        .nav-logo-icon {
            width: 32px;
            height: 32px;
            background: var(--blue);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1rem;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.75rem;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            transition: color 0.15s;
        }
        .nav-links a:hover { color: var(--dark); }

        /* ========== BURGER MENU ========== */
        .burger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            color: var(--dark);
            transition: background 0.15s;
            flex-shrink: 0;
        }
        .burger-btn:hover { background: var(--gray-light); }
        .burger-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.2s ease;
            transform-origin: center;
        }
        .burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-border);
            box-shadow: 0 8px 24px rgba(15,23,42,0.1);
            z-index: 50;
            opacity: 0;
            transform: translateY(-6px);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
            max-height: calc(100vh - 64px);
            overflow-y: auto;
        }
        .mobile-menu.open {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .mobile-menu-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.75rem 1.25rem 1.25rem;
        }
        .mobile-menu-links {
            list-style: none;
            margin: 0 0 0.75rem 0;
            padding: 0;
        }
        .mobile-menu-links li a {
            display: block;
            padding: 0.8rem 0;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gray);
            border-bottom: 1px solid var(--gray-border);
            transition: color 0.15s;
        }
        .mobile-menu-links li:last-child a { border-bottom: none; }
        .mobile-menu-links li a:hover,
        .mobile-menu-links li a.active { color: var(--dark); }
        .mobile-menu-actions {
            display: flex;
            gap: 0.75rem;
            padding-top: 0.25rem;
        }
        .mobile-menu-actions .btn-login {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            padding: 0.6rem 0.75rem;
            transition: color 0.15s;
        }
        .mobile-menu-actions .btn-login:hover { color: var(--dark); }
        .mobile-menu-actions .btn-primary,
        .mobile-menu-actions .btn-outline { flex: 1; text-align: center; justify-content: center; }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }
        .btn-login {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            transition: color 0.15s;
        }
        .btn-login:hover { color: var(--dark); }
        .btn-primary {
            background: var(--blue);
            color: white;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            transition: background 0.15s, transform 0.15s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .btn-primary:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--dark);
            font-size: 0.88rem;
            font-weight: 600;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            border: 1.5px solid var(--gray-border);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: border-color 0.15s, background 0.15s;
        }
        .btn-outline:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: var(--blue-light);
        }
        /* Hide second CTA button in desktop nav on mobile — it's in mobile menu instead */
        @media (max-width: 900px) {
            .nav-cta-privat { display: none !important; }
        }

        /* ========== TILMELD BUTTON ========== */
        .btn-tilmeld {
            background: var(--blue);
            color: white;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: background 0.15s, transform 0.15s;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .btn-tilmeld:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
        }

        /* ========== TILMELD MODAL ========== */
        .tilmeld-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.5);
            z-index: 999;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .tilmeld-modal-overlay.open {
            display: flex;
        }
        .tilmeld-modal {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
            position: relative;
            animation: modalIn 0.2s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(-8px); }
            to   { opacity: 1; transform: scale(1) translateY(0); }
        }
        .tilmeld-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--gray);
            padding: 4px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.15s, color 0.15s;
            line-height: 1;
        }
        .tilmeld-modal-close:hover {
            background: var(--gray-light);
            color: var(--dark);
        }
        .tilmeld-modal h2 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-right: 1.5rem;
            line-height: 1.35;
        }
        .tilmeld-modal-buttons {
            display: flex;
            gap: 0.75rem;
            flex-direction: column;
        }
        .btn-tilmeld-choice {
            background: var(--green);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.9rem 1.5rem;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: background 0.15s, transform 0.15s;
            text-decoration: none;
        }
        .btn-tilmeld-choice:hover {
            background: #166534;
            transform: translateY(-1px);
            color: white;
        }
        @media (min-width: 480px) {
            .tilmeld-modal-buttons { flex-direction: row; }
            .btn-tilmeld-choice { flex: 1; }
        }
        /* Mobile menu: wrap buttons when screen is very narrow */
        @media (max-width: 420px) {
            .mobile-menu-actions { flex-wrap: wrap; }
            .mobile-menu-actions .btn-outline,
            .mobile-menu-actions .btn-primary { flex: 1 1 45%; text-align: center; justify-content: center; }
        }

        /* ========== SECTION HELPERS ========== */
        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray);
            margin-bottom: 0.75rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        /* ========== HERO ========== */
        .hero-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--blue-light);
            color: var(--blue);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.35rem 0.85rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }
        .hero-badge span {
            width: 6px;
            height: 6px;
            background: var(--blue);
            border-radius: 50%;
        }
        .hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 1.25rem;
        }
        .hero-sub {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 2rem;
        }
        .hero-ctas {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .hero-ctas .btn-primary {
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
        }
        .hero-ctas .btn-outline {
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
        }

        /* Hero CTA group: label + primary buttons row */
        .hero-cta-groups {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 0.75rem;
        }
        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: flex-start;
        }
        .hero-cta-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray);
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .hero-cta-primary-row {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .hero-cta-primary-row .btn-primary {
            font-size: 1rem;
            padding: 0.85rem 1.75rem;
            min-width: 160px;
            box-sizing: border-box;
            justify-content: center;
            text-align: center;
            white-space: nowrap;
        }
        /* Green buttons for "Privat" and "Erhverv" in first CTA group */
        .hero-cta-group:first-child .hero-cta-primary-row .btn-primary {
            background: var(--green);
            color: white;
        }
        .hero-cta-group:first-child .hero-cta-primary-row .btn-primary:hover {
            background: #166534;
            transform: translateY(-1px);
        }
        .hero-cta-secondary {
            margin-top: 0.25rem;
        }
        .hero-cta-secondary .btn-outline {
            font-size: 0.9rem;
            padding: 0.65rem 1.4rem;
            opacity: 0.85;
        }
        .hero-trust-line {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 0.75rem;
            margin-bottom: 0.25rem;
            font-size: 0.82rem;
            color: var(--gray);
            font-weight: 500;
        }
        .hero-trust-line span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            white-space: nowrap;
        }
        .hero-trust-line span::before {
            content: "✔";
            color: var(--green);
            font-size: 0.78rem;
            font-weight: 700;
        }

        /* Browser window mockup */
        .hero-visual {
            position: relative;
        }
        .browser-window {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.08);
        }
        .browser-bar {
            background: #f0f0f0;
            padding: 9px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            border-bottom: 1px solid rgba(0,0,0,0.07);
        }
        .browser-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .browser-dot-red   { background: #FF5F56; }
        .browser-dot-yellow{ background: #FFBD2E; }
        .browser-dot-green { background: #27C93F; }
        .hero-infographic {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ========== VIDEO ========== */
        .video-section {
            padding: 2.5rem 2rem 4rem;
            background: #fff;
        }
        .video-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }
        @media (max-width: 600px) {
            .video-section { padding: 2rem 1.25rem 3rem; }
        }

        /* ========== PROBLEM / BEHOV ========== */
        .problem-section {
            background: var(--gray-light);
            padding: 5rem 2rem;
        }
        .problem-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .problem-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .problem-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .problem-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .problem-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
        }
        .problem-icon-box {
            background: white;
            border-radius: 14px;
            padding: 1.75rem 1.25rem;
            border: 1px solid var(--gray-border);
            text-align: center;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .problem-icon-box:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.08);
            transform: translateY(-2px);
        }
        .problem-icon {
            width: 52px;
            height: 52px;
            background: var(--blue-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        .problem-icon-box h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-2);
        }
        .problem-body {
            background: white;
            border-radius: 14px;
            padding: 2rem 2.5rem;
            border: 1px solid var(--gray-border);
        }
        .problem-body p {
            font-size: 0.97rem;
            color: var(--gray);
            line-height: 1.8;
        }
        .problem-body p strong {
            color: var(--dark);
            font-weight: 600;
        }

        /* ========== HOW IT WORKS — 5 trin ========== */
        .how-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
            text-align: center;
        }
        .how-section h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .how-section .section-sub {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 3.5rem;
        }
        .how-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            text-align: left;
            position: relative;
        }
        /* Horizontal connector line between step circles */
        .how-steps::before {
            content: '';
            position: absolute;
            top: 27px;
            left: calc(10% + 28px);
            right: calc(10% + 28px);
            height: 2px;
            background: var(--gray-border);
            z-index: 0;
        }
        .how-step {
            position: relative;
            padding: 0 1rem;
            text-align: center;
            z-index: 1;
        }
        .how-step-num {
            width: 56px;
            height: 56px;
            background: var(--blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            margin: 0 auto 1.25rem;
            position: relative;
            z-index: 2;
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--blue);
        }
        .how-step h3 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.5rem;
        }
        .how-step p {
            font-size: 0.84rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Process tabs */
        .how-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2.75rem;
            flex-wrap: wrap;
        }
        .how-tab {
            padding: 0.6rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid var(--gray-border);
            background: white;
            color: var(--gray);
            transition: border-color 0.2s, color 0.2s, background 0.2s;
            font-family: inherit;
            line-height: 1.4;
        }
        .how-tab:hover {
            border-color: var(--blue);
            color: var(--blue);
        }
        .how-tab.active {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
        }
        .how-panel {
            display: none;
        }
        .how-panel.active {
            display: block;
        }
        .how-panel-label {
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--blue);
            margin-bottom: 1.75rem;
            opacity: 0.8;
        }

        /* ========== PLATFORMFUNKTIONER ========== */
        .features-section {
            background: var(--white);
            padding: 5rem 2rem;
        }
        .features-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .features-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .features-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.6rem;
        }
        .features-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .feature-card {
            background: white;
            border-radius: 14px;
            padding: 2rem;
            border: 1px solid var(--gray-border);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .feature-card:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.09);
            transform: translateY(-2px);
        }
        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--blue-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .feature-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.5rem;
        }
        .feature-card p {
            font-size: 0.875rem;
            color: var(--gray);
            line-height: 1.65;
        }

        /* ========== PRICING FREE BOX ========== */
        .pricing-free-box {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            background: var(--green-light);
            border: 1.5px solid #bbf7d0;
            border-radius: 16px;
            padding: 3rem 2.5rem;
        }
        .pricing-free-icon {
            width: 64px;
            height: 64px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 16px rgba(21,128,61,0.12);
        }
        .pricing-free-box h2 {
            font-size: clamp(1.3rem, 2.5vw, 1.75rem);
            font-weight: 800;
            color: #14532d;
            letter-spacing: -0.02em;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .pricing-free-box p {
            font-size: 1rem;
            color: #166534;
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto;
        }

        /* ========== PRICING TWO-BOX LAYOUT ========== */
        .pricing-two-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .pricing-model-box {
            border-radius: 16px;
            padding: 2rem 1.75rem;
            border: 1.5px solid;
        }
        .pricing-model-box--free {
            background: #f0fdf4;
            border-color: #bbf7d0;
        }
        .pricing-model-box--fl {
            background: #faf5ff;
            border-color: #e9d5ff;
        }
        .pricing-model-box-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .pricing-model-tag {
            display: inline-block;
            background: #dcfce7;
            color: #166534;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            padding: 0.3rem 0.75rem;
            border-radius: 100px;
        }
        .pricing-model-tag--purple {
            background: #ede9fe;
            color: #6d28d9;
        }
        .pricing-model-badge {
            display: inline-block;
            background: #15803d;
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.3rem 0.75rem;
            border-radius: 100px;
            white-space: nowrap;
        }
        .pricing-model-badge--fl {
            background: #7c3aed;
        }
        .pricing-model-badge--loading {
            background: #e5e7eb;
            color: #6b7280;
        }
        .pricing-model-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.55;
            margin-bottom: 0.5rem;
        }
        .pricing-model-explain {
            font-size: 0.875rem;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }
        .pricing-model-microcopy {
            font-size: 0.775rem;
            color: #7c3aed;
            font-style: italic;
            margin-top: 0.25rem;
        }
        @media (max-width: 640px) {
            .pricing-two-boxes { grid-template-columns: 1fr; }
        }

        /* ========== SEKTION 5: TRUST / KUNDEBESKYTTELSE ========== */
        .trust-section {
            background: var(--white);
            padding: 5rem 2rem;
        }
        .trust-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .trust-header {
            text-align: center;
            margin-bottom: 1rem;
        }
        .trust-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .trust-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 620px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }
        .trust-highlight-banner {
            background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 100%);
            color: white;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            text-align: center;
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 2.5rem;
            line-height: 1.3;
        }
        .trust-highlight-banner span {
            opacity: 0.8;
            font-size: 1rem;
            font-weight: 500;
            display: block;
            margin-top: 0.5rem;
            letter-spacing: 0;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
        }
        .trust-box {
            background: var(--white);
            border-radius: 14px;
            padding: 1.75rem 1.5rem;
            border: 1px solid var(--gray-border);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .trust-box:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.08);
            transform: translateY(-2px);
        }
        .trust-box-icon {
            width: 48px;
            height: 48px;
            background: var(--blue-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .trust-box h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.5rem;
        }
        .trust-box p {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.65;
        }
        .trust-footer-text {
            background: var(--blue-light);
            border: 1.5px solid #BFDBFE;
            border-radius: 14px;
            padding: 1.25rem 1.75rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .trust-footer-text .tft-icon {
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }
        .trust-footer-text p {
            font-size: 0.95rem;
            color: #1D4ED8;
            line-height: 1.65;
            font-weight: 500;
        }

        /* ========== PRICING SECTION — NY 2-KOLONNE LAYOUT ========== */
        .pricing-section {
            background: var(--gray-light);
            padding: 5rem 2rem;
        }
        .pricing-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .pricing-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .pricing-section-header .section-label {
            display: inline-block;
            background: var(--blue-light);
            color: var(--blue);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.35rem 0.85rem;
            border-radius: 100px;
            margin-bottom: 1rem;
        }
        .pricing-section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .pricing-section-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .pricing-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .pricing-text-col h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 1.5rem;
        }
        .pricing-points {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .pricing-point {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .pricing-point-icon {
            width: 40px;
            height: 40px;
            background: var(--blue-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pricing-point-text strong {
            display: block;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.25rem;
        }
        .pricing-point-text p {
            font-size: 0.875rem;
            color: var(--gray);
            line-height: 1.6;
        }
        .pricing-box-col .pricing-card {
            background: white;
            border: 1.5px solid var(--blue);
            border-radius: 16px;
            padding: 2rem 2rem 1.75rem;
            box-shadow: 0 8px 32px rgba(37,99,235,0.10);
        }
        .pricing-card-title {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray);
            margin-bottom: 1.25rem;
        }
        .pricing-rows {
            display: flex;
            flex-direction: column;
        }
        .pricing-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-border);
        }
        .pricing-row:last-child { border-bottom: none; }
        .pricing-row-label { font-size: 0.875rem; color: var(--gray); }
        .pricing-row-value { font-size: 1rem; font-weight: 700; color: var(--dark); }
        .pricing-summary-text {
            margin-top: 1.25rem;
            font-size: 0.9rem;
            color: var(--dark);
            line-height: 1.65;
            background: var(--blue-light);
            border: 1.5px solid #BFDBFE;
            border-radius: 12px;
            padding: 1rem 1.25rem;
        }
        .pricing-responsibility-box {
            margin-top: 1.25rem;
            background: var(--blue-light);
            border: 1.5px solid #BFDBFE;
            border-radius: 14px;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .pricing-responsibility-box .prb-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
        .pricing-responsibility-box .prb-text { font-size: 0.85rem; color: #1D4ED8; font-weight: 600; line-height: 1.55; }
        .pricing-fallback { color: var(--gray); font-size: 0.95rem; }
        .pricing-bottom-note {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
        }

        /* ========== FINAL CTA ========== */
        .cta-section {
            background: var(--white);
            padding: 6rem 2rem;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            max-width: 680px;
            margin: 0 auto 1.25rem;
            line-height: 1.15;
        }
        .cta-section p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 480px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }
        .cta-buttons .btn-primary { font-size: 1rem; padding: 0.85rem 1.75rem; }
        .cta-buttons .btn-white {
            background: transparent;
            color: var(--dark);
            font-size: 1rem;
            font-weight: 600;
            padding: 0.85rem 1.75rem;
            border-radius: 8px;
            border: 1.5px solid var(--gray-border);
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s;
        }
        .cta-buttons .btn-white:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: var(--blue-light);
        }
        .cta-groups {
            display: flex;
            flex-direction: row;
            gap: 3rem;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .cta-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        .cta-group + .cta-group {
            position: relative;
        }
        .cta-group + .cta-group::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--gray-border);
        }
        .cta-hero-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray);
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .cta-hero-primary-row {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-hero-primary-row .btn-primary {
            font-size: 1rem;
            padding: 0.85rem 1.75rem;
            min-width: 160px;
            box-sizing: border-box;
            justify-content: center;
            text-align: center;
            white-space: nowrap;
        }
        /* Green buttons for "Privat" and "Erhverv" in first CTA group */
        .cta-group:first-child .cta-hero-primary-row .btn-primary {
            background: var(--green);
            color: white;
        }
        .cta-group:first-child .cta-hero-primary-row .btn-primary:hover {
            background: #166534;
            transform: translateY(-1px);
        }
        @media (max-width: 600px) {
            .cta-groups { gap: 2rem; }
            .cta-group + .cta-group::before { display: none; }
            .cta-hero-primary-row { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
            .cta-hero-primary-row .btn-primary { width: 100%; text-align: center; justify-content: center; }
        }

        /* Footer styles loaded via /css/footer.css (injected by footer-loader.js) */

        /* ========== PROBLEM ICON BOX TEXT ========== */
        .problem-icon-box p {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.55;
            margin-top: 0.5rem;
        }
        .problem-section-cta {
            text-align: center;
            margin-top: 2rem;
        }
        .problem-section-cta .btn-primary {
            font-size: 0.95rem;
            padding: 0.75rem 1.75rem;
        }

        /* ========== SIMPLE HOW SECTION ========== */
        .simple-how-section {
            background: var(--gray-light);
            padding: 5rem 2rem;
            text-align: center;
        }
        .simple-how-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .simple-how-section h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .simple-how-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            text-align: left;
            position: relative;
            margin-top: 3rem;
            margin-bottom: 2.5rem;
        }
        .simple-how-steps::before {
            content: '';
            position: absolute;
            top: 27px;
            left: calc(16.6% + 28px);
            right: calc(16.6% + 28px);
            height: 2px;
            background: var(--gray-border);
            z-index: 0;
        }
        .simple-how-step {
            position: relative;
            padding: 0 1.5rem;
            text-align: center;
            z-index: 1;
        }
        .simple-how-step-num {
            width: 56px;
            height: 56px;
            background: var(--blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            margin: 0 auto 1.25rem;
            position: relative;
            z-index: 2;
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--blue);
        }
        .simple-how-step h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.5rem;
        }
        .simple-how-step p {
            font-size: 0.87rem;
            color: var(--gray);
            line-height: 1.6;
        }
        .simple-how-note {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 2.25rem;
            line-height: 1.6;
        }
        .simple-how-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        .simple-how-cta-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray);
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .simple-how-cta-row {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .simple-how-cta-row .btn-primary {
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
        }

        /* ========== DIFFERENTIERING SECTION ========== */
        .diff-section {
            background: var(--white);
            padding: 5rem 2rem;
        }
        .diff-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .diff-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .diff-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .diff-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
        }
        .diff-card {
            background: white;
            border-radius: 14px;
            padding: 1.75rem 1.5rem;
            border: 1px solid var(--gray-border);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .diff-card:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.08);
            transform: translateY(-2px);
        }
        .diff-card-icon {
            width: 48px;
            height: 48px;
            background: var(--blue-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .diff-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.5rem;
        }
        .diff-card p {
            font-size: 0.87rem;
            color: var(--gray);
            line-height: 1.6;
        }
        .diff-footer-text {
            text-align: center;
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.65;
            max-width: 560px;
            margin: 0 auto;
        }

        /* ========== COMPARE SECTION: SERVONA VS TRADITIONELLE ========== */
        .compare-section {
            background: var(--gray-light);
            padding: 5rem 2rem;
        }
        .compare-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .compare-inner > h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 3rem;
        }
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            text-align: left;
        }
        .compare-col {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
        }
        .compare-col-servona {
            border: 2px solid var(--blue);
            box-shadow: 0 4px 24px rgba(37,99,235,0.12);
        }
        .compare-col-other {
            border: 2px solid var(--gray-border);
        }
        .compare-col-header {
            padding: 1.25rem 1.75rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .compare-col-servona .compare-col-header {
            background: var(--blue);
            border-bottom: none;
        }
        .compare-col-other .compare-col-header {
            background: #f1f5f9;
        }
        .compare-col-label {
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.01em;
            display: block;
        }
        .compare-col-label.servona { color: white; }
        .compare-col-label.other-label { color: #64748b; }
        .compare-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .compare-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.95rem 1.75rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--dark);
            border-bottom: 1px solid var(--gray-border);
        }
        .compare-list li:last-child { border-bottom: none; }
        .compare-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
            margin-top: 0.15rem;
        }
        .compare-icon.check { background: #dcfce7; color: #16a34a; }
        .compare-icon.cross { background: #fee2e2; color: #dc2626; }
        .compare-summary {
            margin-top: 2.25rem;
            font-size: 1rem;
            color: var(--dark);
            font-weight: 600;
            text-align: center;
            line-height: 1.6;
        }

        /* ========== HERO CAROUSEL ========== */
        .hero-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 0;
        }
        .hero-carousel-slide {
            width: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }
        .hero-carousel-slide:not(.active) {
            position: absolute;
            top: 0;
            left: 0;
        }
        .hero-carousel-slide.active {
            position: relative;
            opacity: 1;
            pointer-events: auto;
        }
        .hero-carousel-slide img {
            width: 100%;
            height: auto;
            display: block;
        }
        .hero-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            padding: 10px 0 6px;
            background: #f8f8f8;
        }
        .hero-carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #cbd5e1;
            transition: background 0.3s;
        }
        .hero-carousel-dot.active {
            background: var(--blue);
        }

        /* ========== MODEL CHOICE SECTION ========== */
        .model-section {
            background: var(--white);
            padding: 5rem 2rem;
        }
        .model-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .model-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .model-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .model-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .model-card {
            background: white;
            border-radius: 16px;
            padding: 2rem 2rem 2rem;
            border: 1.5px solid var(--gray-border);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .model-card:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.09);
            transform: translateY(-2px);
        }
        .model-card-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            padding: 0.3rem 0.75rem;
            border-radius: 100px;
            margin-bottom: 1rem;
            background: var(--blue-light);
            color: var(--blue);
        }
        .model-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .model-card p {
            font-size: 0.93rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }
        .model-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .model-card ul li {
            font-size: 0.88rem;
            color: var(--dark);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .model-card ul li::before {
            content: "✔";
            color: var(--green);
            font-size: 0.78rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ========== FAST LEVERANCE SECTION ========== */
        .fast-lev-section {
            background: var(--gray-light);
            padding: 5rem 2rem;
        }
        .fast-lev-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .fast-lev-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .fast-lev-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark-2);
            margin-bottom: 0.75rem;
        }
        .fast-lev-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .fast-lev-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .fast-lev-card {
            background: white;
            border-radius: 14px;
            padding: 2rem;
            border: 1px solid var(--gray-border);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .fast-lev-card:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.09);
            transform: translateY(-2px);
        }
        .fast-lev-card-icon {
            width: 48px;
            height: 48px;
            background: var(--blue-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .fast-lev-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-2);
            margin-bottom: 0.5rem;
        }
        .fast-lev-card p {
            font-size: 0.875rem;
            color: var(--gray);
            line-height: 1.65;
        }
        .fast-lev-footer {
            margin-top: 2.5rem;
            text-align: center;
            font-size: 0.97rem;
            color: var(--gray);
            line-height: 1.7;
        }

        /* ========== HOW SECTION TABS ========== */
        .simple-how-section .simple-how-sub {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.65;
        }
        .simple-how-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .simple-how-tab {
            padding: 0.6rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid var(--gray-border);
            background: white;
            color: var(--gray);
            transition: border-color 0.2s, color 0.2s, background 0.2s;
            font-family: inherit;
            line-height: 1.4;
        }
        .simple-how-tab:hover {
            border-color: var(--blue);
            color: var(--blue);
        }
        .simple-how-tab.active {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
        }
        .simple-how-panel {
            display: none;
        }
        .simple-how-panel.active {
            display: block;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1100px) {
            .how-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
            .how-steps::before { display: none; }
        }
        @media (max-width: 900px) {
            .hero-section { grid-template-columns: 1fr; padding: 3rem 1.25rem 2.5rem; gap: 2.5rem; }
            .problem-icons { grid-template-columns: repeat(2, 1fr); }
            .how-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .simple-how-steps { grid-template-columns: 1fr; gap: 2rem; }
            .simple-how-steps::before { display: none; }
            .diff-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-split { grid-template-columns: 1fr; gap: 2rem; }
            .nav-links { display: none; }
            .burger-btn { display: flex; }
            .mobile-menu { display: block; }
            .model-grid { grid-template-columns: 1fr; }
            .fast-lev-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            nav { padding: 0 1.25rem; }
            .problem-icons { grid-template-columns: 1fr 1fr; }
            .how-steps { grid-template-columns: 1fr; }
            .simple-how-steps { grid-template-columns: 1fr; }
            .diff-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: 1fr 1fr; }
            .problem-section, .how-section, .simple-how-section, .diff-section, .features-section, .model-section, .fast-lev-section { padding: 3.5rem 1.25rem; }
            .problem-body { padding: 1.5rem; }
            .cta-section { padding: 3.5rem 1.25rem; }
            .compare-section { padding: 3.5rem 1.25rem; }
            .compare-grid { grid-template-columns: 1fr; }
            .hero-cta-primary-row { flex-direction: column; width: 100%; }
            .hero-cta-primary-row .btn-primary { width: 100%; text-align: center; justify-content: center; }
            .hero-cta-secondary .btn-outline { width: 100%; text-align: center; justify-content: center; }
            .hero-trust-line { flex-direction: column; gap: 0.4rem; }
            .simple-how-cta-row { flex-direction: column; width: 100%; }
            .simple-how-cta-row .btn-primary { width: 100%; text-align: center; justify-content: center; }
            .fast-lev-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .trust-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .pricing-section { padding: 3.5rem 1.25rem; }
            .pricing-card { padding: 1.5rem 1.25rem; }
            .pricing-summary-text { padding: 1rem 1.25rem; }
            .pricing-responsibility-box { padding: 1rem 1.25rem; }
            .trust-section { padding: 3.5rem 1.25rem; }
        }
