/* ===================================
   FOR:LEDGER MARKETING WEBSITE CSS
   Tailwind CDN handles utilities. This file
   provides custom component styles, animations,
   and overrides for the marketing pages only.
   =================================== */

/* --- Color Tokens (from app palette) --- */
:root {
    --mk-gold: rgb(244, 197, 66);
    --mk-orange-mid: rgb(230, 138, 46);
    --mk-orange: rgb(225, 85, 0);
    --mk-dark: rgb(89, 89, 90);
    --mk-warm-grey: rgb(168, 158, 148);
    --mk-near-black: rgb(36, 31, 29);
    --mk-light-grey: rgb(216, 215, 212);
    --mk-off-white: rgb(241, 241, 238);
    --mk-mid-grey: rgb(185, 184, 182);
}

/* --- Font Setup --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.mk-site {
    font-family: 'Inter', 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--mk-off-white);
    background-color: var(--mk-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mk-site * {
    box-sizing: border-box;
}

/* Reset overrides from old template */
.mk-site h1, .mk-site h2, .mk-site h3, .mk-site h4, .mk-site h5, .mk-site h6 {
    font-family: 'Inter', 'Instrument Sans', sans-serif;
    color: var(--mk-off-white);
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

.mk-site p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--mk-mid-grey);
    margin: 0;
    padding: 0;
}

.mk-site a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mk-site ul, .mk-site ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mk-site section {
    margin-bottom: 0;
}

/* --- Gradient Accent --- */
.mk-gradient-text {
    background: linear-gradient(135deg, var(--mk-gold) 0%, var(--mk-orange-mid) 50%, var(--mk-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mk-gradient-bg {
    background: linear-gradient(135deg, var(--mk-orange) 0%, var(--mk-orange-mid) 50%, var(--mk-gold) 100%);
}

.mk-gradient-bg-subtle {
    background: linear-gradient(135deg, rgba(225, 85, 0, 0.08) 0%, rgba(244, 197, 66, 0.05) 100%);
}

/* --- Buttons --- */
.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
}

.mk-btn-primary {
    background: linear-gradient(135deg, var(--mk-orange) 0%, var(--mk-orange-mid) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 85, 0, 0.3);
}
.mk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 85, 0, 0.45);
    color: white;
}

.mk-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--mk-off-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.mk-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.mk-btn-outline {
    background: transparent;
    color: var(--mk-off-white);
    border: 1.5px solid var(--mk-orange);
}
.mk-btn-outline:hover {
    background: var(--mk-orange);
    color: white;
    transform: translateY(-2px);
}

/* --- Cards --- */
.mk-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}
.mk-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(225, 85, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mk-card-accent {
    background: linear-gradient(145deg, rgba(225, 85, 0, 0.06) 0%, rgba(244, 197, 66, 0.03) 100%);
    border: 1px solid rgba(225, 85, 0, 0.15);
}

/* --- Sections --- */
.mk-section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .mk-section {
        padding: 3.5rem 0;
    }
}

.mk-section-alt {
    background: rgba(0, 0, 0, 0.15);
}

.mk-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1536px) {
    .mk-container {
        max-width: 1400px;
    }
}

/* --- Section Headers --- */
.mk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 85, 0, 0.12);
    color: var(--mk-gold);
    border: 1px solid rgba(225, 85, 0, 0.2);
}

/* --- Pricing Toggle --- */
.mk-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.mk-toggle-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mk-mid-grey);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: transparent;
}

.mk-toggle-btn.active {
    background: linear-gradient(135deg, var(--mk-orange) 0%, var(--mk-orange-mid) 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(225, 85, 0, 0.3);
}

/* --- Pricing Card --- */
.mk-pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.mk-pricing-card:hover {
    border-color: rgba(225, 85, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mk-pricing-card.popular {
    background: linear-gradient(145deg, rgba(225, 85, 0, 0.1) 0%, rgba(244, 197, 66, 0.05) 100%);
    border: 2px solid rgba(225, 85, 0, 0.4);
}

.mk-pricing-card .mk-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--mk-off-white);
    line-height: 1;
}

.mk-pricing-card .mk-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--mk-mid-grey);
}

