:root {
    --marketing-layout-max: 1240px;
    /* Matches Joyful PHP marketing site (.container base max-width). */
    --marketing-header-container-max: 1440px;
    --marketing-bg: #07111f;
    --marketing-bg-soft: #0d1a2d;
    --marketing-card: rgba(14, 24, 41, 0.92);
    --marketing-card-soft: rgba(255, 255, 255, 0.04);
    --marketing-text: #f8fafc;
    --marketing-text-soft: #cbd5e1;
    --marketing-text-muted: #94a3b8;
    --marketing-border: rgba(255, 255, 255, 0.1);
    --marketing-accent: #f59e0b;
    --marketing-accent-2: #8b5cf6;
    --marketing-accent-3: #ec4899;
    --marketing-shadow: 0 24px 60px rgba(2, 8, 23, 0.35);
    /* About, Contact, Blog (index + posts): shared hero vertical rhythm */
    --marketing-subpage-hero-padding-top: 180px;
    --marketing-subpage-hero-padding-bottom: 88px;
    --marketing-subpage-hero-padding-top-sm: 140px;
    --marketing-subpage-hero-padding-bottom-sm: 56px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), transparent 22%),
        linear-gradient(180deg, #030712 0%, #091120 100%);
    color: var(--marketing-text);
}

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

a:hover,
a:visited,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

code {
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fde68a;
}

.marketing-container {
    width: calc(100% - 2.5rem);
    max-width: var(--marketing-layout-max);
    margin: 0 auto;
}

.marketing-header {
    position: sticky;
    top: 0;
    z-index: 100;
    isolation: isolate;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: transparent;
    border-bottom: none;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease, top 0.4s ease, margin 0.4s ease;
}

/* No header motion on first paint — scroll restoration + header-scrolled was animating box-shadow briefly. */
.marketing-header.jd-marketing-nav-php:not(.marketing-megamenu-ready) {
    transition: none !important;
}

/* Scrolled state — toggled by JS */
.marketing-header.header-scrolled {
    background: rgba(3, 7, 18, 0.82);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Floating island on desktop */
@media (min-width: 992px) {
    .marketing-header {
        top: 0;
        margin: 0;
        max-width: 100%;
        border-radius: 0 0 16px 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .marketing-header.header-scrolled {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 1400px) {
    .marketing-header {
        max-width: 100%;
    }
}

/*
 * Header width matches joyfuldesigns-V2-gravity public/static/css/style.css:
 * .container is max 1440px; from 1200px up, .navbar .container is max-width 100% with 3rem horizontal padding.
 */
.marketing-header > .marketing-container {
    width: 100%;
    max-width: var(--marketing-header-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .marketing-header > .marketing-container {
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Marketing header layout + mega menus: see static/css/marketing-megamenu.css (.jd-marketing-nav-php). */
.marketing-header-inner {
    min-height: 72px;
    position: relative;
    width: 100%;
}

.marketing-nav-login {
    color: var(--marketing-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.marketing-nav-cta,
.marketing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.marketing-nav-cta {
    min-width: 240px;
    padding: 0.8rem 1.35rem;
    color: #111827;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.marketing-nav-cta:hover {
    color: #111827;
}

.marketing-btn {
    min-width: 160px;
    padding: 1rem 1.5rem;
}

.marketing-btn:hover,
.marketing-nav-cta:hover,
.marketing-pricing-link:hover {
    transform: translateY(-2px);
}

.marketing-btn-primary {
    color: #111827;
    background: linear-gradient(45deg, #f4c430, #ff8c00, #f4c430);
    background-size: 200% 200%;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
    animation: marketing-marble-shift 4s ease infinite;
}

.marketing-btn-secondary {
    color: var(--marketing-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

@keyframes marketing-marble-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.marketing-hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0 4rem;
}

.marketing-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.24;
}

/* Home hero art (was inline). Run scripts/generate_marketing_webp.py to add hero WebP next to the JPG. */
.marketing-hero-bg--home {
    background-image: url('../images/marketing/jd/hero/jd_hero_background.jpg');
}

.marketing-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.24), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(3, 7, 18, 0.35), rgba(3, 7, 18, 0.82));
}

.marketing-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--marketing-layout-max);
    text-align: center;
    margin: 0 auto;
}

.marketing-badge,
.marketing-section-label {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ddd6fe;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.marketing-hero h1 {
    max-width: 1200px;
    margin: 1rem auto 1rem;
    font-size: clamp(2.75rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    white-space: normal;
}

@media (min-width: 1200px) {
    .marketing-hero h1 {
        white-space: nowrap;
    }
}

.marketing-hero-subtitle,
.marketing-section-heading p {
    color: var(--marketing-text-soft);
    font-size: 1.15rem;
    line-height: 1.75;
}

.marketing-hero-subtitle {
    max-width: min(100%, 72rem);
    margin: 0 auto 2.2rem;
    padding: 0 0.75rem;
    font-size: clamp(0.875rem, 1.65vw, 1.0625rem);
    line-height: 1.5;
    text-align: center;
    text-wrap: balance;
}

@media (min-width: 992px) {
    .marketing-hero-subtitle {
        white-space: nowrap;
        padding: 0 1rem;
    }
}

.marketing-hero-actions,
.marketing-section-cta,
.marketing-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.marketing-hero-actions {
    justify-content: center;
    margin-bottom: 2rem;
}

.home-platform-cta {
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.marketing-hero-note {
    margin: 1.25rem 0 0;
    color: var(--marketing-text-muted);
    line-height: 1.65;
}

.marketing-trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.marketing-trust-inline-single {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(0.5rem, 1.8vw, 1.25rem);
    row-gap: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 920px);
    padding: 0.2rem 0 0.35rem;
}

/* Home hero: two fixed rows (3 + 2 pillars) */
.marketing-trust-pillars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 960px);
    padding: 0.2rem 0 0.35rem;
}

.marketing-trust-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(0.5rem, 1.8vw, 1.25rem);
    row-gap: 0.5rem;
    width: 100%;
}

.marketing-trust-pillars .marketing-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--marketing-text-soft);
    font-size: clamp(0.68rem, 1.35vw, 0.82rem);
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    flex: 0 1 auto;
    max-width: min(100%, 16rem);
}

.marketing-trust-pillars .marketing-trust-line span::before {
    content: '✓';
    color: #fbbf24;
    font-size: 1.2rem;
}

.marketing-trust-pillars .marketing-trust-line span.marketing-trust-label-nowrap {
    white-space: nowrap;
    max-width: none;
    flex: 0 0 auto;
}

.marketing-trust-inline span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--marketing-text-soft);
    font-size: clamp(0.78rem, 1.5vw, 0.9rem);
    line-height: 1.35;
    text-align: center;
    max-width: 22rem;
}

