: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%;
    overflow: visible;
}

.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: auto;
    display: flex;
    align-items: flex-start;
    padding: 48px 0 2.25rem;
}

.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');
    background-image: image-set(
        url('../images/marketing/jd/hero/jd_hero_background.webp') type('image/webp'),
        url('../images/marketing/jd/hero/jd_hero_background.jpg') type('image/jpeg')
    );
}

.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-eyebrow {
    margin: 0.5rem auto 0;
    max-width: 40rem;
    color: var(--marketing-text-soft);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.marketing-hero h1,
.marketing-hero-headline {
    max-width: 1200px;
    width: 100%;
    margin: 0.65rem auto 0.65rem;
    padding: 0 0.75rem;
    box-sizing: border-box;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    white-space: normal;
    text-align: center;
}

.marketing-hero-headline__line {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Mid-width laptops: slightly smaller type so each promise stays on one line. */
@media (min-width: 1200px) and (max-width: 1499px) {
    .marketing-hero h1,
    .marketing-hero-headline {
        font-size: clamp(2.2rem, 3.6vw, 3.25rem);
    }
}

/*
 * Mobile: fit the longest line (“Monitor Google reviews.”) including the period.
 * Parent .marketing-hero used overflow:hidden and was clipping the trailing “.” on iPhone.
 */
@media (max-width: 768px) {
    .marketing-hero {
        overflow: visible;
    }

    .marketing-hero-headline {
        /* ~22ch line: size from viewport so period never sits past the clip edge */
        font-size: min(1.55rem, calc((100vw - 4.25rem) / 13));
        line-height: 1.22;
        letter-spacing: -0.045em;
        padding-inline: 0.5rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        overflow: visible;
    }

    .marketing-hero-headline__line {
        width: max-content;
        max-width: 100%;
        margin-inline: auto;
        padding-inline: 0;
        overflow: visible;
    }
}

@media (max-width: 390px) {
    .marketing-hero-headline {
        font-size: min(1.35rem, calc((100vw - 3.75rem) / 13.4));
    }
}

.marketing-hero-disclaimer {
    max-width: min(100%, 48rem);
    margin: 0.35rem auto 0.75rem;
    padding: 0 0.75rem;
    color: var(--marketing-text-soft);
    font-size: 0.8125rem;
    line-height: 1.55;
    text-align: center;
}

.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 0.85rem;
    padding: 0 0.75rem;
    font-size: clamp(0.875rem, 1.65vw, 1.0625rem);
    line-height: 1.5;
    text-align: center;
    text-wrap: balance;
}

/* ── Profile Pulse Glass Scan Card — hero ──────────────────────── */

@keyframes hero-scan-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 181, 253, 0.85); }
    55%       { box-shadow: 0 0 0 5px rgba(196, 181, 253, 0); }
}

@keyframes hero-scan-sweep {
    0%   { top: 0; opacity: 0.8; }
    80%  { top: 100%; opacity: 0.3; }
    100% { top: 100%; opacity: 0; }
}

@keyframes hero-finding-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hero-outcome-in {
    from { opacity: 0; transform: translateY(5px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-pulse-scan {
    width: min(100%, 460px);
    margin: 0.35rem auto 1.1rem;
    padding: 1rem 1.2rem 0.9rem;
    border-radius: 18px;
    background:
        linear-gradient(rgba(8, 5, 22, 0.88), rgba(8, 5, 22, 0.88)) padding-box,
        linear-gradient(135deg,
            rgba(167, 139, 250, 0.9)  0%,
            rgba(34, 211, 238, 0.65) 52%,
            rgba(167, 139, 250, 0.5) 100%
        ) border-box;
    border: 1.5px solid transparent;
    box-shadow:
        0 0 55px rgba(139, 92, 246, 0.22),
        0 0 110px rgba(34, 211, 238, 0.07),
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    text-align: left;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ── Header row ── */
.hero-pulse-scan__header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.hero-pulse-scan__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4b5fd;
    flex-shrink: 0;
    animation: hero-scan-dot 1.9s ease-in-out infinite;
}

.hero-pulse-scan__name {
    color: #ede9fe;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-pulse-scan__live {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2em 0.6em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(167, 139, 250, 0.18));
    color: #67e8f9;
    border: 1px solid rgba(34, 211, 238, 0.4);
    line-height: 1.5;
}

.hero-pulse-scan__sep {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
}

.hero-pulse-scan__biz {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    letter-spacing: 0.01em;
}

/* ── Outcome headline ── */
.hero-pulse-scan__outcome {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 0.8rem;
    animation: hero-outcome-in 0.4s ease 0.5s both;
}

.hero-pulse-scan__outcome-num {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #e9d5ff 10%, #67e8f9 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.hero-pulse-scan__outcome-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-pulse-scan__outcome-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-pulse-scan__outcome-sub {
    color: rgba(252, 211, 77, 0.72);
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── Findings ── */
.hero-pulse-scan__findings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    position: relative;
    overflow: hidden;
}

.hero-pulse-scan__scanner {
    position: absolute;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg,
        transparent,
        rgba(167, 139, 250, 0.7) 30%,
        rgba(34, 211, 238, 0.85) 70%,
        transparent
    );
    top: 0;
    animation: hero-scan-sweep 1.3s ease-in-out 0.2s 1 forwards;
    pointer-events: none;
}

.hero-pulse-scan__finding {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.7);
}

.hero-pulse-scan__finding:nth-child(2) { animation: hero-finding-in 0.3s ease 0.9s both; }
.hero-pulse-scan__finding:nth-child(3) { animation: hero-finding-in 0.3s ease 1.15s both; }
.hero-pulse-scan__finding:nth-child(4) { animation: hero-finding-in 0.3s ease 1.4s both; }

.hero-pulse-scan__finding-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.hero-pulse-scan__finding--warn .hero-pulse-scan__finding-icon {
    background: rgba(248, 113, 113, 0.18);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.hero-pulse-scan__finding--info .hero-pulse-scan__finding-icon {
    background: rgba(251, 146, 60, 0.18);
    color: #fdba74;
    border: 1px solid rgba(251, 146, 60, 0.25);
}

/* ── Footer ── */
.hero-pulse-scan__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-pulse-scan__tally {
    font-size: 0.67rem;
    color: rgba(196, 181, 253, 0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-pulse-scan__cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: #67e8f9;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.hero-pulse-scan__cta:hover {
    color: #a5f3fc;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .hero-pulse-scan {
        padding: 0.9rem 1rem 0.85rem;
    }
    .hero-pulse-scan__biz {
        display: none;
    }
    .hero-pulse-scan__outcome-num {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .marketing-hero-subtitle {
        /* Allow wrap so longer audit-safe hero copy stays centered */
        max-width: min(100%, 52rem);
        padding: 0 1rem;
        text-align: center;
        text-wrap: balance;
    }
}

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

.marketing-hero-actions {
    justify-content: center;
    margin-top: 0.35rem;
    margin-bottom: 0.85rem;
}

.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.5rem;
    margin-top: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 960px);
    padding: 0.1rem 0 0.2rem;
}

.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: 1.5rem auto 0;
}