/* Feature list in pricing */
.mk-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--mk-mid-grey);
}

.mk-feature-list li svg,
.mk-feature-list li .mk-check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--mk-orange);
    margin-top: 0.15rem;
}

.mk-feature-list li.disabled {
    opacity: 0.35;
}

/* --- FAQ Accordion --- */
.mk-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--mk-off-white);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.mk-accordion-btn:hover {
    color: var(--mk-gold);
}

.mk-accordion-btn .mk-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--mk-orange);
}

.mk-accordion-btn[aria-expanded="true"] .mk-icon {
    transform: rotate(45deg);
}

.mk-accordion-body {
    padding-bottom: 1.5rem;
    color: var(--mk-mid-grey);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Header / Navigation --- */
.mk-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    background: rgba(36, 31, 29, 0.85);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.mk-header.scrolled {
    background: rgba(36, 31, 29, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.mk-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(241, 241, 238, 0.7);
    transition: color 0.2s;
    padding: 0.5rem 0;
    position: relative;
}

.mk-nav-link:hover, .mk-nav-link.active {
    color: var(--mk-off-white);
}

.mk-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mk-orange);
    transition: width 0.3s;
}

.mk-nav-link:hover::after {
    width: 100%;
}

/* --- Mobile Menu --- */
.mk-mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(36, 31, 29, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-mobile-menu.open {
    transform: translateX(0);
}

.mk-mobile-link {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--mk-off-white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
}

.mk-mobile-link:hover {
    color: var(--mk-gold);
}

.mk-mobile-sublink {
    font-size: 1rem;
    font-weight: 500;
    color: var(--mk-warm-grey);
    padding: 0.5rem 0;
    display: block;
}

.mk-mobile-sublink:hover {
    color: var(--mk-gold);
}

/* --- Hero --- */
.mk-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.mk-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 85, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.mk-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.mk-hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* Sub-page hero (features, countries, etc.) */
.mk-hero-sub {
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.mk-hero-sub::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 85, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Preloader (shared with app, must keep working) --- */
.mk-preloader {
    position: fixed;
    inset: 0;
    background: var(--mk-near-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.4s, visibility 0.4s;
}

.mk-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mk-preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(225, 85, 0, 0.2);
    border-top-color: var(--mk-orange);
    border-radius: 50%;
    animation: mk-spin 0.8s linear infinite;
}

@keyframes mk-spin {
    to { transform: rotate(360deg); }
}

/* --- Tags / Badges --- */
.mk-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.mk-tag-vat { background: rgba(34, 197, 94, 0.12); color: rgb(134, 239, 172); }
.mk-tag-einv { background: rgba(59, 130, 246, 0.12); color: rgb(147, 197, 253); }
.mk-tag-intra { background: rgba(249, 115, 22, 0.12); color: rgb(253, 186, 116); }
.mk-tag-sepa { background: rgba(168, 85, 247, 0.12); color: rgb(196, 181, 253); }
.mk-tag-ai { background: rgba(225, 85, 0, 0.15); color: var(--mk-gold); }
.mk-tag-auto { background: rgba(6, 182, 212, 0.12); color: rgb(103, 232, 249); }

/* --- Product Cards --- */
.mk-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mk-product-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(225, 85, 0, 0.2);
    transform: translateY(-2px);
}

.mk-product-logo {
    height: 28px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* --- Country Cards --- */
.mk-country-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.75rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.mk-country-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(225, 85, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: var(--mk-off-white);
}

.mk-country-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* --- Stat Counter --- */
.mk-stat {
    text-align: center;
    padding: 1.5rem;
}

.mk-stat-number {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--mk-gold) 0%, var(--mk-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mk-stat-label {
    font-size: 0.8rem;
    color: var(--mk-mid-grey);
    margin-top: 0.5rem;
}

/* --- Scroll Animations --- */
.mk-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mk-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.mk-fade-in-delay-1 { transition-delay: 0.1s; }
.mk-fade-in-delay-2 { transition-delay: 0.2s; }
.mk-fade-in-delay-3 { transition-delay: 0.3s; }
.mk-fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Footer --- */
.mk-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-footer a:hover {
    color: var(--mk-gold);
}

/* --- Divider --- */
.mk-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* --- Scrollbar for mk-site --- */
.mk-site::-webkit-scrollbar {
    width: 6px;
}
.mk-site::-webkit-scrollbar-track {
    background: var(--mk-near-black);
}
.mk-site::-webkit-scrollbar-thumb {
    background: var(--mk-warm-grey);
    border-radius: 3px;
}

/* --- Reduce old template interference inside mk-site (without destructive resets) --- */
.mk-site .hero-area,
.mk-site .features-area,
.mk-site .pricing-area,
.mk-site .faq-area,
.mk-site .cta-area,
.mk-site .footer-area,
.mk-site .brand-area,
.mk-site .countries-section {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* --- Responsive helpers --- */
@media (max-width: 768px) {
    .mk-hero-title {
        font-size: 2.25rem;
    }
    .mk-pricing-card .mk-price {
        font-size: 2.5rem;
    }
    .mk-stat-number {
        font-size: 2rem;
    }
}

/* Lang dropdown */
.mk-lang-dropdown {
    position: relative;
}

.mk-lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(36, 31, 29, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    min-width: 140px;
    z-index: 100;
}

.mk-lang-dropdown:hover .mk-lang-dropdown-menu,
.mk-lang-dropdown-menu.show {
    display: block;
}

.mk-lang-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--mk-mid-grey);
    transition: all 0.2s;
}

.mk-lang-dropdown-menu a:hover {
    color: var(--mk-off-white);
    background: rgba(255, 255, 255, 0.05);
}

/* Fallback if Tailwind isn't loaded for any reason */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Navigation Dropdown (Solutions/Products) --- */
.mk-nav-dropdown {
    position: relative;
}

.mk-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.75rem;
    background: rgba(36, 31, 29, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    min-width: 280px;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mk-nav-dropdown:hover .mk-nav-dropdown-menu {
    display: block;
}

.mk-nav-dropdown-menu a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: var(--mk-mid-grey);
    transition: all 0.2s;
    line-height: 1.4;
}

.mk-nav-dropdown-menu a:hover {
    color: var(--mk-off-white);
    background: rgba(255, 255, 255, 0.06);
}

.mk-nav-dropdown-menu .mk-dd-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.mk-nav-dropdown-menu .mk-dd-title {
    font-weight: 600;
    color: var(--mk-off-white);
    display: block;
    font-size: 0.88rem;
}

.mk-nav-dropdown-menu .mk-dd-desc {
    font-size: 0.78rem;
    color: var(--mk-warm-grey);
    margin-top: 0.15rem;
    display: block;
}

.mk-nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.4rem 0;
}

/* --- Feature page styles --- */
.mk-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.mk-feature-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.mk-feature-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(225, 85, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.mk-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, rgba(225, 85, 0, 0.15) 0%, rgba(244, 197, 66, 0.1) 100%);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* --- Process / How-it-works steps --- */
.mk-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mk-step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-orange) 0%, var(--mk-orange-mid) 100%);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Comparison table --- */
.mk-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-comparison-table th {
    background: rgba(225, 85, 0, 0.1);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--mk-off-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-comparison-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--mk-mid-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mk-comparison-table tr:last-child td {
    border-bottom: none;
}

.mk-comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* --- Testimonial / Quote block --- */
.mk-quote-block {
    background: linear-gradient(145deg, rgba(225, 85, 0, 0.06) 0%, rgba(244, 197, 66, 0.03) 100%);
    border: 1px solid rgba(225, 85, 0, 0.12);
    border-radius: 1.25rem;
    padding: 2.5rem;
    position: relative;
}

.mk-quote-block::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(225, 85, 0, 0.15);
    line-height: 1;
}

/* --- Inline CTA banner --- */
.mk-inline-cta {
    background: linear-gradient(135deg, rgba(225, 85, 0, 0.12) 0%, rgba(244, 197, 66, 0.06) 100%);
    border: 1px solid rgba(225, 85, 0, 0.2);
    border-radius: 1.25rem;
    padding: 3rem;
    text-align: center;
}

/* --- Anchor offset for fixed header --- */
.mk-site [id] {
    scroll-margin-top: 5rem;
}