.marketing-trust-inline-single span {
    flex: 0 1 auto;
    white-space: normal;
    max-width: min(100%, 16rem);
    font-size: clamp(0.68rem, 1.35vw, 0.82rem);
}

.marketing-trust-inline span::before {
    content: '✓';
    color: #fbbf24;
    font-size: 1.2rem;
}

.marketing-google-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.marketing-google-badge span {
    color: var(--marketing-text);
    font-size: 0.875rem;
    font-weight: 500;
}

.marketing-hero-logo {
    margin: 0 auto 0.5rem;
    width: 100%;
}

.marketing-hero-logo img {
    height: 60px;
    width: auto;
    max-width: min(100%, 420px);
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.marketing-hero-card {
    position: relative;
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid var(--marketing-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--marketing-shadow);
}

.marketing-hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0), rgba(245, 158, 11, 0.35));
    z-index: -1;
    opacity: 0.55;
}

.marketing-hero-card img {
    border-radius: 18px;
}

.marketing-hero-video {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.marketing-hero-visual {
    width: 84%;
    margin: 3rem auto 0;
}

.home-entry-panel {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.home-entry-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.home-entry-primary-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.home-entry-microcopy {
    margin: 0;
    margin-top: 0.1rem;
    padding: 0.2rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    text-align: center;
    color: rgba(203, 213, 225, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-primary-entry,
.home-secondary-entry,
.home-platform-secondary,
.home-platform-primary {
    min-width: 148px;
    padding: 0.95rem 1.5rem;
    font-weight: 600;
}

.home-entry-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    text-align: center;
    line-height: 1.7;
    max-width: 540px;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-entry-note a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.home-entry-note a:hover {
    color: #fff;
}

.home-entry-note .home-entry-demo-link {
    color: #fbbf24;
    font-weight: 600;
}

.home-entry-note .home-entry-demo-link:hover {
    color: #fcd34d;
}

/* Hero: stronger contrast for secondary CTA + inline links (WCAG-friendly on dark overlay) */
.marketing-hero .home-secondary-entry.marketing-btn-secondary {
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(15, 23, 42, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.marketing-hero .home-secondary-entry.marketing-btn-secondary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(15, 23, 42, 0.72);
}

.marketing-hero .home-secondary-entry.marketing-btn-secondary:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 3px;
}

.marketing-hero .home-primary-entry.marketing-btn-primary:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 3px;
}

.marketing-hero .home-entry-note {
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(3, 7, 18, 0.45);
}

.marketing-hero .home-entry-note a {
    color: #e2e8f0;
}

.marketing-hero .home-entry-note a:hover {
    color: #ffffff;
}

.marketing-hero .home-entry-note a:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 2px;
    border-radius: 2px;
}

.marketing-hero .home-entry-note .home-entry-demo-link {
    color: #fde047;
}

.marketing-hero .home-entry-note .home-entry-demo-link:hover {
    color: #fef08a;
}

.marketing-hero .home-entry-note .home-entry-demo-link:focus-visible {
    outline: 2px solid #fde047;
    outline-offset: 2px;
}

.marketing-section {
    padding: 5rem 0;
}

.marketing-section-trust {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.1) 50%, rgba(10, 10, 35, 0.5) 100%);
    padding: 4rem 0;
}

/* Trust Signals — parity with joyfuldesigns-V2-gravity templates/public/home.php + public/static/css/style.css */
.marketing-trust-heading {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.marketing-trust-label {
    margin: 0 0 1rem;
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marketing-trust-title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    color: var(--marketing-text);
    letter-spacing: -0.02em;
}

.marketing-trust-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
}

.marketing-trust-stat-grid.marketing-stats-grid {
    margin-bottom: 4rem;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .marketing-trust-stat-grid.marketing-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .marketing-trust-stat-grid.marketing-stats-grid {
        grid-template-columns: 1fr;
    }
}

.marketing-section-muted {
    background: rgba(255, 255, 255, 0.02);
}

.marketing-section-dark {
    background: linear-gradient(180deg, rgba(10, 17, 31, 0.95), rgba(15, 23, 42, 0.95));
}

.marketing-section-platform {
    background: rgba(26, 26, 46, 0.5);
    padding: 8rem 0 6rem;
}

.marketing-section-solutions {
    background: rgba(26, 26, 46, 0.3);
    padding: 6rem 0;
}

.marketing-section-pricing {
    background: rgba(255, 255, 255, 0.02);
    padding: 5rem 0 4rem;
}

.marketing-section-pricing.marketing-pricing-page-section {
    padding-top: 2.5rem;
}

.marketing-section-industry {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.marketing-section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.marketing-section-heading h2 {
    margin: 1rem 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

.marketing-stats-grid,
.marketing-platform-grid,
.marketing-solution-grid,
.marketing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.marketing-stat-card,
.marketing-feature-card,
.marketing-solution-card,
.marketing-pricing-card {
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--marketing-border);
    background: var(--marketing-card);
    box-shadow: var(--marketing-shadow);
}

.marketing-stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.marketing-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 196, 48, 0.3);
    box-shadow: 0 12px 40px 0 rgba(244, 196, 48, 0.15);
}

.marketing-stat-card-php {
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.marketing-trust-stat-icon {
    margin: 0 auto 1rem;
    display: block;
    flex-shrink: 0;
}

.marketing-stat-card-php .marketing-stat-value {
    display: block;
    margin-bottom: 0.5rem;
    color: #f59e0b;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.marketing-stat-card-php .marketing-stat-value.marketing-stat-value-rating {
    font-size: 2.5rem;
    line-height: 1.2;
}

.marketing-stat-card-php .marketing-stat-title {
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.35;
}

.marketing-stat-card-php .marketing-stat-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.marketing-stat-icon {
    margin: 0 auto 1rem;
    color: #c4b5fd;
    font-size: 2.25rem;
    line-height: 1;
}

.marketing-stat-card strong {
    display: block;
    margin-bottom: 0.85rem;
    color: #fbbf24;
    font-size: 2.3rem;
    font-weight: 800;
}

.marketing-stat-card h3,
.marketing-feature-card h3,
.marketing-solution-card h3,
.marketing-pricing-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
}