.home-dashboard-preview {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: clamp(0.9rem, 1.8vw, 1.2rem);
    min-height: clamp(430px, 47vw, 540px);
    color: #111827;
    background:
        radial-gradient(circle at 16% 5%, rgba(125, 211, 252, 0.2), transparent 25%),
        radial-gradient(circle at 82% 8%, rgba(251, 207, 232, 0.34), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 58%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: left;
}

.home-dashboard-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 64%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 64%);
}

.home-dashboard-preview > * {
    position: relative;
    z-index: 1;
}

.home-dashboard-preview__chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.58rem 0.72rem;
    margin-bottom: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
}

.home-dashboard-preview__brand,
.home-dashboard-preview__nav,
.home-dashboard-preview__business-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.home-dashboard-preview__brand-logo {
    display: block;
    width: auto;
    height: 1.42rem;
    max-width: 8rem;
    object-fit: contain;
}

.home-dashboard-preview__nav {
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 800;
}

.home-dashboard-preview__nav span {
    padding: 0.34rem 0.5rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.84);
}

.home-dashboard-preview__nav span:first-child {
    color: #1565C0;
    background: rgba(21, 101, 192, 0.1);
}

.home-dashboard-preview__business-brand {
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 900;
}

.home-dashboard-preview__business-brand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.62rem;
    height: 1.62rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c2d12, #f59e0b);
    color: #ffffff;
    font-size: 0.62rem;
    border: 2px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 18px rgba(124, 45, 18, 0.16);
}

.home-dashboard-preview__shell {
    display: block;
}

.home-dashboard-preview__main {
    position: relative;
    min-width: 0;
}

.home-dashboard-preview__topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.5rem 0.66rem;
    margin-bottom: 0.72rem;
    border: 1px solid #e5e7eb;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.78);
}

.home-dashboard-preview__topnav span {
    flex: 1;
    min-width: 0;
    color: #94a3b8;
    font-size: 0.66rem;
}

.home-dashboard-preview__topnav strong {
    flex: 0 0 auto;
    padding: 0.34rem 0.52rem;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    font-size: 0.64rem;
    white-space: nowrap;
}

.home-dashboard-preview__welcome,
.home-dashboard-preview__hero-report,
.home-dashboard-preview__filters,
.home-dashboard-preview__workflow-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.home-dashboard-preview__welcome {
    align-items: flex-start;
    width: calc(100% - min(27rem, 40%));
    min-height: 86px;
    margin-bottom: 0.74rem;
}

