/* ZebraMap Theme – Main CSS v1.1.0 */

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

:root {
    --zm-bg-start: #fdfaf3;
    --zm-bg-end: #f7e8c3;
    --zm-white-60: rgba(255,255,255,0.6);
    --zm-white-90: rgba(255,255,255,0.9);
    --zm-amber-50: #fffbeb;
    --zm-amber-100: #fef3c7;
    --zm-amber-400: #fbbf24;
    --zm-amber-500: #f59e0b;
    --zm-amber-600: #d97706;
    --zm-amber-800: #92400e;
    --zm-stone-200: #e7e5e4;
    --zm-stone-300: #d6d3d0;
    --zm-stone-400: #a8a29e;
    --zm-stone-500: #78716c;
    --zm-stone-600: #57534e;
    --zm-stone-700: #44403c;
    --zm-stone-900: #1c1917;
    --zm-orange: #e8720c;
    --zm-orange-dark: #b85608;
    --zm-radius: 1rem;
    --zm-radius-xl: 2.5rem;
    --zm-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    --zm-shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
    background: linear-gradient(135deg, var(--zm-bg-start) 0%, var(--zm-bg-end) 100%) no-repeat !important;
    background-size: cover !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--zm-stone-700);
    line-height: 1.6;
    min-height: 100vh;
    background: transparent !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Crosshair cursor auf Startseite */
body.zebramap-front {
    cursor: crosshair;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--zm-amber-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--zm-orange); }

/* ========== DECORATIVE BACKGROUND BLOBS ========== */
.zm-bg-decoration {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    opacity: 0.1;
}
.zm-blob {
    position: absolute;
    fill: var(--zm-amber-400);
}
.zm-blob-right {
    top: -5rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
}
.zm-blob-left {
    bottom: -8rem;
    left: -8rem;
    width: 28rem;
    height: 28rem;
}

/* ========== HEADER / NAV ========== */
.zm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253,250,243,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: box-shadow 0.3s;
}
.zm-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.zm-header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zm-stone-900);
    text-decoration: none;
}
.zm-header-logo:hover { color: var(--zm-stone-900); }
.zm-header-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.zm-nav { display: flex; gap: 2rem; align-items: center; }
.zm-nav ul { display: contents; list-style: none; margin: 0; padding: 0; }
.zm-nav li { display: contents; }
.zm-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--zm-stone-600);
    transition: color 0.2s;
}
.zm-nav a:hover { color: var(--zm-stone-900); }
.zm-nav-cta {
    background: var(--zm-amber-500) !important;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 2px 8px rgba(245,158,11,0.3);
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.zm-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245,158,11,0.4) !important;
    color: white !important;
}

/* Mobile nav toggle */
.zm-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.zm-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zm-stone-700);
    margin: 6px auto;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .zm-nav { display: none; }
    .zm-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253,250,243,0.98);
        backdrop-filter: blur(12px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--zm-stone-200);
    }
    .zm-nav-toggle { display: block; }
}

/* ========== HERO SECTION (Coming Soon) ========== */
.zm-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 4rem 2rem;
    padding-top: calc(4rem + 100px);
    position: relative;
    z-index: 20;
}
.zm-hero-logo-wrap {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}
.zm-hero-logo {
    width: 16rem;
    height: 16rem;
    object-fit: contain;
    border-radius: 50%;
    background: var(--zm-white-60);
    box-shadow: var(--zm-shadow);
    padding: 1.5rem;
    border: 8px solid white;
    animation: zm-float 4s ease-in-out infinite;
}
@media (min-width: 768px) {
    .zm-hero-logo {
        width: 20rem;
        height: 20rem;
    }
}
@keyframes zm-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}
.zm-hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--zm-stone-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.zm-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    color: var(--zm-stone-600);
    font-style: italic;
    margin-bottom: 2.5rem;
}

/* White card */
.zm-card {
    background: var(--zm-white-90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--zm-radius-xl);
    box-shadow: var(--zm-shadow);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}