.marketing-stat-card p,
.marketing-feature-card p,
.marketing-solution-card p,
.marketing-pricing-card li,
.marketing-pricing-card .marketing-price {
    color: var(--marketing-text-soft);
    line-height: 1.7;
}

.marketing-card-subtitle {
    margin-bottom: 0.85rem;
    color: #c4b5fd;
    font-size: 0.92rem;
    font-weight: 700;
}

.marketing-feature-card span {
    display: none;
}

.marketing-platform-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.marketing-feature-card {
    width: 100%;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.marketing-feature-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

a.marketing-feature-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-sizing: border-box;
}

a.marketing-feature-card-link:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 3px;
}

.marketing-feature-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 196, 48, 0.2);
    border: 1px solid rgba(244, 196, 48, 0.4);
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 700;
}

.marketing-feature-icon {
    font-size: 64px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.3));
}

.marketing-solution-card ul,
.marketing-pricing-card ul {
    padding-left: 1.1rem;
    margin: 1rem 0 0;
}

.marketing-inline-link {
    display: block;
    width: 85%;
    margin: 1.5rem auto;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
    color: #111827;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketing-inline-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.marketing-solution-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.marketing-solution-card .marketing-inline-link {
    margin-top: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.25rem;
}

.marketing-solution-media {
    margin: -0.35rem -0.35rem 1.15rem;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.marketing-solution-media picture {
    display: block;
    width: 100%;
}

.marketing-solution-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.marketing-solution-card-highlight,
.marketing-pricing-card-featured {
    background: var(--marketing-card);
    border-color: rgba(255, 255, 255, 0.1);
}

.marketing-price {
    margin-bottom: 1rem;
    font-weight: 600;
}

.marketing-pricing-amount {
    margin-bottom: 0.85rem;
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
}

.marketing-pricing-amount .marketing-pricing-price-main {
    display: block;
    line-height: 1.2;
}

.marketing-pricing-amount .marketing-pricing-price-main > span:not(.marketing-pricing-excl) {
    color: var(--marketing-text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.marketing-pricing-amount .marketing-pricing-excl {
    display: inline;
    margin-left: 0.35rem;
    color: var(--marketing-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.marketing-pricing-price-alt {
    display: block;
    margin-top: 0.35rem;
    color: var(--marketing-text-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.marketing-pricing-meta {
    margin: 0 0 1.25rem;
    color: var(--marketing-text-soft);
    font-size: 0.95rem;
}

.marketing-pricing-card .marketing-pricing-meta {
    margin-bottom: 1.5rem;
}

.marketing-check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.marketing-check-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.35rem;
}

.marketing-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.45rem;
    color: #fbbf24;
    font-weight: 800;
}

.marketing-pricing-callout {
    margin-top: 1.4rem;
    padding: 1rem;
    border-left: 3px solid #fbbf24;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.12);
    color: var(--marketing-text-soft);
    line-height: 1.6;
    font-size: 0.88rem;
}

.marketing-pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.marketing-pricing-card .marketing-check-list {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.marketing-pricing-card .marketing-check-list li {
    padding: 0.55rem 0 0.55rem 1.4rem;
    line-height: 1.55;
}

.marketing-pricing-card .marketing-check-list li::before {
    top: 0.6rem;
}

.marketing-pricing-card .marketing-pricing-callout {
    margin-top: auto;
    padding-top: 1.25rem;
    margin-bottom: 0;
}

.marketing-pricing-card .marketing-pricing-footnote {
    margin: 0.75rem 0 0;
}

.marketing-pricing-card .marketing-pricing-link {
    margin-top: 1rem;
}

.marketing-pricing-footnote {
    margin: 1rem 0 0;
    color: var(--marketing-text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.marketing-pricing-bottom-note {
    margin: 1.75rem 0 0;
    text-align: center;
    color: var(--marketing-text-muted);
}

.marketing-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
    z-index: 2;
}

.marketing-pricing-link {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #111827;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.marketing-trust-cta,
.marketing-industry-cta {
    text-align: center;
}

.marketing-section-heading .marketing-industry-subcopy {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--marketing-text-muted);
    line-height: 1.65;
}

.marketing-industry-cta-actions {
    justify-content: center;
    align-items: center;
}

.marketing-industry-cta-actions .marketing-btn-secondary:focus-visible {
    outline: none;
}

.marketing-section-trust .marketing-trust-cta {
    margin-top: 0;
    margin-bottom: 2rem;
    padding-top: 0;
}

.marketing-trust-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.marketing-trust-cta-btn.marketing-btn {
    padding: 1rem 2rem;
    min-width: auto;
}

.marketing-trust-footnote {
    margin: 0 0 4rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-align: center;
}

.marketing-faq-wrap {
    max-width: 900px;
}

.marketing-section-image {
    padding-top: 0;
}

.marketing-industry-image {
    margin-bottom: 2.5rem;
    text-align: center;
}

.marketing-industry-image picture {
    display: block;
    margin: 0 auto;
    max-width: 80%;
}

.marketing-industry-image img {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketing-industry-image img:hover {
    transform: translateY(-4px) scale(1.02);
}

.marketing-image-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 28px;
    border: 1px solid var(--marketing-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    box-shadow: var(--marketing-shadow);
}

.marketing-image-panel-copy h2 {
    margin: 1rem 0;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    letter-spacing: -0.03em;
}

.marketing-image-panel-copy p:last-child {
    color: var(--marketing-text-soft);
    line-height: 1.75;
}

.marketing-image-panel-copy .marketing-btn {
    margin-top: 1rem;
}

.marketing-image-panel-media img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(2, 8, 23, 0.35);
}

.marketing-section-results {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(15, 15, 30, 0.95) 100%);
}

.marketing-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .marketing-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .marketing-results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1400px) {
    .marketing-results-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.marketing-result-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.marketing-result-label {
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marketing-result-card h3 {
    margin: 0 0 0.5rem;
    color: var(--marketing-text);
    font-size: 2.3rem;
    line-height: 1.1;
}

.marketing-result-card h3.marketing-result-metric-head {
    font-size: clamp(1.75rem, 4vw, 2.15rem);
    letter-spacing: -0.02em;
}

.marketing-result-metric {
    margin-bottom: 1rem;
    color: var(--marketing-text-soft);
    font-size: 0.92rem;
}

.marketing-result-card p:last-child {
    margin: 0;
    color: var(--marketing-text-muted);
    font-size: 0.875rem;
    line-height: 1.62;
}

.marketing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.marketing-faq-item {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--marketing-card);
    overflow: hidden;
}

.marketing-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 0;
    background: transparent;
    color: var(--marketing-text);
    font: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.marketing-faq-icon {
    font-size: 1.4rem;
    color: #fbbf24;
    transition: transform 0.2s ease;
}

.marketing-faq-item.is-open .marketing-faq-icon {
    transform: rotate(45deg);
}

.marketing-faq-item.is-open .marketing-faq-question {
    color: #fbbf24;
}

.marketing-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease;
}

.marketing-faq-item.is-open .marketing-faq-answer {
    grid-template-rows: 1fr;
}

.marketing-faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 1rem 1.5rem 1.5rem;
    color: var(--marketing-text-soft);
    line-height: 1.7;
}

.marketing-faq-answer a {
    color: #fbbf24;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.marketing-faq-answer a:hover {
    color: #fcd34d;
}

/* Wide marketing footer — parity with joyfuldesigns-V2-gravity footer.php */
.marketing-footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-footer.marketing-footer--wide {
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.35);
    text-align: left;
}

.marketing-footer--wide .marketing-container.marketing-footer-shell {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .marketing-footer--wide .marketing-footer-shell {
        padding-left: clamp(1.25rem, 5vw, 5rem);
        padding-right: clamp(1.25rem, 5vw, 5rem);
    }
}

.marketing-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: 4rem;
    align-items: start;
}

@media (min-width: 1320px) {
    .marketing-footer-grid {
        grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(0, 1fr));
        gap: 3rem;
    }
}

.marketing-footer-col h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.marketing-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.marketing-footer-list li {
    margin-bottom: 0.5rem;
}

.marketing-footer-list a {
    color: var(--marketing-text-soft);
    text-decoration: none;
    font-size: 0.9rem;
}

.marketing-footer-list a:hover {
    color: var(--marketing-accent);
}

.marketing-footer-logo-wrap {
    margin-bottom: 1rem;
}

.marketing-footer-logo-wrap--jd {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.marketing-footer-logo {
    width: auto;
    height: 35px;
    max-width: 220px;
    object-fit: contain;
}

.marketing-footer-logo--reputify {
    height: 38px;
    max-width: 200px;
}

.marketing-footer-logo--jd {
    height: 32px;
    max-width: 180px;
}

.marketing-footer-tagline {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--marketing-text-soft);
}

.marketing-footer-meta {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: #666;
}

.marketing-footer-accent-link {
    color: var(--marketing-accent);
    text-decoration: none;
}

.marketing-footer-accent-link:hover {
    color: #fcd34d;
}

.marketing-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.marketing-footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Legacy row of inline links (older home sections); keep for compatibility */
.marketing-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
}