.home-dashboard-preview__avatar {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, #ffffff 0 12%, transparent 13%),
        linear-gradient(135deg, #0f766e, #f59e0b);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
}

.home-dashboard-preview__avatar-face {
    position: relative;
    display: block;
    width: 2.08rem;
    height: 2.08rem;
    border-radius: 50%;
    overflow: hidden;
    background:
        radial-gradient(circle at 38% 40%, #111827 0 3px, transparent 3.5px),
        radial-gradient(circle at 62% 40%, #111827 0 3px, transparent 3.5px),
        radial-gradient(ellipse at 50% 66%, #f97316 0 3px, transparent 3.5px),
        radial-gradient(circle at 50% 34%, #f6b08f 0 38%, transparent 39%),
        linear-gradient(180deg, #7c2d12 0 34%, transparent 35%),
        linear-gradient(180deg, #0f766e 58%, #115e59 100%);
    border: 2px solid rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-dashboard-preview__avatar-face::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.36rem;
    width: 1.6rem;
    height: 0.9rem;
    border-radius: 999px 999px 0 0;
    background: #0f766e;
    transform: translateX(-50%);
}

.home-dashboard-preview__welcome p,
.home-dashboard-preview__hero-report p,
.home-dashboard-preview__filters span,
.home-dashboard-preview__metric span {
    margin: 0;
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-dashboard-preview__welcome h2 {
    margin: 0.1rem 0 0.2rem;
    color: #0f172a;
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    line-height: 1.1;
}

.home-dashboard-preview__welcome span,
.home-dashboard-preview__hero-report span,
.home-dashboard-preview__metric small,
.home-dashboard-preview__workflow-step small {
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.35;
}

.home-dashboard-preview__hero-report {
    position: absolute;
    top: 3.34rem;
    right: 0;
    width: min(24.5rem, 38%);
    padding: 0.78rem 0.9rem;
    border: 1px solid #f1d9ff;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 26px rgba(124, 58, 237, 0.1);
}

.home-dashboard-preview__hero-report strong {
    display: block;
    margin-top: 0.1rem;
    color: #3f1d78;
    font-size: 0.86rem;
}

.home-dashboard-preview__hero-report em {
    flex: 0 0 auto;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: #d95832;
    color: #ffffff;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.home-dashboard-preview__summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.78rem;
}

.home-dashboard-preview__summary-card {
    position: relative;
    overflow: hidden;
    min-height: 82px;
    padding: 0.85rem 0.95rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
}

.home-dashboard-preview__summary-card::after {
    content: '';
    position: absolute;
    inset: auto -12% -48% 35%;
    height: 92px;
    border-radius: 50%;
    opacity: 0.45;
}

.home-dashboard-preview__summary-card--blue::after {
    background: #bae6fd;
}

.home-dashboard-preview__summary-card--gold::after {
    background: #fde68a;
}

.home-dashboard-preview__summary-card--green::after {
    background: #bbf7d0;
}

.home-dashboard-preview__summary-card--rose::after {
    background: #fecdd3;
}

.home-dashboard-preview__summary-card span {
    display: block;
    color: #0f172a;
    font-size: clamp(1rem, 2.1vw, 1.35rem);
    font-weight: 900;
    line-height: 1;
}

.home-dashboard-preview__summary-card strong {
    display: block;
    margin-top: 0.5rem;
    color: #64748b;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-dashboard-preview__filters {
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.78rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.home-dashboard-preview__filters > div {
    flex: 1;
    min-width: 0;
}

.home-dashboard-preview__filters strong {
    display: block;
    margin-top: 0.25rem;
    color: #0f172a;
    font-size: 0.78rem;
}

.home-dashboard-preview__filters button {
    flex: 0 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.45rem 0.65rem;
    background: #ffffff;
    color: #475569;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
}

.home-dashboard-preview__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
    margin-bottom: 0.78rem;
}

.home-dashboard-preview__metric {
    position: relative;
    min-height: 118px;
    padding: 0.95rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.home-dashboard-preview__metric strong {
    display: block;
    margin: 0.55rem 0 0.35rem;
    color: #0f172a;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.home-dashboard-preview__mini-bars,
.home-dashboard-preview__stars,
.home-dashboard-preview__response-pills {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 1.25rem;
    margin-top: 0.65rem;
}

.home-dashboard-preview__mini-bars i {
    width: 0.42rem;
    height: var(--bar-height);
    min-height: 0.36rem;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, #38bdf8, #0f766e);
}

.home-dashboard-preview__stars {
    align-items: center;
    gap: 0.18rem;
}

.home-dashboard-preview__stars i {
    width: 0.72rem;
    height: 0.72rem;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
    background: #f59e0b;
}

.home-dashboard-preview__stars .home-dashboard-preview__star--soft {
    background: linear-gradient(90deg, #f59e0b 60%, #e5e7eb 60%);
}

.home-dashboard-preview__response-pills {
    align-items: center;
}

.home-dashboard-preview__response-pills i {
    height: 0.42rem;
    border-radius: 999px;
    background: #fed7aa;
}

.home-dashboard-preview__response-pills i:nth-child(1) {
    width: 1.5rem;
}

.home-dashboard-preview__response-pills i:nth-child(2) {
    width: 2.15rem;
}

.home-dashboard-preview__response-pills i:nth-child(3) {
    width: 1rem;
}

.home-dashboard-preview__sentiment-ring {
    width: 1.55rem;
    height: 1.55rem;
    margin-top: 0.56rem;
    border-radius: 50%;
    background: conic-gradient(#14b8a6 0 82%, #e5e7eb 82% 100%);
    box-shadow: inset 0 0 0 0.38rem #ffffff;
}

.home-dashboard-preview__metric-icon {
    position: absolute;
    top: 0.78rem;
    right: 0.78rem;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
}

.home-dashboard-preview__metric-icon--reviews {
    background: linear-gradient(135deg, #dc2626, #fb923c);
}

.home-dashboard-preview__metric-icon--rating {
    background: linear-gradient(135deg, #14b8a6, #10b981);
}

.home-dashboard-preview__metric-icon--pending {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.home-dashboard-preview__metric-icon--sentiment {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.home-dashboard-preview__insight {
    display: grid;
    grid-template-columns: 1fr repeat(3, minmax(0, 1.1fr));
    gap: 0.65rem;
    padding: 0.82rem 0.9rem;
    margin-bottom: 0.78rem;
    border: 1px solid #fde7d8;
    border-radius: 16px;
    background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

.home-dashboard-preview__insight strong {
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 800;
}

.home-dashboard-preview__insight span {
    color: #475569;
    font-size: 0.68rem;
    line-height: 1.35;
}

.home-dashboard-preview__insight b {
    display: block;
    color: #111827;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.home-dashboard-preview__workflow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.home-dashboard-preview__workflow-step {
    justify-content: flex-start;
    padding: 0.76rem 0.85rem;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.home-dashboard-preview__workflow-step p {
    margin: 0 0 0.15rem;
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 800;
}

.home-dashboard-preview__workflow-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
}

.home-dashboard-preview__workflow-icon--alert {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.home-dashboard-preview__workflow-icon--ai {
    background: linear-gradient(135deg, #1565C0, #8b5cf6);
}

.home-dashboard-preview__workflow-icon--trust {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.home-dashboard-preview__sample-note {
    margin: 0.56rem 0 0;
    color: #94a3b8;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: right;
    text-transform: uppercase;
}

@keyframes home-dashboard-card-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

@keyframes home-dashboard-bar-grow {
    from {
        transform: scaleY(0.32);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes home-dashboard-soft-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(21, 101, 192, 0.22);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(21, 101, 192, 0);
    }
}

.home-dashboard-preview__summary-card,
.home-dashboard-preview__metric,
.home-dashboard-preview__insight,
.home-dashboard-preview__workflow-step {
    animation: home-dashboard-card-in 0.52s ease both;
}

.home-dashboard-preview__summary-card:nth-child(2),
.home-dashboard-preview__metric:nth-child(2),
.home-dashboard-preview__workflow-step:nth-child(2) {
    animation-delay: 0.08s;
}

.home-dashboard-preview__summary-card:nth-child(3),
.home-dashboard-preview__metric:nth-child(3),
.home-dashboard-preview__workflow-step:nth-child(3) {
    animation-delay: 0.16s;
}

.home-dashboard-preview__summary-card:nth-child(4),
.home-dashboard-preview__metric:nth-child(4) {
    animation-delay: 0.24s;
}

.home-dashboard-preview__mini-bars i {
    transform-origin: bottom;
    animation: home-dashboard-bar-grow 0.75s ease both;
}

.home-dashboard-preview__mini-bars i:nth-child(2) {
    animation-delay: 0.08s;
}

.home-dashboard-preview__mini-bars i:nth-child(3) {
    animation-delay: 0.16s;
}

.home-dashboard-preview__mini-bars i:nth-child(4) {
    animation-delay: 0.24s;
}

.home-dashboard-preview__workflow-icon--ai {
    animation: home-dashboard-soft-pulse 2.8s ease-in-out infinite;
}

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

.home-entry-trial-link {
    margin: 0.15rem 0 0;
    padding: 0 0.75rem;
    color: rgba(203, 213, 225, 0.72);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.home-entry-trial-link a {
    color: rgba(253, 224, 71, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    font-weight: 600;
}

.home-entry-trial-link a:hover {
    color: #fde047;
}

.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-entry-trust-line {
    display: block;
    width: 100%;
    max-width: 36rem;
    margin: 0.25rem auto 0;
    padding: 0 0.75rem;
    color: rgba(203, 213, 225, 0.78);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.5;
    text-align: center;
}

.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;
}

.home-snapshot-announcement {
    position: relative;
    z-index: 90;
    border-bottom: 1px solid rgba(20, 184, 166, 0.22);
    background:
        radial-gradient(circle at 12% 50%, rgba(45, 212, 191, 0.22), transparent 28rem),
        linear-gradient(90deg, #ecfeff 0%, #fef9c3 100%);
    box-shadow: 0 14px 38px rgba(2, 8, 23, 0.18);
}

.home-snapshot-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    min-height: 72px;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.home-snapshot-announcement__copy {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    min-width: 0;
}

.home-snapshot-announcement__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    color: #042f2e;
    background: rgba(20, 184, 166, 0.18);
    border: 1px solid rgba(15, 118, 110, 0.22);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.home-snapshot-announcement p {
    margin: 0;
    color: #334155;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.45;
}

.home-snapshot-announcement strong {
    color: #0f172a;
    display: block;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 0 18px rgba(20, 184, 166, 0.38), 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-snapshot-announcement span {
    color: #475569;
}

.home-snapshot-announcement p > span {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.home-snapshot-announcement a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e, #0f172a);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(15, 118, 110, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-snapshot-announcement a:hover {
    transform: translateY(-1px);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.32);
}

.home-snapshot-announcement a:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .home-snapshot-announcement__inner {
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 0.55rem;
    }

    .home-snapshot-announcement__copy {
        flex-direction: column;
        gap: 0.55rem;
    }

    .home-snapshot-announcement p > span {
        margin-top: 0.24rem;
    }

    .home-snapshot-announcement a {
        width: 100%;
        max-width: 320px;
    }
}

/* 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: rgba(255, 255, 255, 0.32);
    font-size: 0.78rem;
    background: none;
    border: none;
    padding: 0;
    margin-top: 0.25rem;
}

.marketing-hero .home-entry-note a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: color 0.2s ease;
}

.marketing-hero .home-entry-note a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.marketing-hero .home-entry-note a:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 2px;
    border-radius: 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(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.marketing-section-what-is {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, transparent 100%);
}

.marketing-section-about-what-is {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.marketing-what-is-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.marketing-what-is-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    backdrop-filter: blur(12px);
}

.marketing-what-is-card--highlight {
    border-color: rgba(99, 102, 241, 0.45);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.marketing-what-is-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.marketing-what-is-beta {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.5);
    color: #c4b5fd;
    background: rgba(99, 102, 241, 0.15);
}

.marketing-what-is-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.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;
}

/* Profile Pulse featured card */
@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.35), 0 4px 24px rgba(167, 139, 250, 0.15); }
    50%       { box-shadow: 0 0 0 6px rgba(167, 139, 250, 0),  0 4px 24px rgba(167, 139, 250, 0.25); }
}

.marketing-feature-card--pulse {
    border-color: rgba(167, 139, 250, 0.55);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(99, 102, 241, 0.06) 100%);
    animation: pulse-border 2.8s ease-in-out infinite;
}

.marketing-feature-card--pulse:hover {
    border-color: #a78bfa;
    box-shadow: 0 10px 40px rgba(167, 139, 250, 0.3);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.16) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.marketing-feature-card--pulse .marketing-feature-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2em 0.55em;
    border-radius: 999px;
    background: rgba(167, 139, 250, 0.22);
    color: #c4b5fd;
    border: 1px solid rgba(167, 139, 250, 0.4);
    line-height: 1.4;
}

.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;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

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

@media (min-width: 992px) {
    .marketing-results-grid {
        /* Four product-proof cards: one centered row on desktop */
        grid-template-columns: repeat(4, 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-list a.marketing-footer-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(37, 211, 102, 0.5);
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.1);
    color: #dfffee;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.marketing-footer-list a.marketing-footer-whatsapp-link:hover {
    border-color: rgba(37, 211, 102, 0.85);
    background: rgba(37, 211, 102, 0.18);
    color: #ffffff;
}

.marketing-footer-list a.marketing-footer-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(96, 165, 250, 0.5);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #e8f1ff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.marketing-footer-list a.marketing-footer-phone-link:hover,
.marketing-footer-list a.marketing-footer-sms-link:hover {
    border-color: rgba(96, 165, 250, 0.85);
    background: rgba(59, 130, 246, 0.2);
    color: #ffffff;
}

.marketing-footer-list a.marketing-footer-sms-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(96, 165, 250, 0.5);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #e8f1ff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.marketing-footer-list a.marketing-footer-social-link {
    margin-top: 0.15rem;
}

.marketing-footer-social {
    margin: 0.35rem 0 1rem;
}

.marketing-footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.marketing-footer-social-link:hover {
    border-color: rgba(245, 158, 11, 0.65);
    background: rgba(245, 158, 11, 0.12);
    color: #ffffff;
}

.marketing-footer-social-link--instagram i {
    color: #f472b6;
}

.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-list a.marketing-footer-whatsapp-link,
    .marketing-footer-list a.marketing-footer-phone-link,
    .marketing-footer-list a.marketing-footer-sms-link {
        min-height: 42px;
        max-width: calc(100vw - 3rem);
        padding: 0.58rem 0.9rem;
        white-space: nowrap;
    }

    .marketing-footer-list a.marketing-footer-social-link {
        min-height: 42px;
        max-width: calc(100vw - 3rem);
        padding: 0.58rem 0.9rem;
        white-space: nowrap;
    }

    .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-section-about-founder {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.marketing-about-founder {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(165deg, rgba(45, 212, 191, 0.08), transparent 46%),
        rgba(14, 24, 41, 0.72);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.28);
}

.marketing-about-founder__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-align: center;
}

.marketing-about-founder__photo {
    display: block;
    width: 168px;
    height: 168px;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
    border: 3px solid rgba(94, 234, 212, 0.45);
    box-shadow:
        0 0 0 6px rgba(45, 212, 191, 0.08),
        0 14px 36px rgba(2, 6, 23, 0.35);
}

.marketing-about-founder__caption {
    margin: 0;
    display: grid;
    gap: 0.15rem;
}

.marketing-about-founder__caption strong {
    color: var(--marketing-text, #f8fafc);
    font-size: 0.98rem;
    font-weight: 800;
}

.marketing-about-founder__caption span {
    color: var(--marketing-text-muted, #94a3b8);
    font-size: 0.85rem;
    font-weight: 600;
}

.marketing-about-founder__eyebrow {
    margin: 0 0 0.55rem;
    color: #99f6e4;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marketing-about-founder__copy h2 {
    margin: 0 0 0.9rem;
    color: var(--marketing-text, #f8fafc);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.marketing-about-founder__copy p {
    margin: 0 0 0.95rem;
    color: var(--marketing-text-soft, #cbd5e1);
    font-size: 1.02rem;
    line-height: 1.7;
}

.marketing-about-founder__copy a {
    color: #5eead4;
    font-weight: 700;
    text-decoration: none;
}

.marketing-about-founder__copy a:hover {
    text-decoration: underline;
}

.marketing-about-founder__note {
    margin: 1.35rem 0 0;
    padding: 1rem 1.1rem 1.05rem;
    border-left: 3px solid rgba(251, 191, 36, 0.65);
    border-radius: 0 14px 14px 0;
    background: rgba(2, 6, 23, 0.4);
}

.marketing-about-founder__note-label {
    margin: 0 0 0.45rem !important;
    color: #fde68a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.marketing-about-founder__note p {
    margin: 0 0 0.75rem;
    color: var(--marketing-text-soft, #e2e8f0);
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
}

.marketing-about-founder__note footer {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

.marketing-about-founder__email {
    display: grid;
    gap: 0.25rem;
    margin: 1.1rem 0 0 !important;
    font-size: 0.95rem !important;
}

.marketing-about-founder__email-label {
    color: var(--marketing-text-muted, #94a3b8);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.marketing-about-founder__email a {
    color: #5eead4;
    font-weight: 700;
    word-break: break-word;
}

/* Tablet: stack founder card before columns get cramped */
@media (max-width: 1024px) {
    .marketing-about-founder {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.25rem;
        padding: 1.35rem 1.25rem 1.45rem;
    }

    .marketing-about-founder__copy {
        width: 100%;
        min-width: 0;
    }

    .marketing-about-founder__eyebrow,
    .marketing-about-founder__copy h2 {
        text-align: center;
    }

    .marketing-section-about-what-is {
        padding-top: 1.5rem;
        padding-bottom: 1.75rem;
    }

    .marketing-section-about-founder {
        padding-top: 1rem;
        padding-bottom: 1.75rem;
    }

    .about-page .marketing-about-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 767px) {
    .marketing-about-founder {
        text-align: center;
        padding: 1.25rem 1.15rem 1.35rem;
        border-radius: 22px;
    }

    .marketing-about-founder__photo {
        width: 140px;
        height: 140px;
    }

    .marketing-about-founder__copy {
        text-align: left;
    }

    .marketing-about-founder__copy h2 {
        font-size: 1.3rem;
    }

    .marketing-about-founder__note {
        text-align: left;
    }

    .marketing-section-about-founder {
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
    }

    .about-page .marketing-about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-page .marketing-about-actions .marketing-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .marketing-about-founder__photo {
        width: 120px;
        height: 120px;
    }

    .marketing-about-founder__copy p,
    .marketing-about-founder__note p {
        font-size: 0.95rem;
    }
}

.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-stack {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.marketing-contact-meta-stack strong {
    color: var(--marketing-text);
    font-weight: 600;
}

.marketing-contact-meta-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

.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;
}

.marketing-contact-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.1);
    color: #dfffee !important;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-contact-whatsapp-link:hover {
    border-color: rgba(37, 211, 102, 0.85);
    background: rgba(37, 211, 102, 0.18);
    transform: translateY(-1px);
}

.marketing-contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #e8f1ff !important;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-contact-phone-link:hover,
.marketing-contact-sms-link:hover {
    border-color: rgba(96, 165, 250, 0.85);
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.marketing-contact-sms-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #e8f1ff !important;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-contact-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(244, 114, 182, 0.45);
    border-radius: 999px;
    background: rgba(244, 114, 182, 0.1);
    color: #ffe4f0 !important;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-contact-instagram-link:hover {
    border-color: rgba(244, 114, 182, 0.85);
    background: rgba(244, 114, 182, 0.18);
    transform: translateY(-1px);
}

.marketing-about-instagram-link {
    color: var(--marketing-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.marketing-about-instagram-link:hover {
    color: #ffffff;
}

.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;
    }

    .home-dashboard-preview__summary-card,
    .home-dashboard-preview__metric,
    .home-dashboard-preview__insight,
    .home-dashboard-preview__workflow-step,
    .home-dashboard-preview__mini-bars i,
    .home-dashboard-preview__workflow-icon--ai {
        animation: none;
        transform: 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-what-is-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;
        /* Do not clip the hero headline trailing period on iOS */
        overflow-x: visible;
        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-hero-card {
        padding: 0.7rem;
        border-radius: 22px;
    }

    .home-dashboard-preview {
        min-height: auto;
        padding: 0.95rem;
        border-radius: 16px;
    }

    .home-dashboard-preview__welcome,
    .home-dashboard-preview__hero-report,
    .home-dashboard-preview__filters,
    .home-dashboard-preview__workflow-step {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-dashboard-preview__nav {
        flex-wrap: wrap;
    }

    .home-dashboard-preview__chrome {
        flex-wrap: wrap;
        align-items: center;
    }

    .home-dashboard-preview__welcome {
        width: 100%;
        min-height: auto;
        margin-bottom: 0.75rem;
    }

    .home-dashboard-preview__hero-report {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .home-dashboard-preview__summary,
    .home-dashboard-preview__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-dashboard-preview__summary-card {
        min-height: 76px;
    }

    .home-dashboard-preview__metric {
        min-height: 108px;
    }

    .home-dashboard-preview__insight {
        grid-template-columns: 1fr;
    }

    .home-dashboard-preview__workflow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .home-dashboard-preview__summary,
    .home-dashboard-preview__metrics {
        grid-template-columns: 1fr;
    }

    .home-dashboard-preview__filters {
        gap: 0.7rem;
    }
}

@media (max-width: 640px) {
    .home-dashboard-preview {
        padding: 0.78rem;
    }

    .home-dashboard-preview__nav,
    .home-dashboard-preview__topnav,
    .home-dashboard-preview__hero-report,
    .home-dashboard-preview__filters,
    .home-dashboard-preview__metrics,
    .home-dashboard-preview__insight,
    .home-dashboard-preview__workflow {
        display: none;
    }

    .home-dashboard-preview__chrome {
        justify-content: space-between;
        margin-bottom: 0.7rem;
    }

    .home-dashboard-preview__brand-logo {
        height: 1.2rem;
        max-width: 6.8rem;
    }

    .home-dashboard-preview__business-brand {
        font-size: 0.72rem;
    }

    .home-dashboard-preview__business-brand span {
        width: 1.45rem;
        height: 1.45rem;
    }

    .home-dashboard-preview__welcome {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.72rem;
    }

    .home-dashboard-preview__avatar {
        width: 2.45rem;
        height: 2.45rem;
    }

    .home-dashboard-preview__avatar-face {
        width: 1.72rem;
        height: 1.72rem;
    }

    .home-dashboard-preview__welcome > div:not(.home-dashboard-preview__avatar) > span {
        display: none;
    }

    .home-dashboard-preview__summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        margin-bottom: 0;
    }

    .home-dashboard-preview__summary-card {
        min-height: 68px;
        padding: 0.72rem;
        border-radius: 14px;
    }

    .home-dashboard-preview__sample-note {
        display: none;
    }
}

/* -------------------------------------------------------------------------
   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);
}

/* —— Guided Launch (/guided-launch + pricing strip) —— */
.marketing-guided-launch-hero-note {
    margin: 1.25rem auto 0;
    max-width: 42rem;
    text-align: center;
}

.marketing-guided-launch-hero-note-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--marketing-text-soft);
    line-height: 1.55;
}

.marketing-guided-launch-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.marketing-guided-launch-hero-cta:hover {
    color: #f5f3ff;
    text-decoration: none;
    border-color: rgba(167, 139, 250, 0.45);
    background: rgba(139, 92, 246, 0.14);
    transform: translateY(-1px);
}

.marketing-guided-launch-hero-cta:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.65);
    outline-offset: 2px;
}

.marketing-guided-launch-how {
    margin: 2.5rem auto 0;
    max-width: 56rem;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background: linear-gradient(155deg, rgba(139, 92, 246, 0.14) 0%, rgba(15, 15, 30, 0.55) 100%);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.marketing-guided-launch-how-title {
    margin: 0 0 1.35rem;
    text-align: center;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--marketing-text);
}

.marketing-guided-launch-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.marketing-guided-launch-step {
    position: relative;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.65rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(26, 26, 46, 0.72);
    min-height: 100%;
    min-width: 0;
}

.marketing-guided-launch-step-arrow {
    display: none;
}

@media (min-width: 961px) {
    .marketing-guided-launch-step:not(:last-child) {
        margin-right: 2rem;
    }

    .marketing-guided-launch-step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: -1.35rem;
        width: 1.35rem;
        height: 2rem;
        z-index: 2;
        color: #f4c430;
        font-size: 0.72rem;
        text-shadow: 0 0 12px rgba(244, 196, 48, 0.45);
        pointer-events: none;
        transform: translateY(-50%);
    }

    .marketing-guided-launch-step-arrow::before {
        content: '';
        position: absolute;
        right: 50%;
        top: 50%;
        width: 1.1rem;
        height: 2px;
        margin-right: 0.15rem;
        transform: translateY(-50%);
        background: linear-gradient(90deg, rgba(167, 139, 250, 0.15) 0%, rgba(244, 196, 48, 0.75) 100%);
        border-radius: 1px;
    }

    .marketing-guided-launch-step-arrow i {
        position: relative;
        z-index: 1;
    }
}

.marketing-guided-launch-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.65rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 800;
    color: #111827;
    background: linear-gradient(135deg, #f4c430 0%, #ff8c00 100%);
    box-shadow: 0 4px 14px rgba(244, 196, 48, 0.25);
}

.marketing-guided-launch-step-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.marketing-guided-launch-step-label {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}

.marketing-guided-launch-step-desc {
    font-size: 0.76rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
}

.marketing-guided-launch-how-note {
    margin: 1.25rem 0 0;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.marketing-guided-launch-how-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.marketing-guided-launch-how-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
}

.marketing-guided-launch-meta {
    margin: 1rem 0 0;
    padding: 0.85rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0.55rem;
}

.guided-launch-page .marketing-pricing-page-card-cta {
    margin-top: 1.35rem;
    gap: 1.15rem;
}

.guided-launch-page .marketing-pricing-page-card-cta .marketing-pricing-page-cta-primary {
    margin-top: 0.65rem;
}

.marketing-guided-launch-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
    gap: 0.65rem;
    font-size: 0.78rem;
    line-height: 1.45;
}

.marketing-guided-launch-meta-row dt {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.marketing-guided-launch-meta-row dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.marketing-guided-launch-addons {
    padding: 2.75rem 0 3.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(139, 92, 246, 0.06) 100%);
}

.marketing-guided-launch-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.marketing-guided-launch-addon-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(30, 30, 52, 0.95) 0%, rgba(20, 20, 38, 0.88) 100%);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.marketing-guided-launch-addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.85) 0%, rgba(244, 196, 48, 0.85) 100%);
    opacity: 0.85;
}

.marketing-guided-launch-addon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.marketing-guided-launch-addon-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.marketing-guided-launch-addon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 14px;
    font-size: 1.05rem;
    color: #f5f3ff;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.55) 0%, rgba(99, 102, 241, 0.35) 100%);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.22);
}

.marketing-guided-launch-addon-card[data-addon="extra-location"]::before {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.9) 0%, rgba(59, 130, 246, 0.85) 100%);
}

.marketing-guided-launch-addon-card[data-addon="extra-location"] .marketing-guided-launch-addon-icon {
    color: #ecfeff;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.55) 0%, rgba(37, 99, 235, 0.4) 100%);
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.25);
}

.marketing-guided-launch-addon-card[data-addon="extra-campaign"]::before {
    background: linear-gradient(90deg, rgba(244, 196, 48, 0.9) 0%, rgba(251, 146, 60, 0.85) 100%);
}

.marketing-guided-launch-addon-card[data-addon="extra-campaign"] .marketing-guided-launch-addon-icon {
    color: #fffbeb;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.55) 0%, rgba(249, 115, 22, 0.4) 100%);
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.25);
}

.marketing-guided-launch-addon-card[data-addon="extra-training"]::before {
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.9) 0%, rgba(236, 72, 153, 0.85) 100%);
}

.marketing-guided-launch-addon-card[data-addon="extra-training"] .marketing-guided-launch-addon-icon {
    color: #fdf4ff;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.55) 0%, rgba(219, 39, 119, 0.4) 100%);
    border-color: rgba(232, 121, 249, 0.4);
    box-shadow: 0 6px 18px rgba(168, 85, 247, 0.25);
}

.marketing-guided-launch-addon-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 196, 48, 0.95);
    border: 1px solid rgba(244, 196, 48, 0.28);
    background: rgba(244, 196, 48, 0.08);
}

.marketing-guided-launch-addon-title {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--marketing-text);
}

.marketing-guided-launch-addon-desc {
    margin: 0;
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--marketing-text-soft);
}

.marketing-guided-launch-addon-foot {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.65rem 1rem;
}

.marketing-guided-launch-addon-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-guided-launch-addon-price {
    margin: 0;
    text-align: right;
}

.marketing-guided-launch-addon-amount {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--marketing-text);
}