.zm-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--zm-amber-500);
}
.zm-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--zm-amber-800);
    margin-bottom: 1rem;
}
.zm-card p {
    color: var(--zm-stone-700);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Animated badge */
.zm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zm-amber-600);
    font-weight: 500;
    background: var(--zm-amber-50);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--zm-amber-100);
    font-size: 0.95rem;
}
.zm-badge-dot {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.zm-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--zm-amber-400);
    animation: zm-ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.zm-badge-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--zm-amber-500);
}
@keyframes zm-ping {
    0% { transform: scale(1); opacity: 0.75; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

.zm-tagline {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--zm-stone-400);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
}

/* ========== INTERACTION HINT ========== */
.zm-interaction-hint {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.zm-hint-text {
    color: var(--zm-amber-600);
    opacity: 0.7;
    font-size: 0.95rem;
    font-weight: 500;
    animation: zm-pulse-text 2.5s ease-in-out infinite;
}
.zm-hint-sub {
    color: var(--zm-stone-400);
    font-size: 0.8rem;
    font-style: italic;
}
@keyframes zm-pulse-text {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ========== INTERACTIVE MAP ELEMENTS ========== */

/* Pfad-Punkte (Maus-Trail) */
.zm-path-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--zm-amber-600);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: zm-dot-fade 3s forwards;
    z-index: 5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

@keyframes zm-dot-fade {
    from { opacity: 0.6; transform: scale(1); }
    to { opacity: 0; transform: scale(0.5); }
}

/* Map Pin (Klick-Marker) */
.zm-map-pin {
    position: absolute;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -100%);
    z-index: 10;
    animation: zm-drop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    pointer-events: none;
}

.zm-pin-pulse {
    position: absolute;
    inset: 0;
    background: rgba(217, 119, 6, 0.4);
    border-radius: 50%;
    animation: zm-pulse-ring 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.zm-pin-icon {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
}

@keyframes zm-drop-in {
    from { transform: translate(-50%, -200%); opacity: 0; }
    to { transform: translate(-50%, -100%); opacity: 1; }
}

@keyframes zm-pulse-ring {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* ========== FEATURES SECTION ========== */
.zm-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.zm-section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.zm-section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--zm-stone-900);
    margin-bottom: 0.75rem;
}
.zm-section-title p {
    font-size: 1.1rem;
    color: var(--zm-stone-600);
    max-width: 600px;
    margin: 0 auto;
}
.zm-overline {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--zm-amber-600);
    margin-bottom: 0.5rem;
}

.zm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.zm-feature-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--zm-radius);
    padding: 2rem;
    border: 1px solid rgba(217,119,6,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.zm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.zm-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--zm-amber-100);
    border: 1px solid var(--zm-amber-400);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.zm-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--zm-stone-900);
    margin-bottom: 0.5rem;
}
.zm-feature-card p {
    font-size: 0.95rem;
    color: var(--zm-stone-500);
    line-height: 1.6;
}

/* ========== PRICING / PAKETE ========== */
.zm-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.zm-price-card {
    background: var(--zm-white-90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--zm-radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.zm-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--zm-shadow-lg);
}
.zm-price-card.featured {
    border: 2px solid var(--zm-amber-400);
    box-shadow: 0 8px 40px rgba(245,158,11,0.15);
}
.zm-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--zm-amber-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}
.zm-price-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zm-stone-900);
    margin-bottom: 0.5rem;
}
.zm-price-card .zm-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zm-amber-600);
    margin: 1rem 0;
}
.zm-price-card .zm-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--zm-stone-400);
}
.zm-price-card .zm-price-subtitle {
    font-size: 0.9rem;
    color: var(--zm-stone-400);
    margin-bottom: 1.5rem;
}
.zm-price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}
.zm-price-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--zm-stone-600);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.zm-price-features li::before {
    content: '\2713';
    color: var(--zm-amber-500);
    font-weight: 700;
    flex-shrink: 0;
}
.zm-price-features li.disabled {
    color: var(--zm-stone-400);
}
.zm-price-features li.disabled::before {
    content: '\2014';
    color: var(--zm-stone-300);
}