.marketing-footer-links a {
    color: var(--marketing-text-soft);
    text-decoration: none;
}

.marketing-mobile-footer-cta {
    display: none;
}

.marketing-mobile-footer-cta a {
    color: var(--marketing-accent);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .marketing-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .marketing-footer-col--brand {
        text-align: center;
    }

    .marketing-footer-logo-wrap,
    .marketing-footer-logo-wrap--jd {
        display: flex;
        justify-content: center;
    }

    .marketing-mobile-footer-cta {
        display: block;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    .marketing-footer.marketing-footer--wide {
        padding: 2.35rem 0 2rem;
    }

    .marketing-footer-grid {
        gap: 1.45rem;
        margin-bottom: 2.1rem;
    }

    .marketing-footer-col h4 {
        margin: 0 0 0.65rem;
        font-size: 0.92rem;
        letter-spacing: 0.02em;
    }

    .marketing-footer-list li {
        margin-bottom: 0.4rem;
    }

    .marketing-footer-list a {
        font-size: 0.875rem;
        line-height: 1.45;
        display: inline-block;
        padding: 0.15rem 0;
    }

    .marketing-footer-logo-wrap {
        margin-bottom: 0.85rem;
    }

    .marketing-footer-logo-wrap--jd {
        margin-top: 0.15rem;
        margin-bottom: 0.85rem;
    }

    .marketing-footer-logo--reputify {
        height: 34px;
    }

    .marketing-footer-logo--jd {
        height: 28px;
        max-width: 160px;
    }

    .marketing-footer-tagline {
        margin: 0 0 1rem;
        font-size: 0.88rem;
        line-height: 1.55;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .marketing-footer-meta {
        margin: 0 0 0.5rem;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .marketing-mobile-footer-cta {
        margin-top: 0.4rem;
    }

    .marketing-mobile-footer-cta a {
        font-size: 0.88rem;
    }

    .marketing-footer-bottom {
        padding-top: 1.35rem;
    }

    .marketing-footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.45;
        padding: 0 0.35rem;
    }
}

@media (max-width: 480px) {
    .marketing-footer.marketing-footer--wide {
        padding: 2rem 0 1.65rem;
    }

    .marketing-footer-grid {
        gap: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .marketing-footer-bottom {
        padding-top: 1.15rem;
    }
}

.marketing-nav-current {
    color: var(--marketing-text) !important;
}

.marketing-nav-placeholder {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}

/* Minimal About page (Reputify-first; see main/about.html) */
.about-page .about-hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 -1px 0 0 rgba(244, 196, 48, 0.12);
}

.about-page .marketing-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page .marketing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.marketing-section-about-body {
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.marketing-about-prose {
    max-width: 42rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    color: var(--marketing-text-soft);
    line-height: 1.75;
    font-size: 1.05rem;
}

.marketing-about-prose p {
    margin: 0 0 1.25rem;
}

.marketing-about-parent {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 0 rgba(244, 196, 48, 0.1);
}

/* Two explicit lines (JD + detail); beats .marketing-about-prose p margins */
.marketing-about-prose .marketing-about-parent p {
    margin: 0;
}

.marketing-about-prose .marketing-about-parent .marketing-about-parent__line--jd {
    margin-bottom: 0.5rem;
}

.marketing-about-prose .marketing-about-parent .marketing-about-parent__line--detail {
    margin-bottom: 0;
}

/* Larger than header JD wordmark (~22px); scales down slightly on small screens */
.marketing-about-jd-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 0.2rem;
    line-height: 1;
    text-decoration: none;
    border-radius: 6px;
    transition:
        opacity 0.22s ease,
        transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.22s ease;
}

.marketing-about-jd-link:hover {
    opacity: 1;
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 4px 14px rgba(244, 196, 48, 0.18));
}

@media (prefers-reduced-motion: reduce) {
    .marketing-about-jd-link:hover {
        transform: none;
        filter: none;
    }
}

.marketing-about-jd-link:focus-visible {
    outline: 2px solid rgba(244, 196, 48, 0.65);
    outline-offset: 3px;
}

.marketing-about-jd-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(260px, 78vw);
}