.marketing-guided-launch-addon-tax {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.marketing-guided-launch-addons-footnote {
    margin: 1.35rem auto 0;
    max-width: 40rem;
    text-align: center;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.marketing-guided-launch-strip {
    padding: 2.25rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14) 0%, rgba(15, 15, 30, 0.6) 100%);
    border-block: 1px solid rgba(167, 139, 250, 0.18);
}

.marketing-guided-launch-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.marketing-guided-launch-strip-title {
    margin: 0.35rem 0 0.65rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--marketing-text);
}

.marketing-guided-launch-strip-lead {
    margin: 0;
    max-width: 38rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--marketing-text-soft);
}

.marketing-guided-launch-strip-actions {
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .marketing-guided-launch-addons-grid {
        grid-template-columns: 1fr;
    }

    .marketing-guided-launch-meta-row {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .marketing-guided-launch-steps {
        flex-direction: column;
        gap: 0.65rem;
    }

    .marketing-guided-launch-step {
        flex: none;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 0.85rem;
        padding: 0.95rem 1rem;
        margin-right: 0;
    }

    .marketing-guided-launch-step-arrow {
        display: none !important;
    }

    .marketing-guided-launch-step-num {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .marketing-guided-launch-how {
        margin-top: 1.65rem;
        padding: 1.15rem 0.95rem 1.25rem;
    }

    .guided-launch-page .marketing-pricing-page-card-cta .marketing-pricing-page-cta-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .marketing-guided-launch-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .marketing-guided-launch-strip-actions {
        width: 100%;
    }

    .marketing-guided-launch-strip-actions .marketing-btn {
        width: 100%;
        justify-content: center;
    }
}

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

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

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

    .guided-launch-page .marketing-page-eyebrow {
        margin-bottom: 1rem;
        letter-spacing: 2px;
        font-size: 0.78rem;
    }

    .guided-launch-page .marketing-guided-launch-hero-note {
        margin-top: 1rem;
    }

    .guided-launch-page .marketing-guided-launch-hero-cta {
        display: flex;
        width: 100%;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

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

    .guided-launch-page .marketing-pricing-page-footnote {
        margin-top: 1.65rem;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .guided-launch-page .marketing-guided-launch-how {
        margin-top: 1.35rem;
        padding: 1rem 0.85rem 1.1rem;
        border-radius: 16px;
    }

    .guided-launch-page .marketing-guided-launch-how-title {
        margin-bottom: 1rem;
        font-size: 1.15rem;
    }

    .guided-launch-page .marketing-guided-launch-how-actions {
        margin-top: 0.35rem;
    }

    .guided-launch-page .marketing-guided-launch-how-cta {
        width: 100%;
        justify-content: center;
    }

    .guided-launch-page .marketing-guided-launch-addons {
        padding: 2.15rem 0 2.65rem;
    }

    .guided-launch-page .marketing-guided-launch-addon-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .guided-launch-page .marketing-guided-launch-addon-price {
        width: 100%;
        text-align: left;
    }

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

    .guided-launch-page .marketing-pricing-page-faq-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.25rem;
        gap: 0.65rem;
    }

    .guided-launch-page .marketing-pricing-page-faq-contact-btn {
        width: 100%;
        justify-content: center;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    .guided-launch-page .marketing-guided-launch-addon-card:hover,
    .guided-launch-page .marketing-pricing-page-card:hover {
        transform: none;
    }
}

/* ── Resources download page ── */
.resources-page .marketing-resources-hero {
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
    background: linear-gradient(165deg, var(--marketing-surface-elevated, #f8fafc) 0%, var(--marketing-surface, #fff) 55%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.resources-page .marketing-resources-section {
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.marketing-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.marketing-resource-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.marketing-resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(79, 70, 229, 0.18);
}

.marketing-resource-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.marketing-resource-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    font-size: 1.15rem;
}

.marketing-resource-card--amber .marketing-resource-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.marketing-resource-card--violet .marketing-resource-icon {
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
}

.marketing-resource-card--teal .marketing-resource-icon {
    background: rgba(20, 184, 166, 0.12);
    color: #0d9488;
}

.marketing-resource-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--marketing-text-muted, #64748b);
    white-space: nowrap;
}

.marketing-resource-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--marketing-text, #0f172a);
}

.marketing-resource-subtitle {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--marketing-text-secondary, #475569);
}

.marketing-resource-audience {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--marketing-text-muted, #64748b);
}

.marketing-resource-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.marketing-resource-download {
    min-width: 9.5rem;
    text-align: center;
}

.marketing-resource-meta {
    font-size: 0.8125rem;
    color: var(--marketing-text-muted, #64748b);
}

.marketing-resource-unavailable {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--marketing-text-muted, #64748b);
}

.marketing-resources-note {
    padding: 1.75rem 2rem;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.04);
    border: 1px solid rgba(79, 70, 229, 0.12);
}

.marketing-resources-note-title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--marketing-text, #0f172a);
}

.marketing-resources-note-list {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    color: var(--marketing-text-secondary, #475569);
    line-height: 1.65;
}

.marketing-resources-note-list li + li {
    margin-top: 0.5rem;
}

.marketing-resources-note-foot {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--marketing-text-secondary, #475569);
}

.marketing-resources-note-foot a {
    color: var(--marketing-primary, #4f46e5);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 991px) {
    .marketing-resources-grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .resources-page .marketing-pricing-page-h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .resources-page .marketing-pricing-page-lead {
        font-size: 1rem;
    }

    .marketing-resource-card {
        padding: 1.25rem;
    }

    .marketing-resource-download {
        width: 100%;
    }

    .marketing-resources-note {
        padding: 1.25rem 1.25rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    .marketing-resource-card:hover {
        transform: none;
    }
}