/* ========== BUTTONS ========== */
.zm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.zm-btn:hover { transform: translateY(-1px); }
.zm-btn-primary {
    background: var(--zm-amber-500);
    color: white;
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.zm-btn-primary:hover {
    background: var(--zm-amber-600);
    color: white;
    box-shadow: 0 6px 24px rgba(245,158,11,0.4);
}
.zm-btn-outline {
    background: transparent;
    color: var(--zm-stone-600);
    border: 2px solid var(--zm-stone-300);
}
.zm-btn-outline:hover {
    border-color: var(--zm-amber-500);
    color: var(--zm-amber-600);
}
.zm-btn-orange {
    background: var(--zm-orange);
    color: white;
    box-shadow: 0 4px 16px rgba(232,114,12,0.3);
}
.zm-btn-orange:hover {
    background: var(--zm-orange-dark);
    color: white;
    box-shadow: 0 6px 24px rgba(232,114,12,0.4);
}

/* ========== FOOTER ========== */
.zm-footer {
    text-align: center;
    padding: 2rem;
    color: var(--zm-stone-400);
    font-size: 0.9rem;
    position: relative;
    z-index: 20;
}
.zm-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.zm-footer-divider {
    width: 3rem;
    height: 2px;
    background: var(--zm-stone-300);
}
.zm-footer a { color: var(--zm-stone-500); }
.zm-footer a:hover { color: var(--zm-amber-600); }
.zm-footer-legal {
    margin: 0;
    font-size: 0.85rem;
}
.zm-footer-legal span {
    margin: 0 0.5rem;
    color: var(--zm-stone-300);
}

/* ========== PMP PAGES (Checkout, Account) ========== */
.zm-content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}
.zm-content-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zm-stone-900);
    margin-bottom: 1.5rem;
}
.zm-content-page .entry-content {
    background: var(--zm-white-90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--zm-radius);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* PMP form styling overrides */
.pmpro_form .pmpro_submit .pmpro_btn,
#pmpro_btn-submit,
.pmpro_btn {
    background: var(--zm-amber-500) !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    padding: 0.75rem 2rem !important;
    box-shadow: 0 4px 16px rgba(245,158,11,0.3) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.pmpro_btn:hover {
    background: var(--zm-amber-600) !important;
    transform: translateY(-1px) !important;
}
.pmpro_form input[type="text"],
.pmpro_form input[type="email"],
.pmpro_form input[type="password"],
.pmpro_form select,
.pmpro_form textarea {
    border: 1px solid var(--zm-stone-200) !important;
    border-radius: 0.5rem !important;
    padding: 0.6rem 1rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    transition: border-color 0.2s !important;
}
.pmpro_form input:focus,
.pmpro_form select:focus,
.pmpro_form textarea:focus {
    border-color: var(--zm-amber-400) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(251,191,36,0.15) !important;
}

/* ========== WP ADMIN BAR OFFSET ========== */
.admin-bar .zm-header {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .zm-header {
        top: 46px;
    }
}

/* ========== CTA CARD ========== */
.zm-card-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ========== LANDING PAGE TEMPLATE ========== */
.zm-landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 9rem 1.5rem 0;
    min-height: 100vh;
    position: relative;
    z-index: 20;
    box-sizing: border-box;
}
.admin-bar .zm-landing {
    padding-top: 10rem;
}

/* Constrain text blocks */
.zm-landing .wp-block-heading,
.zm-landing .wp-block-paragraph,
.zm-landing .wp-block-list,
.zm-landing .wp-block-quote {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Full-width blocks */
.zm-landing .wp-block-cover,
.zm-landing .wp-block-group.has-background,
.zm-landing .wp-block-spacer,
.zm-landing .wp-block-separator {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Columns */
.zm-landing .wp-block-columns {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 1.5rem;
}

/* Column cards */
.zm-landing .wp-block-columns > .wp-block-column {
    background: rgba(255,255,255,0.75);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(217,119,6,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.zm-landing .wp-block-columns > .wp-block-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.zm-landing .wp-block-column h2,
.zm-landing .wp-block-column h3,
.zm-landing .wp-block-column h4,
.zm-landing .wp-block-column p {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Separator */
.zm-landing .wp-block-separator {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-color: var(--zm-stone-200);
    opacity: 0.6;
}

/* Cover block */
.zm-landing .wp-block-cover { margin-bottom: 0; }
.zm-landing .wp-block-cover h1,
.zm-landing .wp-block-cover h2,
.zm-landing .wp-block-cover p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

/* Inline FA-Icon als Kreis-Badge ueber Heading-Text */
.zm-landing .zm-icon-block,
.zm-landing i.zm-icon-block,
.zm-landing h3 .zm-icon-block {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto 1.5rem !important;
    background: linear-gradient(135deg, #e8a830 0%, #c4830a 100%) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    box-shadow: 0 4px 14px rgba(196, 131, 10, 0.3) !important;
}

/* Headings */
.zm-landing h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--zm-stone-900); line-height: 1.2; margin-bottom: 1rem; }
.zm-landing h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: var(--zm-stone-900); margin-bottom: 1rem; }
.zm-landing h3 { font-size: 1.25rem; font-weight: 600; color: var(--zm-stone-900); margin-bottom: 0.5rem; }
.zm-landing h4 { font-size: 1.1rem; font-weight: 600; color: var(--zm-stone-900); margin-bottom: 0.5rem; }

/* Paragraphs */
.zm-landing p { font-size: 1.05rem; line-height: 1.7; color: var(--zm-stone-600); margin-bottom: 1rem; }

/* Lists */
.zm-landing .wp-block-list { padding-left: 3.5rem; margin-bottom: 1.5rem; }
.zm-landing .wp-block-list li { padding: 0.25rem 0; font-size: 1rem; color: var(--zm-stone-600); }

/* Blockquote */
.zm-landing .wp-block-quote {
    border-left: 4px solid var(--zm-amber-500);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.6);
    border-radius: 0 1rem 1rem 0;
}
.zm-landing .wp-block-quote p { font-style: italic; padding: 0; max-width: 100%; }

/* Table */
.zm-landing .wp-block-table { max-width: 1100px; margin: 0 auto 1.5rem; padding: 0 2rem; }
.zm-landing .wp-block-table table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.8); border-radius: 1rem; overflow: hidden; }
.zm-landing .wp-block-table th { background: var(--zm-amber-100); color: var(--zm-stone-900); font-weight: 600; padding: 0.75rem 1rem; text-align: left; border-bottom: 2px solid var(--zm-amber-400); }
.zm-landing .wp-block-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--zm-stone-200); color: var(--zm-stone-600); }

/* Buttons */
.zm-landing .wp-block-buttons { max-width: 800px; margin-left: auto; margin-right: auto; }
.zm-landing .wp-block-button__link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: 9999px !important;
    padding: 0.75rem 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.zm-landing .wp-block-button__link:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* Group blocks with background */
.zm-landing .wp-block-group.has-background { padding-left: 2rem; padding-right: 2rem; }
.zm-landing .wp-block-group.has-background > * { max-width: 800px; margin-left: auto; margin-right: auto; }
.zm-landing .wp-block-group.has-background .wp-block-heading,
.zm-landing .wp-block-group.has-background .wp-block-paragraph { padding-left: 0; padding-right: 0; }

/* Code block */
.zm-landing .wp-block-code { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.zm-landing .wp-block-code pre { background: var(--zm-stone-900); color: #e2e8f0; padding: 1.5rem; border-radius: 1rem; overflow-x: auto; font-size: 0.9rem; line-height: 1.6; }

/* ========== UTILITIES ========== */
.zm-text-center { text-align: center; }