@media (max-width: 480px) {
    .marketing-about-jd-logo {
        height: 40px;
    }
}

.marketing-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 767px) {
    .about-page .about-hero {
        padding-top: 112px;
        padding-bottom: 36px;
    }

    .about-page .marketing-page-eyebrow {
        margin-bottom: 0.85rem;
        font-size: 0.8rem;
        letter-spacing: 2.5px;
    }

    .about-page .mission-statement {
        margin-bottom: 1.1rem;
        font-size: clamp(2rem, 8vw, 2.35rem);
        line-height: 1.08;
    }

    .about-page .hero-content .marketing-page-lead {
        font-size: 1.05rem;
        line-height: 1.62;
    }

    .marketing-section-about-body {
        padding-top: 1.35rem;
        padding-bottom: 3rem;
    }

    .about-page .marketing-about-prose {
        font-size: 1rem;
        line-height: 1.65;
    }

    .about-page .marketing-about-prose p {
        margin-bottom: 1rem;
    }

    .about-page .marketing-about-prose .marketing-about-parent p {
        margin: 0;
    }

    .about-page .marketing-about-prose .marketing-about-parent .marketing-about-parent__line--jd {
        margin-bottom: 0.45rem;
    }

    .about-page .marketing-about-parent {
        margin-top: 1.1rem;
        padding-top: 1rem;
    }

    .about-page .marketing-about-actions {
        margin-top: 1.5rem;
        gap: 0.65rem;
    }
}

@media (max-width: 480px) {
    .about-page .about-hero {
        padding-top: 104px;
        padding-bottom: 30px;
    }

    .about-page .marketing-page-eyebrow {
        margin-bottom: 0.7rem;
    }

    .marketing-section-about-body {
        padding-top: 1.15rem;
        padding-bottom: 2.5rem;
    }

    .contact-page .contact-hero {
        padding-top: 104px;
        padding-bottom: 30px;
    }

    .contact-page .marketing-section-contact-body {
        padding-top: 1.15rem;
        padding-bottom: 2.35rem;
    }

    .contact-page .premium-form-card {
        padding: 1.3rem 1.1rem 1.45rem;
    }

    .contact-page .success-card {
        padding: 1.65rem 1.15rem;
    }

    .pricing-page .marketing-pricing-page-hero {
        padding: 104px 0 1.35rem;
    }

    .pricing-page .marketing-pricing-page-plans {
        padding: 1rem 0 2rem;
    }

    .pricing-page .marketing-pricing-page-compare {
        padding: 1.55rem 0 2.25rem;
    }

    .pricing-page .marketing-pricing-page-faq-section {
        padding: 2.35rem 0;
    }

    .pricing-page .marketing-pricing-page-card {
        padding: 1.2rem 0.95rem;
    }
}

.about-hero {
    padding: var(--marketing-subpage-hero-padding-top) 0 var(--marketing-subpage-hero-padding-bottom);
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, #0a0a23 60%);
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.marketing-page-eyebrow {
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mission-statement {
    margin: 0 0 2rem;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marketing-page-lead {
    margin: 0;
    color: var(--marketing-text-soft);
    font-size: 1.25rem;
    line-height: 1.8;
}

.marketing-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(244, 196, 48, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-card h3 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.value-card p {
    margin: 0;
    color: var(--marketing-text-soft);
    line-height: 1.7;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1) 0%, rgba(244, 196, 48, 0.02) 100%);
    border: 1px solid rgba(244, 196, 48, 0.1);
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 800;
}

.marketing-icon-svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.timeline-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 1) 0%, #0f0f1a 100%);
}

.marketing-page-section-heading {
    margin-bottom: 5rem;
    text-align: center;
}

.marketing-page-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 2.5rem;
}

.marketing-page-section-heading p {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--marketing-text-soft);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(244, 196, 48, 0) 0%, rgba(244, 196, 48, 0.5) 15%, rgba(244, 196, 48, 0.5) 85%, rgba(244, 196, 48, 0) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 6px;
    width: 20px;
    height: 20px;
    background: #07111f;
    border: 2px solid #fbbf24;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(244, 196, 48, 0.3);
}

.timeline-year {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    background: rgba(244, 196, 48, 0.1);
    border: 1px solid rgba(244, 196, 48, 0.2);
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-item h3 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 1.8rem;
}

.timeline-item p {
    margin: 0;
    color: var(--marketing-text-soft);
    font-size: 1.1rem;
    line-height: 1.6;
}

.marketing-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
}

.founder-quote {
    margin-top: 4rem;
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    font-size: 8rem;
    line-height: 1;
}

