/* === StatementBridge Marketing — Fiduro Huisstijl === */
/* Matches the fiduro.nl visual identity: bold uppercase headings, */
/* orange accent bars, dark hero sections, clean white navigation */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand tokens — identical to fiduro.nl and the app */
    --mkt-blue: #03326c;
    --mkt-blue-light: #0a4a8f;
    --mkt-blue-dark: #021d40;
    --mkt-orange: #e94e1b;
    --mkt-orange-hover: #f26a3d;
    --mkt-accent: #2ea3f2;
    --mkt-success: #16a34a;

    /* Surfaces */
    --mkt-bg: #f4f6fa;
    --mkt-bg-alt: #eef1f7;
    --mkt-surface: #ffffff;
    --mkt-text: #021d40;
    --mkt-text-muted: #64748b;
    --mkt-text-secondary: #475569;
    --mkt-border: #dce1ee;

    /* Shared layout */
    --mkt-radius: 8px;
    --mkt-radius-lg: 12px;
    --mkt-shadow: 0 1px 3px rgba(2, 29, 64, 0.06), 0 1px 2px rgba(2, 29, 64, 0.04);
    --mkt-shadow-md: 0 4px 12px rgba(2, 29, 64, 0.08);
    --mkt-shadow-lg: 0 8px 24px rgba(2, 29, 64, 0.12);
    --mkt-max-width: 1180px;
    --mkt-font: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--mkt-font);
    color: var(--mkt-text);
    background: var(--mkt-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--mkt-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--mkt-blue);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   NAVIGATION — Clean white bar, matches fiduro.nl header
   ===================================================== */
.mkt-nav {
    background: var(--mkt-surface);
    border-bottom: 1px solid var(--mkt-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mkt-nav-inner {
    max-width: var(--mkt-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.mkt-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.mkt-nav-brand:hover {
    text-decoration: none;
}

.mkt-nav-brand img {
    height: 32px;
    width: auto;
}

.mkt-nav-brand span {
    color: var(--mkt-blue);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.mkt-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 0.4rem;
    cursor: pointer;
    color: var(--mkt-text);
}

.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

/* Nav links — match fiduro.nl: blue text, orange for active */
.mkt-nav-links a {
    color: var(--mkt-blue);
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.mkt-nav-links a:hover {
    color: var(--mkt-orange);
    text-decoration: none;
}

/* =====================================================
   BUTTONS — Orange CTA (uppercase, bold), fiduro.nl style
   ===================================================== */
.mkt-btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: var(--mkt-radius);
    font-family: var(--mkt-font);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.mkt-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--mkt-shadow-md);
}

.mkt-btn-primary {
    background: var(--mkt-orange);
    color: #fff;
    border-color: var(--mkt-orange);
}

.mkt-btn-primary:hover {
    background: var(--mkt-orange-hover);
    border-color: var(--mkt-orange-hover);
    color: #fff;
}

.mkt-btn-secondary {
    background: var(--mkt-surface);
    color: var(--mkt-blue);
    border-color: var(--mkt-blue);
}

.mkt-btn-secondary:hover {
    background: var(--mkt-blue);
    color: #fff;
}

.mkt-btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
}

.mkt-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.93rem;
}

/* =====================================================
   CONTAINER
   ===================================================== */
.mkt-container {
    max-width: var(--mkt-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================================================
   HERO — Dark background with orange L-shaped accent bar
   Matches fiduro.nl hero: dark bg, big bold uppercase text,
   orange vertical+bottom accent, italic subtitle
   ===================================================== */
.mkt-hero {
    background: var(--mkt-blue-dark);
    color: #fff;
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

/* Dark blue gradient overlay for depth */
.mkt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 29, 64, 0.95) 0%, rgba(3, 50, 108, 0.85) 50%, rgba(10, 74, 143, 0.8) 100%);
    z-index: 1;
}

/* Subtle FIDURO watermark text (like fiduro.nl) */
.mkt-hero-watermark {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
}

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

/* Orange L-shaped accent bar (vertical left + bottom) */
.mkt-hero-content {
    position: relative;
    padding-left: 2rem;
    max-width: 800px;
}

.mkt-hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--mkt-orange);
}

.mkt-hero-content::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 4px;
    background: var(--mkt-orange);
}

.mkt-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

/* Italic subtitle like fiduro.nl */
.mkt-hero-sub {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 2.2rem;
    line-height: 1.7;
    max-width: 600px;
}