.marketing-founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.marketing-founder-grid h3 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.marketing-founder-quote-copy {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.marketing-founder-signoff {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marketing-founder-signoff div:first-child {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.marketing-founder-signoff div:last-child {
    color: #fbbf24;
    font-size: 0.9rem;
}

.marketing-founder-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(251, 191, 36, 0.85);
    font-size: 5rem;
}

.marketing-founder-mark-svg {
    width: 5rem;
    height: 5rem;
    fill: rgba(251, 191, 36, 0.85);
}

/* Contact page (Reputify-first; see main/contact.html) */
.contact-page .contact-hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 -1px 0 0 rgba(244, 196, 48, 0.12);
}

.contact-page .marketing-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-page .marketing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.marketing-section-contact-body {
    padding-top: 1.85rem;
    padding-bottom: 3.75rem;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.marketing-contact-aside {
    position: relative;
    min-width: 0;
}

@media (min-width: 768px) {
    .marketing-contact-aside {
        padding-right: 1.35rem;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset -1px 0 0 0 rgba(244, 196, 48, 0.08);
    }
}

@media (max-width: 767px) {
    .marketing-contact-aside {
        padding-bottom: 1.15rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 -1px 0 0 rgba(244, 196, 48, 0.08);
    }
}

.marketing-contact-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.marketing-contact-meta-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.marketing-contact-meta-value,
.marketing-contact-meta a {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--marketing-text-soft);
}

.marketing-contact-meta a {
    overflow-wrap: break-word;
    word-break: break-word;
}

.marketing-contact-email-line {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 0.2rem;
    box-sizing: border-box;
}

.contact-page .premium-form-card {
    border-radius: 20px;
    padding: 1.65rem 1.65rem 1.9rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
}

.contact-page .premium-form-card::before {
    height: 3px;
}

.contact-page .success-card {
    padding: 2.35rem 1.65rem;
    border-radius: 20px;
}

.contact-hero {
    padding: var(--marketing-subpage-hero-padding-top) 0 var(--marketing-subpage-hero-padding-bottom);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, #0a0a23 60%);
}

@media (max-width: 900px) {
    .about-hero,
    .contact-hero {
        padding: var(--marketing-subpage-hero-padding-top-sm) 0 var(--marketing-subpage-hero-padding-bottom-sm);
    }
}

.marketing-contact-form-column {
    min-width: 0;
}

.premium-form-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.premium-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #8b5cf6);
}

/*
 * Honeypot container: visually hidden (not display:none) so naive bots still POST inputs
 * and may auto-fill; humans should not see or tab into these fields.
 */
.marketing-contact-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.marketing-form-banner {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.marketing-form-banner-error {
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.marketing-form-field {
    margin-bottom: 1.5rem;
}

.marketing-form-field-large {
    margin-bottom: 2rem;
}

.marketing-required {
    color: #ef4444;
}

.marketing-optional {
    opacity: 0.5;
    font-size: 0.8em;
    font-weight: 400;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.1);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-input.is-invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.error-msg {
    display: block;
    margin-top: 0.4rem;
    color: #ef4444;
    font-size: 0.85rem;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fbbf24;
}

.contact-link:focus-visible {
    outline: 2px solid rgba(244, 196, 48, 0.65);
    outline-offset: 3px;
    border-radius: 4px;
}

.marketing-contact-submit {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 0;
    cursor: pointer;
}

.marketing-contact-privacy-note {
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-align: center;
}

.success-card {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 32px;
}

.success-card h2 {
    margin: 0 0 1rem;
    color: #fff;
}

.success-card p {
    max-width: 400px;
    margin: 0 auto;
    color: var(--marketing-text-soft);
    font-size: 1.1rem;
}

.marketing-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    color: #34d399;
    font-size: 2rem;
    font-weight: 800;
}

.marketing-success-icon-svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* —— Marketing /pricing page (parity with public pricing.php) —— */
.marketing-section-anchor {
    scroll-margin-top: 96px;
}

.marketing-pricing-page-hero {
    padding: 138px 0 2.35rem;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12) 0%, #0a0a23 55%);
    position: relative;
    overflow: hidden;
}

.marketing-pricing-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.marketing-pricing-page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.marketing-pricing-page-h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--marketing-text);
}

.marketing-pricing-page-lead {
    margin: 0 auto;
    max-width: 46rem;
    text-align: center;
    color: var(--marketing-text-soft);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.marketing-pricing-page-currency-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1.35rem;
}

.marketing-pricing-home-currency {
    margin-bottom: 1.5rem;
}

.marketing-pricing-page-currency-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--marketing-text-soft);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.marketing-pricing-page-currency-pill:hover {
    color: var(--marketing-text);
    border-color: rgba(167, 139, 250, 0.45);
    background: rgba(139, 92, 246, 0.12);
}

.marketing-pricing-page-currency-pill.is-active {
    color: #f5f3ff;
    border-color: rgba(167, 139, 250, 0.65);
    background: rgba(139, 92, 246, 0.22);
}

.mpp-price-unavailable {
    font-weight: 600;
    color: var(--marketing-text-soft);
    opacity: 0.75;
}

.marketing-pricing-page-plans {
    padding: 1.5rem 0 3rem;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(15, 15, 30, 0.98) 100%);
}

.marketing-pricing-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.marketing-pricing-page-card {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding: 1.55rem 1.35rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 46, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketing-pricing-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.marketing-pricing-page-card-featured {
    border: 2px solid transparent;
    background-image:
        linear-gradient(rgba(26, 26, 46, 0.92), rgba(26, 26, 46, 0.92)),
        linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.marketing-pricing-page-badge.marketing-popular-badge {
    top: -14px;
}

.marketing-pricing-page-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marketing-text);
}

.marketing-pricing-page-card-tagline {
    margin: 0 0 1rem;
    color: var(--marketing-text-soft);
    font-size: 0.95rem;
    line-height: 1.45;
}

.marketing-pricing-page-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    padding: 0.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.marketing-pricing-page-toggle-btn {
    flex: 1;
    padding: 0.5rem 0.65rem;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.marketing-pricing-page-toggle-btn.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.marketing-pricing-page-amount {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--marketing-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.marketing-pricing-page-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--marketing-text-muted);
    margin-left: 0.15rem;
}

.marketing-pricing-page-billed {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    color: var(--marketing-text-muted);
}

.marketing-pricing-page-save {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
}

.mpp-annual-note {
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
}

.marketing-pricing-page-tax-note {
    margin: 0.85rem 0 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.marketing-pricing-page-limits {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(244, 196, 48, 0.95);
    letter-spacing: 0.02em;
}

.marketing-pricing-page-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    flex: 1;
}

.marketing-pricing-page-features li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.5rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marketing-pricing-page-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}

.marketing-pricing-page-callout {
    margin-top: auto;
    margin-bottom: 0;
    padding: 0.85rem;
    border-radius: 10px;
    border-left: 3px solid #f59e0b;
    background: rgba(139, 92, 246, 0.1);
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.marketing-pricing-page-card-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.marketing-pricing-page-cta-primary {
    text-align: center;
    justify-content: center;
}

.marketing-pricing-page-unified-cta {
    margin: 2.25rem auto 0;
    max-width: 40rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(244, 196, 48, 0.35);
    background: rgba(139, 92, 246, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.marketing-pricing-page-unified-cta-lead {
    margin: 0 0 1.25rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.marketing-pricing-page-unified-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
}

.marketing-pricing-page-footnote {
    margin: 2rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}

.marketing-pricing-page-compare {
    padding: 2.35rem 0 3.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.marketing-pricing-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 7, 18, 0.45);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.marketing-pricing-compare-sr-caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.marketing-pricing-compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.marketing-pricing-compare-table th,
.marketing-pricing-compare-table td {
    padding: 0.7rem 0.85rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--marketing-text-soft);
}

/* Sticky feature column — keeps row labels visible while scrolling horizontally */
.marketing-pricing-compare-table thead th:first-child,
.marketing-pricing-compare-table tbody td:first-child:not([colspan]) {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 10.5rem;
    max-width: 15rem;
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    background-color: var(--marketing-bg);
    background-clip: padding-box;
    box-shadow: 6px 0 14px -4px rgba(0, 0, 0, 0.55);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-pricing-compare-table thead th:first-child {
    z-index: 3;
}

.marketing-pricing-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.marketing-pricing-compare-table .marketing-pricing-compare-note {
    text-align: left;
    line-height: 1.5;
    font-size: 0.88rem;
    color: rgba(226, 232, 240, 0.92);
}

.marketing-pricing-compare-table thead th {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.95rem;
}

.marketing-pricing-compare-cat {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
}

/* Compare table — mobile: stacked cards (no sideways scroll; plan labels per row) */
@media (max-width: 767px) {
    .marketing-pricing-compare-scroll {
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
        padding: 0.35rem 0.15rem;
    }

    .marketing-pricing-compare-table {
        min-width: 0;
        width: 100%;
        display: block;
        font-size: 0.92rem;
    }

    .marketing-pricing-compare-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .marketing-pricing-compare-table tbody {
        display: block;
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-row-cat {
        display: block;
        margin: 1.1rem 0 0.45rem;
        border: none;
        padding: 0;
        background: transparent;
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-row-cat:first-child {
        margin-top: 0;
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-row-cat td {
        display: block;
        width: 100%;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        border: none;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.07);
        text-align: left;
        position: static;
        box-shadow: none;
        min-width: 0;
        max-width: none;
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) {
        display: block;
        padding: 0.75rem 0.85rem;
        margin: 0 0 0.55rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(3, 7, 18, 0.72);
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td {
        display: block;
        border: none;
        padding: 0;
        position: static;
        min-width: 0;
        max-width: none;
        box-shadow: none;
        background: transparent;
        text-align: left;
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td:first-child {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.96);
        font-size: 0.95rem;
        line-height: 1.38;
        padding-bottom: 0.6rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td:nth-child(n + 2) {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        text-align: right;
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td:nth-child(2)::before {
        content: 'Starter';
        flex-shrink: 0;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fbbf24;
        text-align: left;
        min-width: 4.75rem;
        padding-top: 0.15rem;
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td:nth-child(3)::before {
        content: 'Growth';
        flex-shrink: 0;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fbbf24;
        text-align: left;
        min-width: 4.75rem;
        padding-top: 0.15rem;
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td:nth-child(4)::before {
        content: 'Scale';
        flex-shrink: 0;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fbbf24;
        text-align: left;
        min-width: 4.75rem;
        padding-top: 0.15rem;
    }

    .marketing-pricing-compare-table tbody tr:not(.marketing-pricing-compare-row-cat):not(.marketing-pricing-compare-trial-row) td:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-trial-row {
        display: block;
        padding: 0.75rem 0.85rem;
        margin: 0 0 0.55rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(3, 7, 18, 0.72);
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-trial-row td {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        min-width: 0;
        max-width: none;
        background: transparent;
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-trial-row td:first-child {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.96);
        padding-bottom: 0.55rem;
        margin-bottom: 0.45rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .marketing-pricing-compare-table tbody tr.marketing-pricing-compare-trial-row .marketing-pricing-compare-note {
        text-align: left;
        font-size: 0.86rem;
        line-height: 1.5;
        color: rgba(226, 232, 240, 0.92);
    }

    .marketing-pricing-compare-table tbody tr:last-child td {
        border-bottom: none;
    }
}

.mpp-check {
    color: #34d399;
    font-weight: 700;
}

.mpp-dash {
    color: rgba(255, 255, 255, 0.35);
}

.marketing-pricing-page-faq-section {
    padding: 3.5rem 0;
}

.marketing-pricing-page-faq-section .marketing-section-heading p {
    color: var(--marketing-text-soft);
}

.marketing-pricing-page-faq-cta {
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1rem;
    text-align: center;
    font-size: 1rem;
}

.marketing-pricing-page-faq-cta-text {
    color: var(--marketing-text-soft);
}

.marketing-pricing-page-faq-contact-btn {
    min-width: 9.5rem;
    padding: 0.75rem 1.35rem;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .pricing-page .marketing-pricing-page-hero {
        padding: 112px 0 1.65rem;
    }

    .pricing-page .marketing-pricing-page-h1 {
        margin-bottom: 0.75rem;
        font-size: clamp(1.65rem, 5vw, 2.2rem);
    }

    .pricing-page .marketing-pricing-page-lead {
        font-size: 1.02rem;
        line-height: 1.58;
    }

    .pricing-page .marketing-pricing-page-currency-bar {
        margin-bottom: 1.15rem;
    }

    .pricing-page .marketing-pricing-page-plans {
        padding: 1.15rem 0 2.4rem;
    }

    .pricing-page .marketing-pricing-page-grid {
        gap: 1.1rem;
    }

    .pricing-page .marketing-pricing-page-card {
        padding: 1.35rem 1.1rem;
    }

    .pricing-page .marketing-pricing-page-unified-cta {
        margin: 1.85rem auto 0;
        padding: 1.35rem 1.1rem;
    }

    .pricing-page .marketing-pricing-page-footnote {
        margin-top: 1.65rem;
    }

    .pricing-page .marketing-pricing-page-compare {
        padding: 1.85rem 0 2.65rem;
    }

    .pricing-page .marketing-pricing-page-faq-section {
        padding: 2.65rem 0;
    }

    .pricing-page .marketing-pricing-page-faq-cta {
        margin-top: 1.25rem;
        gap: 0.65rem 0.85rem;
    }

    .pricing-page .marketing-section-heading {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1100px) {
    .marketing-pricing-page-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.marketing-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.marketing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .marketing-btn-primary {
        animation: none;
    }

    .marketing-btn:hover,
    .marketing-nav-cta:hover,
    .marketing-pricing-link:hover {
        transform: none;
    }

    .marketing-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-page .marketing-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .contact-page .marketing-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pricing-page .marketing-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marketing-feature-card:hover {
        transform: none;
    }

    .marketing-industry-image img:hover {
        transform: none;
    }

    .marketing-pricing-page-card:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 991px) {
    .marketing-feature-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .marketing-values-grid,
    .marketing-founder-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .marketing-stats-grid,
    .marketing-platform-grid,
    .marketing-solution-grid,
    .marketing-pricing-grid,
    .marketing-footer-inner,
    .marketing-image-panel {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 767px) {
    .marketing-container {
        width: calc(100% - 1.25rem);
    }

    .marketing-header > .marketing-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .marketing-hero {
        padding-top: 3.5rem;
        min-height: 70vh;
    }

    .marketing-header-inner {
        min-height: 72px;
    }

    .mission-statement {
        font-size: 2.5rem;
    }

    .founder-quote,
    .premium-form-card {
        padding: 2rem;
    }

    .contact-page .premium-form-card {
        padding: 1.45rem 1.25rem 1.65rem;
    }

    .contact-page .contact-hero {
        padding-top: 112px;
        padding-bottom: 36px;
    }

    .contact-page .marketing-page-eyebrow {
        margin-bottom: 0.85rem;
        font-size: 0.8rem;
        letter-spacing: 2.5px;
    }

    .contact-page .mission-statement {
        margin-bottom: 1.1rem;
        font-size: clamp(2rem, 8vw, 2.35rem);
        line-height: 1.08;
    }

    .contact-page .hero-content .marketing-page-lead {
        font-size: 1.05rem;
        line-height: 1.62;
    }

    .contact-page .marketing-section-contact-body {
        padding-top: 1.35rem;
        padding-bottom: 2.75rem;
    }

    .contact-page .success-card {
        padding: 2rem 1.35rem;
    }

    .contact-page .marketing-form-field {
        margin-bottom: 1.2rem;
    }

    .contact-page .marketing-form-field-large {
        margin-bottom: 1.55rem;
    }

    .contact-page .form-label {
        margin-bottom: 0.55rem;
    }

    .contact-page .form-input {
        padding: 0.85rem 1rem;
    }

    .contact-page .marketing-contact-submit {
        padding: 1rem;
        font-size: 1.05rem;
    }

    .contact-page .marketing-contact-privacy-note {
        margin-top: 1.15rem;
    }

    .marketing-btn {
        width: 100%;
    }

    .marketing-hero-actions,
    .marketing-section-cta,
    .marketing-footer-links {
        flex-direction: column;
    }

    .marketing-trust-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .marketing-trust-inline-single {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        row-gap: 0.65rem;
    }

    .marketing-trust-pillars {
        gap: 0.75rem;
        margin-top: 1.25rem;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .marketing-trust-line {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        row-gap: 0.45rem;
        width: 100%;
        min-width: 0;
    }

    .marketing-trust-pillars .marketing-trust-line span {
        justify-content: center;
        max-width: 100%;
        min-width: 0;
        font-size: clamp(0.7rem, 3.15vw, 0.8rem);
        line-height: 1.4;
        padding: 0 0.15rem;
        box-sizing: border-box;
    }

    /* Long label: allow wrap on small screens (desktop keeps nowrap via wider breakpoint) */
    .marketing-trust-pillars .marketing-trust-line span.marketing-trust-label-nowrap {
        white-space: normal;
        max-width: 100%;
        flex: 0 1 auto;
        text-wrap: balance;
    }

    .marketing-hero-content {
        min-width: 0;
        overflow-x: hidden;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .marketing-google-badge {
        flex-wrap: wrap;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0.65rem 0.75rem;
        gap: 8px;
    }

    .marketing-google-badge span {
        font-size: clamp(0.75rem, 3.5vw, 0.875rem);
        line-height: 1.35;
        text-align: center;
        max-width: 100%;
    }

    .marketing-hero-logo img {
        height: 50px;
    }

    .home-entry-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .marketing-hero-visual {
        width: 95%;
    }
}

/* -------------------------------------------------------------------------
   Marketing site: smoother navigations (pillars, pricing, home, blog, etc.)
   - View Transitions API (see marketing-home.js) + root timing below
   - Fallback: main content ease-in when VT is not available
   ------------------------------------------------------------------------- */
@keyframes marketing-site-main-enter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

body:has(.jd-marketing-nav-php) > main,
body:has(.jd-marketing-nav-php) .marketing-pillar-main,
body:has(.jd-marketing-nav-php) .marketing-blog-main {
    animation: marketing-site-main-enter 0.48s cubic-bezier(0.4, 0, 0.2, 1) both;
}

html.marketing-site-vt-supported body:has(.jd-marketing-nav-php) > main,
html.marketing-site-vt-supported body:has(.jd-marketing-nav-php) .marketing-pillar-main,
html.marketing-site-vt-supported body:has(.jd-marketing-nav-php) .marketing-blog-main {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    body:has(.jd-marketing-nav-php) > main,
    body:has(.jd-marketing-nav-php) .marketing-pillar-main,
    body:has(.jd-marketing-nav-php) .marketing-blog-main {
        animation: none;
    }
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