.mkt-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

.mkt-hero-cta .mkt-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.mkt-hero-cta .mkt-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Small hero for sub-pages */
.mkt-hero-sm {
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.mkt-hero-sm .mkt-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0;
}

.mkt-hero-sm .mkt-hero-content::before,
.mkt-hero-sm .mkt-hero-content::after {
    display: none;
}

.mkt-hero-sm h1 {
    font-size: 2rem;
}

.mkt-hero-sm .mkt-hero-sub {
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.mkt-section {
    padding: 4.5rem 0;
}

.mkt-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--mkt-blue);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Orange underline accent for section headings */
.mkt-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--mkt-orange);
    margin: 0.6rem auto 0;
}

.mkt-section-intro {
    text-align: center;
    color: var(--mkt-text-muted);
    max-width: 620px;
    margin: 1rem auto 2.2rem;
    font-size: 1rem;
}

.mkt-section-alt {
    background: var(--mkt-bg-alt);
}

/* CTA section — dark blue like hero */
.mkt-section-cta {
    background: var(--mkt-blue-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mkt-section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 29, 64, 0.95) 0%, rgba(3, 50, 108, 0.85) 50%, rgba(10, 74, 143, 0.8) 100%);
    z-index: 1;
}

.mkt-section-cta .mkt-container {
    position: relative;
    z-index: 2;
}

.mkt-section-cta h2 {
    color: #fff;
}

.mkt-section-cta h2::after {
    background: var(--mkt-orange);
}

.mkt-section-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* =====================================================
   GRID
   ===================================================== */
.mkt-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mkt-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mkt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* =====================================================
   CARDS — Orange left border accent (like fiduro.nl style)
   ===================================================== */
.mkt-card {
    background: var(--mkt-surface);
    border: 1px solid var(--mkt-border);
    border-left: 4px solid var(--mkt-orange);
    border-radius: var(--mkt-radius-lg);
    padding: 1.8rem;
    box-shadow: var(--mkt-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mkt-card:hover {
    box-shadow: var(--mkt-shadow-lg);
    transform: translateY(-3px);
}

.mkt-card-icon {
    color: var(--mkt-orange);
    margin-bottom: 0.8rem;
}

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

.mkt-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--mkt-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mkt-card p {
    color: var(--mkt-text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* =====================================================
   STEPS
   ===================================================== */
.mkt-steps {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
}

.mkt-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--mkt-border);
}

.mkt-steps li:last-child {
    border-bottom: none;
}

.mkt-step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--mkt-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(233, 78, 27, 0.3);
}

.mkt-steps strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--mkt-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mkt-steps p {
    color: var(--mkt-text-muted);
    font-size: 0.93rem;
}

/* =====================================================
   STATS
   ===================================================== */
.mkt-stat {
    text-align: center;
    padding: 2rem 1rem;
}

.mkt-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--mkt-orange);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.mkt-stat-label {
    display: block;
    color: var(--mkt-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =====================================================
   CTA CENTER
   ===================================================== */
.mkt-cta-center {
    text-align: center;
    margin-top: 2.5rem;
}

/* =====================================================
   HERO ROUTE CARDS
   ===================================================== */
.mkt-hero-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.mkt-hero-card {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 4px solid var(--mkt-orange);
    border-radius: var(--mkt-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.mkt-hero-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mkt-hero-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--mkt-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mkt-hero-card-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.mkt-hero-card-body p {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.mkt-hero-card-body .mkt-btn {
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
}

@media (max-width: 768px) {
    .mkt-hero-routes {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   PRICING
   ===================================================== */
.mkt-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.mkt-pricing-card {
    background: var(--mkt-surface);
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.mkt-pricing-featured {
    border-color: var(--mkt-orange);
    border-width: 2px;
    box-shadow: 0 4px 20px rgba(233, 78, 27, 0.15);
}

.mkt-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mkt-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.mkt-pricing-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mkt-blue);
    margin-bottom: 0.5rem;
}

.mkt-pricing-header h3::after {
    display: none;
}

.mkt-pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--mkt-text);
    line-height: 1;
}

.mkt-pricing-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
}

.mkt-pricing-period {
    display: block;
    font-size: 0.82rem;
    color: var(--mkt-text-muted);
    margin-bottom: 1.5rem;
}

.mkt-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.mkt-pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--mkt-text);
    padding-left: 1.5rem;
    position: relative;
}

.mkt-pricing-features li.included::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--mkt-success);
    font-weight: 700;
}

.mkt-pricing-features li.excluded {
    color: var(--mkt-text-muted);
}

.mkt-pricing-features li.excluded::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--mkt-text-muted);
}

.mkt-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .mkt-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* =====================================================
   CONTENT PAGES (MT940, CAMT053, CSV, etc.)
   ===================================================== */
.mkt-content {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.mkt-content h2 {
    text-align: left;
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.mkt-content h2::after {
    margin: 0.5rem 0 0;
}

.mkt-content h2:first-child {
    margin-top: 0;
}

.mkt-content p {
    margin-bottom: 1rem;
    color: var(--mkt-text);
    font-size: 0.97rem;
}

.mkt-content ul, .mkt-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.mkt-content li {
    margin-bottom: 0.5rem;
    color: var(--mkt-text);
    font-size: 0.95rem;
    line-height: 1.65;
}

.mkt-content code {
    background: var(--mkt-bg-alt);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.88em;
    color: var(--mkt-orange);
    font-weight: 600;
}

/* =====================================================
   FAQ
   ===================================================== */
.mkt-faq-item {
    border: 1px solid var(--mkt-border);
    border-left: 4px solid var(--mkt-orange);
    border-radius: var(--mkt-radius);
    margin-bottom: 0.75rem;
    background: var(--mkt-surface);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.mkt-faq-item:hover {
    box-shadow: var(--mkt-shadow);
}

.mkt-faq-item summary {
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.97rem;
    color: var(--mkt-blue);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.mkt-faq-item summary:hover {
    background: var(--mkt-bg);
}

.mkt-faq-item summary::-webkit-details-marker {
    display: none;
}

.mkt-faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mkt-orange);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.mkt-faq-item[open] summary::after {
    content: "\2212";
}

.mkt-faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--mkt-text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* =====================================================
   FOOTER — Dark blue, matches fiduro.nl style
   ===================================================== */
.mkt-footer {
    background: var(--mkt-blue-dark);
    color: rgba(255,255,255,0.85);
    padding: 3.5rem 0 1.5rem;
}

.mkt-footer-inner {
    max-width: var(--mkt-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.mkt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.mkt-footer-col h4 {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mkt-footer-col p {
    font-size: 0.9rem;
    line-height: 1.65;
}

.mkt-footer-col ul {
    list-style: none;
}

.mkt-footer-col li {
    margin-bottom: 0.45rem;
}

.mkt-footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.mkt-footer-col a:hover {
    color: var(--mkt-orange);
    text-decoration: none;
}

/* Footer brand block with logo */
.mkt-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.mkt-footer-brand img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mkt-footer-brand span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.mkt-footer-fiduro {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.6rem;
}

.mkt-footer-fiduro a {
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.mkt-footer-fiduro a:hover {
    color: var(--mkt-orange);
}

.mkt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mkt-footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.5;
}

.mkt-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.mkt-footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.mkt-footer-bottom-links a:hover {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .mkt-nav-toggle {
        display: block;
    }

    .mkt-nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--mkt-surface);
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 2px solid var(--mkt-border);
        box-shadow: var(--mkt-shadow-lg);
        gap: 0.75rem;
    }

    .mkt-nav-links.open {
        display: flex;
    }

    .mkt-hero {
        padding: 3rem 0 2.5rem;
    }

    .mkt-hero h1 {
        font-size: 1.6rem;
    }

    .mkt-hero-sub {
        font-size: 0.95rem;
    }

    .mkt-hero-watermark {
        display: none;
    }

    .mkt-hero-content {
        padding-left: 1.2rem;
    }

    .mkt-hero-content::after {
        width: 80%;
    }

    .mkt-hero-sm .mkt-hero-content {
        padding-left: 0;
    }

    .mkt-section {
        padding: 2.5rem 0;
    }

    .mkt-section h2 {
        font-size: 1.25rem;
    }

    .mkt-grid-2,
    .mkt-grid-3 {
        grid-template-columns: 1fr;
    }

    .mkt-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mkt-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .mkt-btn-lg {
        width: 100%;
        max-width: 320px;
    }

    .mkt-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mkt-container {
        padding: 0 1.25rem;
    }

    .mkt-footer-inner {
        padding: 0 1.25rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mkt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mkt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mkt-hero h1 {
        font-size: 2.2rem;
    }
}
