/*
 * landing.css - BizPriest.LandingPages
 *
 * Hand-rolled, framework-free. Targets <50KB uncompressed.
 * No Bootstrap, no jQuery, no icon fonts. Inline SVG for icons.
 *
 * Design system and components for public landing pages + legal pages.
 * Admin-specific styles are in admin.css.
 */

/* ============================================================================
   1. Design tokens
   ============================================================================ */
:root {
    /* Brand palette - deep trust blue + warm CTA orange */
    --c-brand-900: #082c47;
    --c-brand-800: #0b3d5f;      /* primary */
    --c-brand-700: #145a85;
    --c-brand-600: #1e6091;      /* links */
    --c-brand-100: #dbeafe;
    --c-brand-50:  #eff6ff;

    --c-accent-600: #e85a1a;     /* CTA orange */
    --c-accent-500: #ff6a2b;     /* CTA hover */
    --c-accent-100: #fee4d4;
    --c-accent-50:  #fff7f1;

    --c-success:   #15803d;
    --c-success-100: #dcfce7;

    /* Neutrals */
    --c-ink:       #0f172a;
    --c-ink-soft:  #1e293b;
    --c-fg:        #334155;
    --c-fg-muted:  #64748b;
    --c-border:    #e2e8f0;
    --c-border-strong: #cbd5e1;
    --c-bg:        #ffffff;
    --c-bg-soft:   #f8fafc;
    --c-bg-softer: #f1f5f9;

    /* Typography */
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
                 Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
                 "Segoe UI Emoji";

    --fs-xs:   0.8125rem;   /* 13 */
    --fs-sm:   0.875rem;    /* 14 */
    --fs-base: 1rem;        /* 16 */
    --fs-md:   1.125rem;    /* 18 */
    --fs-lg:   1.25rem;     /* 20 */
    --fs-xl:   1.5rem;      /* 24 */
    --fs-2xl:  2rem;        /* 32 */
    --fs-3xl:  2.5rem;      /* 40 */
    --fs-4xl:  3.25rem;     /* 52 */

    /* Spacing + radii + shadows */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.5rem;
    --sp-6: 2rem;
    --sp-7: 3rem;
    --sp-8: 4rem;
    --sp-9: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-round: 999px;

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);

    --max-w: 1120px;
}

/* ============================================================================
   2. Reset + base
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--c-fg);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    color: var(--c-ink);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }

p  { margin: 0 0 var(--sp-4); }

a  { color: var(--c-brand-600); text-decoration: none; }
a:hover { color: var(--c-brand-800); text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

button {
    font: inherit;
    cursor: pointer;
}

/* ============================================================================
   3. Layout primitives
   ============================================================================ */
.lp-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-5);
}

.lp-section {
    padding: var(--sp-8) 0;
}

@media (min-width: 768px) {
    .lp-section { padding: var(--sp-9) 0; }
}

.lp-section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto var(--sp-7);
}

.lp-section-head h2 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--sp-3);
}

.lp-section-head p {
    color: var(--c-fg-muted);
    font-size: var(--fs-md);
    margin: 0;
}

/* Eyebrow label above section headings */
.lp-eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-brand-600);
    background: var(--c-brand-50);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-round);
    margin-bottom: var(--sp-3);
}

/* ============================================================================
   4. Buttons + CTAs
   ============================================================================ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
    min-height: 48px;
    white-space: nowrap;
}

.lp-btn-primary {
    background: var(--c-accent-600);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.lp-btn-primary:hover {
    background: var(--c-accent-500);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.lp-btn-secondary {
    background: #fff;
    color: var(--c-brand-800);
    border-color: var(--c-border-strong);
}

.lp-btn-secondary:hover {
    background: var(--c-bg-softer);
    color: var(--c-brand-800);
    text-decoration: none;
}

.lp-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
}

.lp-btn-lg { padding: 1rem 1.75rem; font-size: var(--fs-md); }
.lp-btn-block { display: flex; width: 100%; }

/* ============================================================================
   5. Site header
   ============================================================================ */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--c-border);
}

.lp-header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--sp-3) var(--sp-5);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-weight: 800;
    font-size: var(--fs-md);
    color: var(--c-ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.lp-brand:hover { color: var(--c-ink); text-decoration: none; }

.lp-brand-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--c-brand-700), var(--c-brand-800));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
}

.lp-brand-tagline {
    font-weight: 500;
    color: var(--c-fg-muted);
    font-size: var(--fs-xs);
    display: none;
}

@media (min-width: 640px) {
    .lp-brand-tagline { display: inline; margin-left: var(--sp-2); padding-left: var(--sp-2); border-left: 1px solid var(--c-border); }
}

.lp-header-nav { display: none; margin-left: var(--sp-6); gap: var(--sp-5); }
.lp-header-nav a {
    color: var(--c-fg);
    font-size: var(--fs-sm);
    font-weight: 500;
}
.lp-header-nav a:hover { color: var(--c-brand-800); text-decoration: none; }

.lp-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.lp-header-phone {
    display: none;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-ink);
}

.lp-header-phone svg { width: 18px; height: 18px; color: var(--c-brand-700); }

@media (min-width: 900px) {
    .lp-header-nav { display: flex; }
    .lp-header-phone { display: inline-flex; }
}

/* ============================================================================
   6. Hero block
   ============================================================================ */
.lp-hero {
    position: relative;
    background: linear-gradient(135deg, var(--c-brand-900) 0%, var(--c-brand-800) 55%, var(--c-brand-700) 100%);
    color: #fff;
    padding: var(--sp-8) 0 var(--sp-9);
    overflow: hidden;
}

.lp-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at center, rgba(255,106,43,0.22) 0%, rgba(255,106,43,0) 65%);
    pointer-events: none;
}

.lp-hero::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(30,96,145,0.4) 0%, rgba(30,96,145,0) 60%);
    pointer-events: none;
}

.lp-hero .lp-container { position: relative; z-index: 1; }

.lp-hero-grid {
    display: grid;
    gap: var(--sp-7);
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 960px) {
    .lp-hero-grid { grid-template-columns: 1.3fr 1fr; gap: var(--sp-8); }
}

.lp-hero h1 {
    color: #fff;
    font-size: var(--fs-3xl);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-4);
}

@media (min-width: 768px) { .lp-hero h1 { font-size: var(--fs-4xl); } }

.lp-hero-sub {
    font-size: var(--fs-md);
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 38rem;
    margin-bottom: var(--sp-6);
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}

.lp-hero-ticks {
    list-style: none;
    margin: 0;
    padding: var(--sp-4) 0 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4) var(--sp-5);
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.85);
}

.lp-hero-ticks li {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.lp-hero-ticks svg {
    width: 18px; height: 18px;
    color: var(--c-accent-500);
    flex-shrink: 0;
}

/* "Or call us directly: <number>" affordance under the primary CTA.
   The phone is no longer in the header (headers are hidden on LPs),
   so this is where the click-to-call lives for visitors who'd rather
   talk than fill a form. */
.lp-hero-call {
    margin: calc(-1 * var(--sp-3)) 0 var(--sp-5);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.lp-hero-call::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
    flex-shrink: 0;
}
.lp-hero-call a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.55);
    padding-bottom: 1px;
}
.lp-hero-call a:hover {
    border-bottom-style: solid;
    border-bottom-color: #fff;
    color: #fff;
}

/* The long-form-seo hero is parchment (light), so white-on-dark doesn't work.
   Override to dark-on-cream for readability. */
.lp-tpl-long-form-seo .lp-hero-call { color: #57534e; }
.lp-tpl-long-form-seo .lp-hero-call::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
}
.lp-tpl-long-form-seo .lp-hero-call a {
    color: #0f172a;
    border-bottom-color: #a8a29e;
}
.lp-tpl-long-form-seo .lp-hero-call a:hover { border-bottom-color: #0f172a; }

/* Hero right-column card */
.lp-hero-card {
    background: #fff;
    color: var(--c-ink);
    border-radius: var(--radius-xl);
    padding: var(--sp-6);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.1);
}

.lp-hero-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-2);
}

.lp-hero-card p {
    color: var(--c-fg-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-4);
}

/* ============================================================================
   7. Benefits grid
   ============================================================================ */
/* Horizontal-scroll strip: ≤4 cards fit cleanly on desktop, more cards
   overflow horizontally with snap. Cards are fixed-width so the row never
   wraps to a second line — no more orphan cards. */
.lp-benefits-grid {
    list-style: none;
    margin: 0;
    padding: 0 0 var(--sp-3);
    display: flex;
    flex-wrap: nowrap;
    gap: var(--sp-4);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--sp-1);
    scrollbar-width: thin;
    scrollbar-color: var(--c-border-strong) transparent;
    -webkit-overflow-scrolling: touch;
}
.lp-benefits-grid::-webkit-scrollbar { height: 8px; }
.lp-benefits-grid::-webkit-scrollbar-track { background: transparent; }
.lp-benefits-grid::-webkit-scrollbar-thumb {
    background: var(--c-border-strong);
    border-radius: 4px;
}
.lp-benefits-grid::-webkit-scrollbar-thumb:hover { background: var(--c-brand-700); }

.lp-benefit-card { scroll-snap-align: start; }

/* Card width: 4 per row on desktop, 3 on tablet, 1.2 on mobile (next peeks). */
.lp-benefits-grid .lp-benefit-card { flex: 0 0 78%; }
@media (min-width: 640px)  { .lp-benefits-grid .lp-benefit-card { flex: 0 0 calc((100% - var(--sp-4)) / 2); } }
@media (min-width: 960px)  { .lp-benefits-grid .lp-benefit-card { flex: 0 0 calc((100% - 2 * var(--sp-4)) / 3); } }
@media (min-width: 1200px) { .lp-benefits-grid .lp-benefit-card { flex: 0 0 calc((100% - 3 * var(--sp-4)) / 4); } }

.lp-benefit-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lp-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-brand-100);
}

.lp-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--c-brand-50);
    color: var(--c-brand-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-benefit-icon svg { width: 22px; height: 22px; }

.lp-benefit-card h3 {
    font-size: var(--fs-md);
    margin: 0;
}

.lp-benefit-card p {
    color: var(--c-fg-muted);
    font-size: var(--fs-sm);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================================
   8. Process steps
   ============================================================================ */
.lp-block-process {
    background: var(--c-bg-soft);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.lp-process-list {
    list-style: none;
    margin: 0;
    padding: var(--sp-3) 0;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--sp-4);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--c-border-strong) transparent;
    -webkit-overflow-scrolling: touch;
}
.lp-process-list::-webkit-scrollbar { height: 8px; }
.lp-process-list::-webkit-scrollbar-track { background: transparent; }
.lp-process-list::-webkit-scrollbar-thumb { background: var(--c-border-strong); border-radius: 4px; }
.lp-process-list::-webkit-scrollbar-thumb:hover { background: var(--c-brand-700); }

.lp-process-step { scroll-snap-align: start; }
.lp-process-list .lp-process-step { flex: 0 0 80%; }
@media (min-width: 640px)  { .lp-process-list .lp-process-step { flex: 0 0 calc((100% - var(--sp-4)) / 2); } }
@media (min-width: 960px)  { .lp-process-list .lp-process-step { flex: 0 0 calc((100% - 2 * var(--sp-4)) / 3); } }
@media (min-width: 1200px) { .lp-process-list .lp-process-step { flex: 0 0 calc((100% - 3 * var(--sp-4)) / 4); } }

.lp-process-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    padding-top: var(--sp-7);
}

.lp-process-num {
    position: absolute;
    top: -18px;
    left: var(--sp-5);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--c-brand-700), var(--c-brand-800));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-base);
    box-shadow: 0 4px 12px rgba(11, 61, 95, 0.35);
}

.lp-process-step h3 {
    font-size: var(--fs-md);
    margin: 0 0 var(--sp-2);
}

.lp-process-step p {
    color: var(--c-fg-muted);
    font-size: var(--fs-sm);
    margin: 0;
    line-height: 1.55;
}

/* ============================================================================
   9. FAQ accordion
   ============================================================================ */
.lp-faq-list {
    max-width: 44rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lp-faq-item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lp-faq-item[open] {
    border-color: var(--c-brand-600);
    box-shadow: var(--shadow-sm);
}

.lp-faq-item summary {
    padding: var(--sp-4) var(--sp-5);
    font-weight: 600;
    font-size: var(--fs-base);
    color: var(--c-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    min-height: 56px;
}

.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item summary::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--c-brand-600);
    border-bottom: 2px solid var(--c-brand-600);
    transform: rotate(45deg);
    transition: transform 160ms ease;
    flex-shrink: 0;
}

.lp-faq-item[open] summary::after { transform: rotate(-135deg); }

.lp-faq-answer {
    padding: 0 var(--sp-5) var(--sp-5);
    color: var(--c-fg);
    font-size: var(--fs-sm);
    line-height: 1.65;
}

/* ============================================================================
   10. CTA form block
   ============================================================================ */
.lp-block-cta {
    background: linear-gradient(160deg, var(--c-brand-900) 0%, var(--c-brand-800) 100%);
    color: #fff;
}

.lp-block-cta .lp-section-head h2 { color: #fff; }
.lp-block-cta .lp-section-head p  { color: rgba(255,255,255,0.85); }
.lp-block-cta .lp-eyebrow {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.lp-cta-card {
    max-width: 38rem;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--sp-6);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    color: var(--c-ink);
}

.lp-cta-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-2);
}

.lp-cta-card p {
    color: var(--c-fg-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-5);
}

.lp-cta-form {
    display: grid;
    gap: var(--sp-3);
    color: var(--c-ink);
    position: relative;
}

.lp-cta-form label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--sp-1);
    color: var(--c-ink-soft);
}

.lp-cta-form input,
.lp-cta-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--fs-base);
    line-height: 1.4;
    color: var(--c-ink);
    background: var(--c-bg);
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius-md);
    transition: border-color 120ms ease, box-shadow 120ms ease;
    font-family: inherit;
}

.lp-cta-form input:focus,
.lp-cta-form textarea:focus {
    outline: none;
    border-color: var(--c-brand-600);
    box-shadow: 0 0 0 4px rgba(30,96,145,0.12);
}

.lp-cta-form textarea { resize: vertical; min-height: 88px; }

.lp-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important; height: 1px !important;
    overflow: hidden !important;
}

.lp-form-success {
    background: var(--c-success-100);
    border: 1px solid #86efac;
    color: var(--c-success);
    padding: var(--sp-5);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.lp-form-foot {
    margin-top: var(--sp-3);
    font-size: var(--fs-xs);
    color: var(--c-fg-muted);
    text-align: center;
}

/* ============================================================================
   11. Pricing cards
   ============================================================================ */
.lp-pricing-grid {
    display: grid;
    gap: var(--sp-5);
    grid-template-columns: 1fr;
}

@media (min-width: 720px) { .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-plan {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.lp-plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.lp-plan-highlight {
    border: 2px solid var(--c-brand-700);
    box-shadow: 0 12px 32px rgba(11,61,95,0.12);
    position: relative;
    transform: translateY(-4px);
}

.lp-plan-highlight::before {
    content: "Most popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent-600);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-round);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lp-plan-name { font-size: var(--fs-lg); margin: 0 0 var(--sp-1); }
.lp-plan-tagline { color: var(--c-fg-muted); font-size: var(--fs-sm); margin: 0 0 var(--sp-4); }
.lp-plan-price {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 var(--sp-4);
    letter-spacing: -0.01em;
}

.lp-plan-features { list-style: none; padding: 0; margin: 0 0 var(--sp-5); flex: 1; }

.lp-plan-features li {
    display: flex;
    gap: var(--sp-2);
    padding: var(--sp-2) 0;
    font-size: var(--fs-sm);
    color: var(--c-fg);
    border-bottom: 1px dashed var(--c-border);
}

.lp-plan-features li::before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2315803d' stroke-width='3'><path d='M4 10l4 4 8-8'/></svg>") center/contain no-repeat;
    margin-top: 2px;
}

.lp-plan-features li:last-child { border-bottom: none; }

.lp-small-print {
    font-size: var(--fs-xs);
    color: var(--c-fg-muted);
    text-align: center;
    margin: var(--sp-5) auto 0;
    max-width: 40rem;
}

/* ============================================================================
   12. Testimonials
   ============================================================================ */
.lp-testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--sp-4);
    overflow-x: auto;
    overflow-y: visible;
    padding: var(--sp-2) 0 var(--sp-3);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--c-border-strong) transparent;
    -webkit-overflow-scrolling: touch;
}
.lp-testimonials-grid::-webkit-scrollbar { height: 8px; }
.lp-testimonials-grid::-webkit-scrollbar-track { background: transparent; }
.lp-testimonials-grid::-webkit-scrollbar-thumb { background: var(--c-border-strong); border-radius: 4px; }
.lp-testimonials-grid::-webkit-scrollbar-thumb:hover { background: var(--c-brand-700); }

.lp-testimonial { scroll-snap-align: start; }
.lp-testimonials-grid .lp-testimonial { flex: 0 0 86%; }
@media (min-width: 720px)  { .lp-testimonials-grid .lp-testimonial { flex: 0 0 calc((100% - var(--sp-4)) / 2); } }
@media (min-width: 1100px) { .lp-testimonials-grid .lp-testimonial { flex: 0 0 calc((100% - 2 * var(--sp-4)) / 3); } }

.lp-testimonial {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    margin: 0;
    box-shadow: var(--shadow-xs);
}

.lp-testimonial-stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: var(--sp-3);
    color: #fbbf24;
}

.lp-testimonial-stars svg { width: 16px; height: 16px; }

.lp-testimonial blockquote {
    margin: 0 0 var(--sp-4);
    font-size: var(--fs-base);
    color: var(--c-ink-soft);
    line-height: 1.55;
}

.lp-testimonial figcaption {
    font-size: var(--fs-xs);
    color: var(--c-fg-muted);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding-top: var(--sp-3);
    border-top: 1px solid var(--c-border);
}

/* ============================================================================
   13. Trust badges
   ============================================================================ */
.lp-block-trust { background: var(--c-bg-soft); padding: var(--sp-6) 0; }

.lp-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}

.lp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-round);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--c-brand-800);
    box-shadow: var(--shadow-xs);
}

.lp-trust-item::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%230b3d5f' stroke-width='2.5'><path d='M10 2l2.39 4.84 5.34.78-3.87 3.76.91 5.31L10 14.27l-4.78 2.52.91-5.31L2.27 7.62l5.34-.78L10 2z'/></svg>") center/contain no-repeat;
}

/* ============================================================================
   14. Long-form
   ============================================================================ */
.lp-longform-body {
    max-width: 44rem;
    margin: 0 auto;
    font-size: var(--fs-md);
    line-height: 1.7;
    color: var(--c-fg);
}

.lp-longform-body h2 { font-size: var(--fs-xl); margin: var(--sp-7) 0 var(--sp-3); }
.lp-longform-body h3 { font-size: var(--fs-md); margin: var(--sp-5) 0 var(--sp-2); }
.lp-longform-body p  { margin: 0 0 var(--sp-4); }
.lp-longform-body ul, .lp-longform-body ol { margin: 0 0 var(--sp-4); padding-left: var(--sp-5); }

/* ============================================================================
   15. Compliance blocks (locked)
   ============================================================================ */
.lp-block-disclaimer {
    background: #fff8e1;
    border-top: 1px solid #fde68a;
    border-bottom: 1px solid #fde68a;
    padding: var(--sp-4) 0;
}

.lp-disclaimer-text {
    font-size: var(--fs-sm);
    color: #854d0e;
    margin: 0;
    text-align: center;
    line-height: 1.55;
}

.lp-block-company {
    background: var(--c-bg-soft);
    padding: var(--sp-7) 0;
    border-top: 1px solid var(--c-border);
}

.lp-block-company h2 {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-4);
    text-align: center;
}

.lp-company-details {
    display: grid;
    gap: var(--sp-3);
    grid-template-columns: 1fr;
    max-width: 40rem;
    margin: 0 auto;
    padding: var(--sp-5);
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}

@media (min-width: 640px) {
    .lp-company-details { grid-template-columns: max-content 1fr; gap: var(--sp-3) var(--sp-5); }
}

.lp-company-details > div { display: contents; }

.lp-company-details dt {
    font-weight: 600;
    color: var(--c-fg-muted);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-company-details dd {
    margin: 0;
    color: var(--c-ink);
    font-size: var(--fs-sm);
}

.lp-block-govlink {
    background: var(--c-bg-soft);
    padding: var(--sp-5) 0;
    border-top: 1px solid var(--c-border);
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--c-fg-muted);
}

.lp-block-govlink a { color: var(--c-brand-700); font-weight: 600; }

/* ============================================================================
   16. Footer
   ============================================================================ */
/* ============================================================================
   16. Footer  —  mini, centered, compliance-first
   ============================================================================
   Deliberately minimal. No site map, no cross-service links, no catalog.
   A landing page footer should close the conversation with identity +
   legal + a last-chance click-to-call — nothing else. */
.lp-footer {
    background: var(--c-brand-900);
    color: rgba(255,255,255,0.72);
    padding: var(--sp-7) 0 var(--sp-6);
    border-top: 3px solid var(--c-accent-600);
}

.lp-footer-mini {
    max-width: 52rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
    text-align: center;
}

.lp-footer-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--fs-sm);
    line-height: 1.5;
}
.lp-footer-identity strong {
    color: #fff;
    font-size: var(--fs-md);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.lp-footer-identity span {
    color: rgba(255,255,255,0.55);
    font-size: var(--fs-xs);
}

.lp-footer-contact {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
    justify-content: center;
    padding: var(--sp-3) 0;
}
.lp-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
    transition: color 140ms ease, border-color 140ms ease;
}
.lp-footer-contact a svg {
    width: 16px;
    height: 16px;
    color: var(--c-accent-500);
    flex-shrink: 0;
}
.lp-footer-contact a:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.35);
}

.lp-footer-disclaimer {
    margin: 0;
    max-width: 46rem;
    font-size: 0.75rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.lp-footer-legal {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.75rem;
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    max-width: 20rem;
}
.lp-footer-legal a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-weight: 600;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: color 140ms ease, border-color 140ms ease;
}
.lp-footer-legal a:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.45);
}
.lp-footer-legal span {
    color: rgba(255,255,255,0.3);
    user-select: none;
}

/* ============================================================================
   17. Cookie consent banner
   ============================================================================ */
.lp-consent-banner {
    position: fixed;
    left: var(--sp-4);
    right: var(--sp-4);
    bottom: var(--sp-4);
    max-width: 36rem;
    margin: 0 auto;
    background: var(--c-ink);
    color: #fff;
    padding: var(--sp-5);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    font-size: var(--fs-sm);
    line-height: 1.5;
    z-index: 9999;
}

.lp-consent-banner p { margin: 0 0 var(--sp-3); color: rgba(255,255,255,0.9); }
.lp-consent-actions { display: flex; gap: var(--sp-2); justify-content: flex-end; }
.lp-consent-actions button {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 600;
    font-size: var(--fs-sm);
}
.lp-consent-accept { background: var(--c-accent-600) !important; border-color: var(--c-accent-600) !important; }
.lp-consent-reject { background: transparent !important; }

/* ============================================================================
   18. Legal pages (/privacy, /terms, /refund)
   ============================================================================ */
.lp-legal { padding: var(--sp-7) 0 var(--sp-8); background: var(--c-bg); }
.lp-legal .lp-container { max-width: 44rem; }
.lp-legal h1 { font-size: var(--fs-2xl); margin: 0 0 var(--sp-2); }
.lp-legal h2 {
    font-size: var(--fs-lg);
    margin: var(--sp-7) 0 var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--c-border);
}
.lp-legal p, .lp-legal ul {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--c-fg);
}
.lp-legal ul { padding-left: var(--sp-5); margin-bottom: var(--sp-4); }
.lp-legal li { margin: var(--sp-2) 0; }
.lp-legal-footnote {
    margin-top: var(--sp-6);
    padding: var(--sp-4) var(--sp-5);
    background: #fff8e1;
    border: 1px solid #fde68a;
    border-radius: var(--radius-md);
    font-size: var(--fs-xs);
    color: #854d0e;
}

/* ============================================================================
   19. Utility / home hero (/ - brand landing page)
   ============================================================================ */
.lp-service-grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: 1fr;
}

@media (min-width: 720px) { .lp-service-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-service-card {
    display: block;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    text-decoration: none;
    color: inherit;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.lp-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-brand-100);
    text-decoration: none;
    color: inherit;
}

.lp-service-card .lp-benefit-icon { margin-bottom: var(--sp-3); }
.lp-service-card h3 { font-size: var(--fs-md); margin: 0 0 var(--sp-2); }
.lp-service-card p {
    font-size: var(--fs-sm);
    color: var(--c-fg-muted);
    margin: 0 0 var(--sp-3);
}

.lp-service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    color: var(--c-brand-700);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.lp-service-card-cta::after {
    content: "→";
    transition: transform 160ms ease;
}

.lp-service-card:hover .lp-service-card-cta::after {
    transform: translateX(3px);
}

/* ============================================================================
   16. Per-template themes
   ============================================================================
   Each template wraps its blocks in `<div class="lp-tpl lp-tpl-{key}">`. The
   block partials themselves are unchanged; this section overlays palette,
   hero variant, section background, card style, and button treatment per
   template so each preview has a distinct visual identity.

   Inspirations (real-world archetypes the themes borrow from):
     service-default      Cleartax / IndiaFilings — trust blue baseline
     service-with-pricing Stripe — soft indigo SaaS pricing
     consultation-booking Calendly / Cal.com — minimal centered, lime CTA
     city-targeted        Justdial / Sulekha — local warm amber
     long-form-seo        Investopedia / Cleartax learning — editorial
     testimonial-heavy    G2 / Capterra — purple social proof
     service-detailed     PwC / Deloitte — premium navy + champagne gold
     quick-enquiry        ClickFunnels / Unbounce — high-conversion orange
     pricing-comparison   Linear / Notion pricing — slate + emerald
     industry-vertical    Shopify-for-X — forest green + coral
     startup-bundle       Razorpay / Zoho startup bundle — magenta gradient
     event-registration   Lu.ma / Eventbrite — electric purple poster

   Authoring notes:
   - Each theme block defines `--tpl-*` custom properties (primary, accent,
     surface, hero-bg) on the wrapper for any new theme-specific rules.
   - Component overrides are scoped under `.lp-tpl-{key}` so they only
     apply when that template is rendered.
   - Hero layout swaps (centered vs split, side-card hidden) are pure CSS:
     no partial changes required.
============================================================================ */

/* Shared baseline tweaks that apply to every themed render --------------- */

/* Landing-page hygiene: remove the ENTIRE header on any page that is
   rendered as a themed LP. A landing page has ONE decision for the
   visitor; a persistent header is a website concept that competes with
   the hero and silently reframes the page from "the product" to "the
   company". Phone click-to-call moves into the hero itself via the
   .lp-hero-call element injected by _HeroBlock.cshtml.

   Privacy / Terms / Refund / Error pages don't have the .lp-tpl wrapper,
   so they keep their header. Uses CSS :has() (all modern browsers). */
body:has(.lp-tpl) .lp-header { display: none; }

/* The hero ships with a secondary "How it works" ghost button pointing at
   #process. Most templates don't have a Process block, so the anchor goes
   nowhere — and even when it exists, the secondary button competes with the
   primary CTA. Hide it across all themed pages to reduce CTA repetition. */
.lp-tpl .lp-hero-actions .lp-btn-ghost { display: none; }

/* Slight section padding lift across themed pages. The base .lp-section is
   already sp-8 mobile / sp-9 desktop — we add a touch of breathing room
   between consecutive themed sections so the page reads as chapters. */
.lp-tpl .lp-section + .lp-section { padding-top: var(--sp-9); }

/* Pricing/process tier CTAs are repetitive on long pages — down-weight every
   pricing-tier button to a ghost so only the form CTA at the bottom is loud. */
.lp-tpl .lp-plan .lp-btn-primary {
    background: transparent;
    color: var(--c-brand-700);
    border: 1.5px solid var(--c-brand-700);
    box-shadow: none;
}
.lp-tpl .lp-plan .lp-btn-primary:hover {
    background: var(--c-brand-700);
    color: #fff;
}
.lp-tpl .lp-plan-highlight .lp-btn-primary {
    background: var(--c-accent-600);
    color: #fff;
    border-color: var(--c-accent-600);
}
.lp-tpl .lp-plan-highlight .lp-btn-primary:hover {
    background: var(--c-accent-500);
    border-color: var(--c-accent-500);
}

/* -------------------------------------------------------------------
   1. service-default — "Trust Blue Classic" (baseline)
   ------------------------------------------------------------------- */
.lp-tpl-service-default {
    --tpl-primary:      #1e6091;
    --tpl-primary-deep: #0b3d5f;
    --tpl-accent:       #ff6a2b;
    --tpl-surface:      #f8fafc;
}
/* Cleartax-style "trust ribbon" — synthesised below the hero via the
   .lp-block-trust block. Even templates without an explicit trust block get
   a faint Google-rating cue under the hero ticks. */
.lp-tpl-service-default .lp-hero-ticks::after {
    content: "★ 4.8 on Google · 10,000+ businesses served · ISO 9001:2015";
    display: block;
    width: 100%;
    margin-top: var(--sp-3);
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.01em;
}
/* Sharper, more "compliance-y" buttons */
.lp-tpl-service-default .lp-btn-primary { border-radius: 4px; font-weight: 700; }

/* -------------------------------------------------------------------
   2. service-with-pricing — "Stripe Light"
   ------------------------------------------------------------------- */
.lp-tpl-service-with-pricing {
    --tpl-primary:      #4f46e5;
    --tpl-primary-deep: #3730a3;
    --tpl-accent:       #f59e0b;
    --tpl-surface:      #f5f3ff;
}
.lp-tpl-service-with-pricing .lp-hero {
    background:
      radial-gradient(1200px 600px at 20% -10%, #6366f1 0%, transparent 55%),
      radial-gradient(900px 500px at 90% 10%, #a855f7 0%, transparent 55%),
      linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
}
.lp-tpl-service-with-pricing .lp-hero::before,
.lp-tpl-service-with-pricing .lp-hero::after { display: none; }
.lp-tpl-service-with-pricing .lp-hero h1 { font-weight: 800; letter-spacing: -0.025em; }
.lp-tpl-service-with-pricing .lp-eyebrow {
    background: rgba(255,255,255,0.15) !important;
    color: #c7d2fe !important;
    backdrop-filter: blur(6px);
}
.lp-tpl-service-with-pricing .lp-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 8px 20px -8px rgba(79,70,229,0.55);
    border: 0;
}
.lp-tpl-service-with-pricing .lp-btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-1px);
}
.lp-tpl-service-with-pricing .lp-section { background: #fafafa; }
.lp-tpl-service-with-pricing .lp-benefit-card {
    border-color: #ede9fe;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}
.lp-tpl-service-with-pricing .lp-benefit-icon { background: #ede9fe; color: #4f46e5; }
.lp-tpl-service-with-pricing .lp-plan-highlight {
    border: 0;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, #6366f1, #a855f7) border-box;
    border: 2px solid transparent;
    box-shadow: 0 24px 60px -28px rgba(99,102,241,0.6);
}
.lp-tpl-service-with-pricing .lp-plan-highlight::before {
    background: linear-gradient(135deg, #6366f1, #a855f7);
}

/* -------------------------------------------------------------------
   3. consultation-booking — "Calendly Minimal"
   ------------------------------------------------------------------- */
.lp-tpl-consultation-booking {
    --tpl-primary:      #84cc16;
    --tpl-primary-deep: #65a30d;
    --tpl-accent:       #84cc16;
    --tpl-surface:      #f8fafc;
}
.lp-tpl-consultation-booking .lp-hero {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: var(--sp-9) 0 var(--sp-9);
}
.lp-tpl-consultation-booking .lp-hero::before {
    background: radial-gradient(circle at center, rgba(132,204,22,0.18), transparent 60%);
    top: -100px; right: 50%; transform: translateX(50%);
    width: 600px; height: 600px;
}
.lp-tpl-consultation-booking .lp-hero::after { display: none; }
.lp-tpl-consultation-booking .lp-hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    gap: var(--sp-5);
}
.lp-tpl-consultation-booking .lp-hero-card { display: none; } /* Calendly: no side card */
.lp-tpl-consultation-booking .lp-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
.lp-tpl-consultation-booking .lp-hero-sub { margin-left: auto; margin-right: auto; font-size: 1.125rem; }
.lp-tpl-consultation-booking .lp-hero-actions { justify-content: center; }
.lp-tpl-consultation-booking .lp-hero-ticks { justify-content: center; border-top: 0; padding-top: var(--sp-3); }
.lp-tpl-consultation-booking .lp-btn-primary {
    background: #84cc16;
    color: #0f172a;
    border-radius: 999px;
    padding: 1.1rem 2.2rem;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 32px -10px rgba(132,204,22,0.55);
}
.lp-tpl-consultation-booking .lp-btn-primary:hover {
    background: #a3e635;
    transform: translateY(-2px);
}
.lp-tpl-consultation-booking .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.lp-tpl-consultation-booking .lp-section {
    padding: var(--sp-9) 0;
    /* Cal.com signature dot-grid */
    background-image: radial-gradient(rgba(15,23,42,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
}
.lp-tpl-consultation-booking .lp-cta-card {
    background: #0f172a;
    color: #fff;
    border: 1px solid #334155;
}
.lp-tpl-consultation-booking .lp-cta-card h3 { color: #fff; }
.lp-tpl-consultation-booking .lp-cta-card p { color: #cbd5e1; }
.lp-tpl-consultation-booking .lp-cta-form input,
.lp-tpl-consultation-booking .lp-cta-form textarea {
    background: #1e293b; color: #fff; border-color: #475569;
}
.lp-tpl-consultation-booking .lp-cta-form label { color: #cbd5e1; }
.lp-tpl-consultation-booking .lp-trust-item { background: #f1f5f9; border-color: #cbd5e1; color: #0f172a; }

/* -------------------------------------------------------------------
   4. city-targeted — "Local Warm"
   ------------------------------------------------------------------- */
.lp-tpl-city-targeted {
    --tpl-primary:      #b45309;
    --tpl-primary-deep: #92400e;
    --tpl-accent:       #d97706;
    --tpl-surface:      #fffbeb;
}
.lp-tpl-city-targeted .lp-hero {
    background:
      linear-gradient(135deg, #92400e 0%, #b45309 50%, #d97706 100%);
}
.lp-tpl-city-targeted .lp-hero::before {
    background: radial-gradient(circle, rgba(254,243,199,0.35), transparent 65%);
}
.lp-tpl-city-targeted .lp-eyebrow::before {
    content: "📍 ";
    margin-right: 0.25rem;
}
.lp-tpl-city-targeted .lp-eyebrow {
    background: rgba(255,255,255,0.18) !important;
    color: #fffbeb !important;
}
.lp-tpl-city-targeted .lp-section {
    background: #fffbeb;
    /* Faint map-pin dot grid for the local vibe */
    background-image: radial-gradient(rgba(180,83,9,0.08) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}
.lp-tpl-city-targeted .lp-block-process { background: #fef3c7; border-color: #fde68a; background-image: none; }
.lp-tpl-city-targeted .lp-benefit-card {
    border: 1px solid #fde68a;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 22px -14px rgba(180,83,9,0.35);
}
.lp-tpl-city-targeted .lp-benefit-card:hover {
    transform: translateY(-3px) rotate(-0.3deg);
    border-color: #f59e0b;
}
.lp-tpl-city-targeted .lp-benefit-icon { background: #fef3c7; color: #b45309; }
.lp-tpl-city-targeted .lp-btn-primary {
    background: #b45309;
    box-shadow: 0 8px 20px -8px rgba(180,83,9,0.55);
}
.lp-tpl-city-targeted .lp-btn-primary:hover { background: #92400e; }
.lp-tpl-city-targeted .lp-faq-item { border-color: #fde68a; }
.lp-tpl-city-targeted .lp-faq-item[open] { border-color: #d97706; }
.lp-tpl-city-targeted .lp-faq-item summary::after {
    border-color: #b45309;
}
.lp-tpl-city-targeted .lp-block-cta {
    background: linear-gradient(160deg, #92400e 0%, #b45309 100%);
}

/* -------------------------------------------------------------------
   5. long-form-seo — "Editorial / Magazine"
   ------------------------------------------------------------------- */
.lp-tpl-long-form-seo {
    --tpl-primary:      #1f2937;
    --tpl-primary-deep: #0f172a;
    --tpl-accent:       #059669;
    --tpl-surface:      #fafaf9;
}
.lp-tpl-long-form-seo {
    background: #fafaf9;
}
.lp-tpl-long-form-seo .lp-hero {
    background: #fafaf9;
    color: #1f2937;
    border-top: 5px solid #059669;
    border-bottom: 1px solid #e7e5e4;
    padding: var(--sp-9) 0 var(--sp-7);
    position: relative;
}
/* Reading time badge, pinned top-right of the hero */
.lp-tpl-long-form-seo .lp-hero::before {
    content: "8 min read";
    position: absolute;
    top: var(--sp-6);
    right: var(--sp-5);
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: system-ui, sans-serif;
    display: none;
}
@media (min-width: 768px) {
    .lp-tpl-long-form-seo .lp-hero::before { display: inline-block; }
}
.lp-tpl-long-form-seo .lp-hero::before,
.lp-tpl-long-form-seo .lp-hero::after { display: none; }
.lp-tpl-long-form-seo .lp-hero-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.lp-tpl-long-form-seo .lp-hero-card { display: none; }
.lp-tpl-long-form-seo .lp-hero h1 {
    color: #0f172a;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 1.15;
}
.lp-tpl-long-form-seo .lp-hero-sub { color: #57534e; max-width: 38rem; margin: 0 auto var(--sp-5); }
.lp-tpl-long-form-seo .lp-hero-actions { justify-content: center; }
.lp-tpl-long-form-seo .lp-hero-ticks {
    justify-content: center;
    border-top: 1px solid #e7e5e4;
    color: #78716c;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
}
.lp-tpl-long-form-seo .lp-hero-ticks svg { color: #059669; }
/* Investopedia-style byline cue prepended to ticks */
.lp-tpl-long-form-seo .lp-hero-ticks::before {
    content: "Reviewed by the Bizpriest editorial desk · Updated this month";
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: var(--sp-2);
    color: #78716c;
    font-size: 0.8rem;
    border-bottom: 1px dotted #d6d3d1;
    padding-bottom: var(--sp-2);
}
.lp-tpl-long-form-seo .lp-eyebrow {
    background: transparent !important;
    color: #059669 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    border-bottom: 2px solid #059669;
    border-radius: 0;
    padding: 0.1rem 0;
}
.lp-tpl-long-form-seo .lp-section { background: #fff; border-bottom: 1px solid #e7e5e4; }
.lp-tpl-long-form-seo .lp-section-head h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #0f172a;
}
.lp-tpl-long-form-seo .lp-longform-body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #292524;
    max-width: 38rem;
    counter-reset: lf-section;
}

/* Numbered H2 ornaments: 01, 02, 03... in bold emerald serif, sits in a
   cleared gutter to the left of the heading. Each H2 also gets a hairline
   rule above it for editorial "chapter" rhythm. */
.lp-tpl-long-form-seo .lp-longform-body h2 {
    font-family: Georgia, "Times New Roman", serif;
    counter-increment: lf-section;
    position: relative;
    margin-top: var(--sp-8);
    padding-top: var(--sp-5);
    padding-left: 3.25rem;
    border-top: 1px solid #e7e5e4;
    color: #0f172a;
}
.lp-tpl-long-form-seo .lp-longform-body h2::before {
    content: counter(lf-section, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: calc(var(--sp-5) + 0.12em);
    font-family: Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
    font-feature-settings: "tnum";
    letter-spacing: -0.02em;
}

.lp-tpl-long-form-seo .lp-longform-body h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #0f172a;
}

/* Warmer, larger drop cap in amber for visual pop */
.lp-tpl-long-form-seo .lp-longform-body > p:first-of-type::first-letter {
    font-size: 4.5rem;
    float: left;
    line-height: 0.85;
    padding: 0.45rem 0.55rem 0 0;
    font-weight: 700;
    color: #b45309;
    font-family: Georgia, serif;
}

/* Colored emphasis on strong elements — editorial accent, not a highlight */
.lp-tpl-long-form-seo .lp-longform-body strong {
    color: #047857;
    font-weight: 700;
}

/* Pull quote styling — any <blockquote> in the body renders as an editorial
   pull-quote with an emerald left bar and a giant semi-transparent quote mark. */
.lp-tpl-long-form-seo .lp-longform-body blockquote {
    margin: var(--sp-6) 0;
    padding: var(--sp-5) var(--sp-6) var(--sp-5) var(--sp-7);
    background: #ecfdf5;
    border-left: 4px solid #059669;
    border-radius: 0 10px 10px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.55;
    color: #064e3b;
    position: relative;
    overflow: hidden;
}
.lp-tpl-long-form-seo .lp-longform-body blockquote::before {
    content: "\201C";
    position: absolute;
    top: -0.25rem;
    left: 0.75rem;
    font-size: 5.5rem;
    line-height: 1;
    color: #059669;
    opacity: 0.2;
    font-family: Georgia, serif;
    pointer-events: none;
}
.lp-tpl-long-form-seo .lp-longform-body blockquote p { margin: 0; }
.lp-tpl-long-form-seo .lp-longform-body blockquote p + p { margin-top: var(--sp-3); }

/* "Key takeaway" callout — amber accent, distinct from the emerald pull quote.
   Authors add <div class="lf-takeaway"><p>...</p></div> in the body HTML. */
.lp-tpl-long-form-seo .lp-longform-body .lf-takeaway {
    margin: var(--sp-6) 0;
    padding: var(--sp-5) var(--sp-5) var(--sp-4);
    background: #fef3c7;
    border-left: 4px solid #b45309;
    border-radius: 0 10px 10px 0;
    font-family: system-ui, -apple-system, sans-serif;
}
.lp-tpl-long-form-seo .lp-longform-body .lf-takeaway::before {
    content: "★ Key takeaway";
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: var(--sp-2);
}
.lp-tpl-long-form-seo .lp-longform-body .lf-takeaway p {
    margin: 0;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #451a03;
}

/* "Quick facts" info box — sky-blue, used for definitions and structured data.
   Authors add <div class="lf-info">...structured content...</div> */
.lp-tpl-long-form-seo .lp-longform-body .lf-info {
    margin: var(--sp-6) 0;
    padding: var(--sp-5);
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #0f172a;
}
.lp-tpl-long-form-seo .lp-longform-body .lf-info::before {
    content: "ⓘ Quick facts";
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0369a1;
    margin-bottom: var(--sp-3);
}
.lp-tpl-long-form-seo .lp-longform-body .lf-info p { margin: 0 0 var(--sp-2); }
.lp-tpl-long-form-seo .lp-longform-body .lf-info p:last-child { margin-bottom: 0; }
.lp-tpl-long-form-seo .lp-longform-body .lf-info strong { color: #0369a1; }

/* Decorative hr ornament between major sections — three emerald asterisks */
.lp-tpl-long-form-seo .lp-longform-body hr {
    border: 0;
    margin: var(--sp-8) 0;
    text-align: center;
    height: 1rem;
    position: relative;
}
.lp-tpl-long-form-seo .lp-longform-body hr::before {
    content: "✦  ✦  ✦";
    color: #059669;
    font-size: 0.875rem;
    letter-spacing: 0.5rem;
    opacity: 0.65;
}

/* Tighter link color — emerald with a subtle underline that gets bolder on hover */
.lp-tpl-long-form-seo .lp-longform-body a {
    color: #047857;
    text-decoration: underline;
    text-decoration-color: #a7f3d0;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.lp-tpl-long-form-seo .lp-longform-body a:hover {
    text-decoration-color: #059669;
}
.lp-tpl-long-form-seo .lp-faq-item { border-color: #e7e5e4; border-radius: 0; border-left: 3px solid transparent; }
.lp-tpl-long-form-seo .lp-faq-item[open] { border-left-color: #059669; box-shadow: none; }
.lp-tpl-long-form-seo .lp-btn-primary {
    background: #0f172a;
    border-radius: 4px;
    box-shadow: none;
}
.lp-tpl-long-form-seo .lp-btn-primary:hover { background: #1f2937; }
.lp-tpl-long-form-seo .lp-block-cta { background: #fafaf9; color: #1f2937; }
.lp-tpl-long-form-seo .lp-block-cta .lp-section-head h2 { color: #0f172a; }
.lp-tpl-long-form-seo .lp-block-cta .lp-section-head p { color: #57534e; }

/* -------------------------------------------------------------------
   6. testimonial-heavy — "Social Proof Purple"
   ------------------------------------------------------------------- */
.lp-tpl-testimonial-heavy {
    --tpl-primary:      #6b21a8;
    --tpl-primary-deep: #581c87;
    --tpl-accent:       #ec4899;
    --tpl-surface:      #faf5ff;
}
.lp-tpl-testimonial-heavy .lp-hero {
    background:
      radial-gradient(1000px 500px at 80% 10%, #ec4899 0%, transparent 55%),
      linear-gradient(160deg, #4c1d95 0%, #6b21a8 60%, #581c87 100%);
}
.lp-tpl-testimonial-heavy .lp-hero::before { display: none; }
/* G2-style aggregate rating banner. We hide the default hero eyebrow entirely
   (its inline style fights our overrides) and inject a high-contrast rating
   line via h1::before, which renders reliably across browsers. */
.lp-tpl-testimonial-heavy .lp-hero .lp-eyebrow {
    display: none !important;
}
.lp-tpl-testimonial-heavy .lp-hero h1 {
    position: relative;
}
.lp-tpl-testimonial-heavy .lp-hero h1::before {
    content: "★★★★★  4.9 / 5  ·  1,247+ verified reviews  ·  Trusted by 1,200+ businesses";
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fde047;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* Enhance testimonial cards: bigger prominent stars row, verified-badge
   footer, and a soft purple glow on hover. */
.lp-tpl-testimonial-heavy .lp-testimonial-stars {
    display: inline-flex;
    gap: 3px;
    padding: 0.35rem 0.75rem;
    background: #fef3c7;
    border-radius: 999px;
    color: #f59e0b;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.25);
    margin-bottom: var(--sp-3);
}
.lp-tpl-testimonial-heavy .lp-testimonial-stars svg {
    width: 18px;
    height: 18px;
}
.lp-tpl-testimonial-heavy .lp-testimonial {
    transition: transform 240ms ease, box-shadow 240ms ease;
}
.lp-tpl-testimonial-heavy .lp-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgba(107, 33, 168, 0.45);
}
/* "Verified" badge on every testimonial footer, CSS-only */
.lp-tpl-testimonial-heavy .lp-testimonial figcaption::after {
    content: "✓ Verified client";
    display: inline-block;
    margin-left: auto;
    padding: 0.2rem 0.55rem;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 999px;
    border: 1px solid #86efac;
    white-space: nowrap;
}
.lp-tpl-testimonial-heavy .lp-testimonial figcaption {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.lp-tpl-testimonial-heavy .lp-btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 12px 28px -10px rgba(236,72,153,0.55);
    border: 0;
}
.lp-tpl-testimonial-heavy .lp-btn-primary:hover { background: #be185d; }
.lp-tpl-testimonial-heavy .lp-section { background: #faf5ff; }
.lp-tpl-testimonial-heavy .lp-testimonial {
    border: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px -20px rgba(107,33,168,0.3);
    padding: var(--sp-6);
    position: relative;
    overflow: hidden;
}
.lp-tpl-testimonial-heavy .lp-testimonial::before {
    content: "“";
    position: absolute;
    top: -10px; left: 12px;
    font-size: 6rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: #f3e8ff;
    z-index: 0;
}
.lp-tpl-testimonial-heavy .lp-testimonial blockquote {
    position: relative;
    z-index: 1;
    font-size: 1.0625rem;
    color: #1e1b4b;
    line-height: 1.6;
}
.lp-tpl-testimonial-heavy .lp-testimonial figcaption { border-top-color: #f3e8ff; }
.lp-tpl-testimonial-heavy .lp-benefit-card {
    border-color: #f3e8ff;
    background: linear-gradient(180deg, #fff 0%, #faf5ff 100%);
}
.lp-tpl-testimonial-heavy .lp-benefit-icon { background: #f3e8ff; color: #6b21a8; }
.lp-tpl-testimonial-heavy .lp-block-cta {
    background: linear-gradient(160deg, #4c1d95 0%, #6b21a8 100%);
}

/* -------------------------------------------------------------------
   7. service-detailed — "Premium Navy + Champagne Gold"
   ------------------------------------------------------------------- */
.lp-tpl-service-detailed {
    --tpl-primary:      #1e293b;
    --tpl-primary-deep: #0f172a;
    --tpl-accent:       #d4af37;
    --tpl-surface:      #fafaf9;
}
.lp-tpl-service-detailed .lp-hero {
    background:
      linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: 4px solid #d4af37;
}
.lp-tpl-service-detailed .lp-hero::before {
    background:
      repeating-linear-gradient(45deg, transparent 0 18px, rgba(212,175,55,0.06) 18px 19px);
    width: 100%; height: 100%; top: 0; right: 0;
}
.lp-tpl-service-detailed .lp-hero::after {
    background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 60%);
}
.lp-tpl-service-detailed .lp-hero h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
}
.lp-tpl-service-detailed .lp-eyebrow {
    background: transparent !important;
    color: #d4af37 !important;
    border: 1px solid #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.lp-tpl-service-detailed .lp-hero-card {
    border-top: 4px solid #d4af37;
    border-radius: 4px;
}
/* PwC/Deloitte: outlined ghost CTA, never filled. Sharp 0px corners. */
.lp-tpl-service-detailed .lp-btn-primary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 0;
    box-shadow: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.95rem 1.65rem;
}
.lp-tpl-service-detailed .lp-btn-primary:hover {
    background: #d4af37;
    color: #0f172a;
}
.lp-tpl-service-detailed .lp-btn-ghost { color: #d4af37; border-color: #d4af37; border-radius: 0; }
.lp-tpl-service-detailed .lp-section { background: #fafaf9; padding: var(--sp-9) 0; }
.lp-tpl-service-detailed .lp-section-head h2 {
    color: #0f172a;
    font-weight: 800;
    border-bottom: 1px solid #0f172a;
    padding-bottom: var(--sp-3);
    display: inline-block;
}
/* On the dark CTA section, flip the underline to gold so it stays visible. */
.lp-tpl-service-detailed .lp-block-cta .lp-section-head h2 {
    color: #fff;
    border-bottom-color: #d4af37;
}
/* Form submit button must remain a strong CTA even in the editorial theme. */
.lp-tpl-service-detailed .lp-cta-card .lp-btn-primary {
    background: #d4af37;
    color: #0f172a;
    border-color: #d4af37;
}
.lp-tpl-service-detailed .lp-cta-card .lp-btn-primary:hover {
    background: #eab308;
    border-color: #eab308;
}
/* Hairline-rule benefit cards (no shadow, no radius) — Big-4 editorial */
.lp-tpl-service-detailed .lp-benefit-card {
    border: 0;
    border-top: 1px solid #0f172a;
    border-radius: 0;
    background: transparent;
    padding-top: var(--sp-5);
    box-shadow: none;
}
.lp-tpl-service-detailed .lp-benefit-card:hover {
    transform: none;
    box-shadow: none;
    border-top-color: #d4af37;
    border-top-width: 2px;
    margin-top: -1px;
}
.lp-tpl-service-detailed .lp-benefit-icon {
    background: transparent;
    color: #d4af37;
    border-radius: 0;
    width: auto;
    height: auto;
}
.lp-tpl-service-detailed .lp-benefit-icon svg { width: 28px; height: 28px; }
.lp-tpl-service-detailed .lp-process-step { border-radius: 0; border: 0; border-top: 1px solid #d4af37; box-shadow: none; background: transparent; }
.lp-tpl-service-detailed .lp-process-num {
    background: linear-gradient(135deg, #d4af37, #b45309);
    box-shadow: 0 4px 12px rgba(180,83,9,0.35);
}
.lp-tpl-service-detailed .lp-plan { border-radius: 4px; border: 1px solid #e7e5e4; }
.lp-tpl-service-detailed .lp-plan-highlight {
    border: 2px solid #d4af37;
    box-shadow: 0 18px 40px -16px rgba(212,175,55,0.35);
}
.lp-tpl-service-detailed .lp-plan-highlight::before {
    background: #d4af37;
    color: #0f172a;
    content: "Recommended";
}
.lp-tpl-service-detailed .lp-block-cta {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    border-top: 4px solid #d4af37;
}

/* -------------------------------------------------------------------
   8. quick-enquiry — "ClickFunnels Conversion Orange"
   ------------------------------------------------------------------- */
.lp-tpl-quick-enquiry {
    --tpl-primary:      #f97316;
    --tpl-primary-deep: #dc2626;
    --tpl-accent:       #fbbf24;
    --tpl-surface:      #fff7ed;
}
.lp-tpl-quick-enquiry .lp-hero {
    background:
      radial-gradient(900px 500px at 80% 0%, #fbbf24 0%, transparent 55%),
      linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f97316 100%);
    padding: var(--sp-9) 0 var(--sp-9);
}
.lp-tpl-quick-enquiry .lp-hero::before,
.lp-tpl-quick-enquiry .lp-hero::after { display: none; }
.lp-tpl-quick-enquiry .lp-hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.lp-tpl-quick-enquiry .lp-hero-card { display: none; }
.lp-tpl-quick-enquiry .lp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.18);
    /* ClickFunnels: yellow highlighter swipe behind the headline */
    background-image: linear-gradient(180deg, transparent 62%, rgba(251,191,36,0.55) 62%, rgba(251,191,36,0.55) 92%, transparent 92%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
    padding: 0 0.1em;
}
.lp-tpl-quick-enquiry .lp-hero-sub {
    margin-left: auto; margin-right: auto;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}
.lp-tpl-quick-enquiry .lp-hero-actions { justify-content: center; }
.lp-tpl-quick-enquiry .lp-hero-ticks { justify-content: center; border-top: 0; }
.lp-tpl-quick-enquiry .lp-eyebrow {
    background: #fbbf24 !important;
    color: #7c2d12 !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.85rem;
}
.lp-tpl-quick-enquiry .lp-btn-primary {
    background: #fbbf24;
    color: #7c2d12;
    border-radius: 6px;
    padding: 1.35rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 0 rgba(251,191,36,0.6), 0 12px 30px -10px rgba(0,0,0,0.4);
    animation: lp-tpl-pulse 2.4s ease-out infinite;
}
.lp-tpl-quick-enquiry .lp-btn-primary:hover {
    background: #fde047;
    transform: translateY(-2px);
    animation-play-state: paused;
}
@keyframes lp-tpl-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(251,191,36,0.55), 0 12px 30px -10px rgba(0,0,0,0.4); }
    70%  { box-shadow: 0 0 0 18px rgba(251,191,36,0), 0 12px 30px -10px rgba(0,0,0,0.4); }
    100% { box-shadow: 0 0 0 0 rgba(251,191,36,0), 0 12px 30px -10px rgba(0,0,0,0.4); }
}
.lp-tpl-quick-enquiry .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.lp-tpl-quick-enquiry .lp-section { background: #fff7ed; }
.lp-tpl-quick-enquiry .lp-trust-item {
    background: #fff;
    border: 2px solid #fdba74;
    color: #9a3412;
}
.lp-tpl-quick-enquiry .lp-block-cta {
    background: linear-gradient(160deg, #dc2626 0%, #f97316 100%);
}
.lp-tpl-quick-enquiry .lp-cta-card {
    border-top: 6px solid #fbbf24;
}

/* -------------------------------------------------------------------
   9. pricing-comparison — "Linear Cool Slate"
   ------------------------------------------------------------------- */
.lp-tpl-pricing-comparison {
    --tpl-primary:      #475569;
    --tpl-primary-deep: #334155;
    --tpl-accent:       #10b981;
    --tpl-surface:      #08090a;
}
/* Linear-style: full dark mode across the whole page */
.lp-tpl-pricing-comparison { background: #08090a; color: #e2e8f0; }
.lp-tpl-pricing-comparison .lp-hero {
    background:
      radial-gradient(800px 400px at 50% -10%, rgba(16,185,129,0.18) 0%, transparent 60%),
      linear-gradient(180deg, #08090a 0%, #0f172a 100%);
    border-bottom: 1px solid #1e293b;
}
.lp-tpl-pricing-comparison .lp-hero::before,
.lp-tpl-pricing-comparison .lp-hero::after { display: none; }
.lp-tpl-pricing-comparison .lp-hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.lp-tpl-pricing-comparison .lp-hero-card { display: none; }
.lp-tpl-pricing-comparison .lp-hero h1 { font-weight: 700; letter-spacing: -0.02em; }
.lp-tpl-pricing-comparison .lp-hero-actions { justify-content: center; }
.lp-tpl-pricing-comparison .lp-hero-ticks { justify-content: center; }
.lp-tpl-pricing-comparison .lp-eyebrow {
    background: rgba(16,185,129,0.18) !important;
    color: #6ee7b7 !important;
    border: 1px solid rgba(16,185,129,0.35);
}
.lp-tpl-pricing-comparison .lp-section { background: #08090a; color: #cbd5e1; border-bottom: 1px solid #1e293b; }
.lp-tpl-pricing-comparison .lp-section-head h2 { color: #f1f5f9; }
.lp-tpl-pricing-comparison .lp-section-head p { color: #94a3b8; }
.lp-tpl-pricing-comparison .lp-block-process { background: #0c0f17; border-color: #1e293b; }
.lp-tpl-pricing-comparison .lp-process-step { background: #0f172a; border-color: #1e293b; }
.lp-tpl-pricing-comparison .lp-process-step h3 { color: #f1f5f9; }
.lp-tpl-pricing-comparison .lp-process-step p { color: #94a3b8; }
.lp-tpl-pricing-comparison .lp-benefit-card { background: #0f172a; border-color: #1e293b; }
.lp-tpl-pricing-comparison .lp-benefit-card h3 { color: #f1f5f9; }
.lp-tpl-pricing-comparison .lp-benefit-card p { color: #94a3b8; }
.lp-tpl-pricing-comparison .lp-benefit-icon { background: #064e3b; color: #6ee7b7; }
.lp-tpl-pricing-comparison .lp-faq-item { background: #0f172a; }
.lp-tpl-pricing-comparison .lp-faq-item summary { color: #f1f5f9; }
.lp-tpl-pricing-comparison .lp-faq-answer { color: #cbd5e1; }
.lp-tpl-pricing-comparison .lp-trust-item { background: #0f172a; border-color: #1e293b; color: #6ee7b7; }
.lp-tpl-pricing-comparison .lp-block-trust { background: #08090a; border-color: #1e293b; }
.lp-tpl-pricing-comparison .lp-plan { background: #0f172a; border-color: #1e293b; color: #cbd5e1; }
.lp-tpl-pricing-comparison .lp-plan-name { color: #f1f5f9; }
.lp-tpl-pricing-comparison .lp-plan-tagline { color: #94a3b8; }
.lp-tpl-pricing-comparison .lp-plan-price { color: #f1f5f9; }
.lp-tpl-pricing-comparison .lp-plan-features li { color: #cbd5e1; border-bottom-color: #1e293b; }
.lp-tpl-pricing-comparison .lp-btn-primary {
    background: #10b981;
    border-radius: 6px;
    box-shadow: 0 6px 18px -8px rgba(16,185,129,0.55);
}
.lp-tpl-pricing-comparison .lp-btn-primary:hover { background: #059669; }
/* Separated, rounded plan cards (dark Linear aesthetic, no table fuse). */
.lp-tpl-pricing-comparison .lp-pricing-grid { gap: var(--sp-5); }
.lp-tpl-pricing-comparison .lp-plan {
    border-radius: 12px;
    border: 1px solid #1e293b;
    margin-left: 0;
    background: #0f172a;
}
.lp-tpl-pricing-comparison .lp-plan-highlight {
    border: 2px solid #10b981;
    background: linear-gradient(180deg, rgba(16,185,129,0.08) 0%, #0f172a 100%);
    z-index: 1;
    border-radius: 12px;
    transform: translateY(-8px);
    box-shadow: 0 18px 40px -18px rgba(16,185,129,0.6);
    color: #f1f5f9;
}
.lp-tpl-pricing-comparison .lp-plan-highlight::before {
    background: #10b981;
    color: #08090a;
    content: "Recommended";
}
.lp-tpl-pricing-comparison .lp-plan-features li:nth-child(odd) {
    background: rgba(255,255,255,0.02);
    margin: 0 calc(var(--sp-6) * -1);
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
    border-bottom: 0;
}
.lp-tpl-pricing-comparison .lp-faq-item { border-color: #e2e8f0; }
.lp-tpl-pricing-comparison .lp-faq-item[open] { border-color: #10b981; }
.lp-tpl-pricing-comparison .lp-faq-item summary::after { border-color: #10b981; }
.lp-tpl-pricing-comparison .lp-block-cta {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}

/* -------------------------------------------------------------------
   10. industry-vertical — "Forest Green + Coral"
   ------------------------------------------------------------------- */
.lp-tpl-industry-vertical {
    --tpl-primary:      #065f46;
    --tpl-primary-deep: #064e3b;
    --tpl-accent:       #fb7185;
    --tpl-surface:      #ecfdf5;
}
.lp-tpl-industry-vertical .lp-hero {
    background:
      radial-gradient(900px 500px at 100% 0%, #fb7185 0%, transparent 50%),
      linear-gradient(160deg, #064e3b 0%, #065f46 60%, #047857 100%);
    border-bottom-left-radius: 60px 24px;
    border-bottom-right-radius: 60px 24px;
}
.lp-tpl-industry-vertical .lp-hero::before,
.lp-tpl-industry-vertical .lp-hero::after { display: none; }
.lp-tpl-industry-vertical .lp-eyebrow::before {
    content: "🏷 ";
    margin-right: 0.25rem;
}
.lp-tpl-industry-vertical .lp-eyebrow {
    background: #fb7185 !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-weight: 700;
}
.lp-tpl-industry-vertical .lp-btn-primary {
    background: #fb7185;
    border-radius: 999px;
    padding: 0.95rem 1.85rem;
    box-shadow: 0 10px 24px -10px rgba(251,113,133,0.55);
}
.lp-tpl-industry-vertical .lp-btn-primary:hover { background: #f43f5e; }
.lp-tpl-industry-vertical .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.lp-tpl-industry-vertical .lp-section { background: #fff; }
.lp-tpl-industry-vertical .lp-section:nth-of-type(even) { background: #ecfdf5; }
.lp-tpl-industry-vertical .lp-benefit-card {
    border-radius: 18px;
    border-color: #d1fae5;
    background: #fff;
}
.lp-tpl-industry-vertical .lp-benefit-icon {
    background: #fee2e2;
    color: #fb7185;
    border-radius: 14px;
}
.lp-tpl-industry-vertical .lp-faq-item { border-radius: 14px; border-color: #d1fae5; }
.lp-tpl-industry-vertical .lp-faq-item[open] { border-color: #065f46; }
.lp-tpl-industry-vertical .lp-faq-item summary::after { border-color: #065f46; }
.lp-tpl-industry-vertical .lp-trust-item {
    background: #fff; border-color: #d1fae5; color: #064e3b;
}
.lp-tpl-industry-vertical .lp-block-cta {
    background: linear-gradient(160deg, #064e3b 0%, #065f46 100%);
}

/* -------------------------------------------------------------------
   11. startup-bundle — "Magenta → Violet Energy"
   ------------------------------------------------------------------- */
.lp-tpl-startup-bundle {
    --tpl-primary:      #a855f7;
    --tpl-primary-deep: #7c3aed;
    --tpl-accent:       #ec4899;
    --tpl-surface:      #fdf4ff;
}
.lp-tpl-startup-bundle .lp-hero {
    background:
      /* Razorpay-style faint grid lines */
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px) 0 0/48px 48px,
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0/48px 48px,
      radial-gradient(900px 500px at 90% 0%, #ec4899 0%, transparent 55%),
      radial-gradient(700px 400px at 0% 100%, #fbbf24 0%, transparent 55%),
      linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c026d3 100%);
}
.lp-tpl-startup-bundle .lp-hero::before,
.lp-tpl-startup-bundle .lp-hero::after { display: none; }
.lp-tpl-startup-bundle .lp-eyebrow::before {
    content: "🚀 ";
    margin-right: 0.25rem;
}
.lp-tpl-startup-bundle .lp-eyebrow {
    background: rgba(255,255,255,0.18) !important;
    color: #fff !important;
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-weight: 700;
}
.lp-tpl-startup-bundle .lp-hero h1 { font-weight: 900; letter-spacing: -0.025em; }
.lp-tpl-startup-bundle .lp-hero-card {
    background: #fff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 28px 60px -24px rgba(124,58,237,0.55);
    position: relative;
    overflow: hidden;
}
.lp-tpl-startup-bundle .lp-hero-card::before {
    content: "BUNDLE";
    position: absolute;
    top: 14px;
    right: -34px;
    transform: rotate(35deg);
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: #fff;
    padding: 0.3rem 2.5rem;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 14px -6px rgba(236,72,153,0.6);
}
.lp-tpl-startup-bundle .lp-btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    border: 0;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 800;
    box-shadow: 0 12px 28px -10px rgba(168,85,247,0.55);
}
.lp-tpl-startup-bundle .lp-btn-primary:hover {
    background: linear-gradient(135deg, #db2777 0%, #9333ea 100%);
    transform: translateY(-2px);
}
.lp-tpl-startup-bundle .lp-section { background: #fdf4ff; }
.lp-tpl-startup-bundle .lp-benefit-card {
    border: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px -16px rgba(124,58,237,0.25);
}
.lp-tpl-startup-bundle .lp-benefit-icon {
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    color: #a855f7;
    border-radius: 14px;
    width: 52px; height: 52px;
}
.lp-tpl-startup-bundle .lp-plan { border-radius: 16px; border: 0; box-shadow: 0 12px 28px -16px rgba(124,58,237,0.25); }
.lp-tpl-startup-bundle .lp-plan-highlight {
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
    border: 2px solid #a855f7;
    box-shadow: 0 24px 50px -20px rgba(168,85,247,0.45);
}
.lp-tpl-startup-bundle .lp-plan-highlight::before {
    background: linear-gradient(135deg, #ec4899, #a855f7);
}
.lp-tpl-startup-bundle .lp-block-cta {
    background: linear-gradient(160deg, #7c3aed 0%, #a855f7 100%);
}

/* -------------------------------------------------------------------
   12. event-registration — "Lu.ma Poster"
   ------------------------------------------------------------------- */
.lp-tpl-event-registration {
    --tpl-primary:      #5b21b6;
    --tpl-primary-deep: #4c1d95;
    --tpl-accent:       #facc15;
    --tpl-surface:      #1e1b4b;
}
.lp-tpl-event-registration .lp-hero {
    background:
      radial-gradient(700px 450px at 15% 100%, #facc15 0%, transparent 50%),
      radial-gradient(700px 450px at 100% 0%, #ec4899 0%, transparent 50%),
      linear-gradient(135deg, #1e1b4b 0%, #4c1d95 60%, #5b21b6 100%);
    padding: var(--sp-9) 0 var(--sp-9);
}
.lp-tpl-event-registration .lp-hero::before,
.lp-tpl-event-registration .lp-hero::after { display: none; }
/* Lu.ma signature: oversized date numerals as the eyebrow */
.lp-tpl-event-registration .lp-eyebrow {
    background: transparent !important;
    color: #facc15 !important;
    border: 0;
    border-left: 4px solid #facc15;
    border-radius: 0;
    padding: 0.5rem 0 0.5rem 0.85rem;
    margin-bottom: var(--sp-4);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0;
    line-height: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
.lp-tpl-event-registration .lp-eyebrow::before {
    content: "27 MAR";
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 0.95;
    color: #facc15;
    letter-spacing: -0.03em;
}
.lp-tpl-event-registration .lp-eyebrow::after {
    content: "4:00 PM IST · FREE LIVE WEBINAR";
    font-size: 0.7rem;
    font-weight: 800;
    color: #fde047;
    letter-spacing: 0.1em;
}
.lp-tpl-event-registration .lp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #fff 0%, #facc15 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-tpl-event-registration .lp-hero-sub { color: rgba(255,255,255,0.9); }
.lp-tpl-event-registration .lp-hero-card {
    background: #fff;
    border: 0;
    border-top: 6px solid #facc15;
    border-radius: 14px;
    position: relative;
}
.lp-tpl-event-registration .lp-hero-card::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 6px;
    background:
      repeating-linear-gradient(90deg, #facc15 0 14px, #ec4899 14px 28px);
    border-radius: 14px 14px 0 0;
}
.lp-tpl-event-registration .lp-hero-card h3::before {
    content: "🗓 ";
}
.lp-tpl-event-registration .lp-btn-primary {
    background: #facc15;
    color: #1e1b4b;
    border-radius: 10px;
    padding: 1.1rem 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 28px -10px rgba(250,204,21,0.55);
}
.lp-tpl-event-registration .lp-btn-primary:hover { background: #fde047; }
.lp-tpl-event-registration .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.lp-tpl-event-registration .lp-section { background: #faf5ff; }
.lp-tpl-event-registration .lp-process-step {
    border-radius: 12px;
    border-left: 4px solid #5b21b6;
    background: #fff;
}
.lp-tpl-event-registration .lp-process-num {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #1e1b4b;
    box-shadow: 0 4px 12px rgba(250,204,21,0.5);
}
.lp-tpl-event-registration .lp-benefit-card {
    border-radius: 14px;
    border-color: #ede9fe;
    background: #fff;
}
.lp-tpl-event-registration .lp-benefit-icon {
    background: #fef9c3;
    color: #5b21b6;
    border-radius: 10px;
}
.lp-tpl-event-registration .lp-trust-item {
    background: #fff;
    border-color: #ddd6fe;
    color: #5b21b6;
}
.lp-tpl-event-registration .lp-block-cta {
    background:
      radial-gradient(800px 400px at 50% 0%, rgba(250,204,21,0.18), transparent 50%),
      linear-gradient(160deg, #1e1b4b 0%, #4c1d95 100%);
}
.lp-tpl-event-registration .lp-cta-card {
    border-top: 6px solid #facc15;
    position: relative;
}
.lp-tpl-event-registration .lp-cta-card::before {
    content: "🎟 RSVP";
    position: absolute;
    top: -14px;
    right: 14px;
    background: #facc15;
    color: #1e1b4b;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

/* ============================================================================
   17. TADKA BHADAK  —  visual maximalism pass
   ============================================================================
   Adds hero imagery, per-theme signature decorative elements, motion scaffold,
   marquee strips, hover glows, button shine sweep, oversized typography
   flourishes, and parallax CSS variables consumed by lp-motion.js.
   ============================================================================ */

/* ----- Hero media (picsum image alternative to the form card) ----------- */
.lp-hero-media {
    position: relative;
    align-self: stretch;
}
.lp-hero-photo {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.55), 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transform: rotate(-0.8deg);
    transition: transform 600ms cubic-bezier(.2,.8,.2,1);
    aspect-ratio: 4 / 3;
    background: #0b3d5f;
}
.lp-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.04);
}
.lp-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(8,44,71,0.15) 0%, transparent 40%, rgba(255,106,43,0.1) 100%);
    pointer-events: none;
}
.lp-hero-photo:hover { transform: rotate(0deg) scale(1.01); }

/* Floating "businesses served" badge on the hero photo */
.lp-hero-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.7rem 1rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 12px 32px -12px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.6);
}
.lp-hero-photo-badge strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--c-brand-800);
    line-height: 1;
    font-feature-settings: "tnum";
}
.lp-hero-photo-badge span {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-fg-muted);
}

/* For single-column themes (Calendly/ClickFunnels/Linear/editorial), the
   image renders as a full-bleed backdrop behind the centered text instead
   of as a side panel. */
.lp-tpl-consultation-booking .lp-hero--with-image .lp-hero-media,
.lp-tpl-quick-enquiry        .lp-hero--with-image .lp-hero-media,
.lp-tpl-pricing-comparison   .lp-hero--with-image .lp-hero-media,
.lp-tpl-long-form-seo        .lp-hero--with-image .lp-hero-media {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(1px) saturate(0.8);
}
.lp-tpl-consultation-booking .lp-hero--with-image .lp-hero-photo,
.lp-tpl-quick-enquiry        .lp-hero--with-image .lp-hero-photo,
.lp-tpl-pricing-comparison   .lp-hero--with-image .lp-hero-photo,
.lp-tpl-long-form-seo        .lp-hero--with-image .lp-hero-photo {
    transform: none;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
}
.lp-tpl-consultation-booking .lp-hero--with-image .lp-hero-photo-badge,
.lp-tpl-quick-enquiry        .lp-hero--with-image .lp-hero-photo-badge,
.lp-tpl-pricing-comparison   .lp-hero--with-image .lp-hero-photo-badge,
.lp-tpl-long-form-seo        .lp-hero--with-image .lp-hero-photo-badge { display: none; }
.lp-tpl-consultation-booking .lp-hero--with-image .lp-hero-text,
.lp-tpl-quick-enquiry        .lp-hero--with-image .lp-hero-text,
.lp-tpl-pricing-comparison   .lp-hero--with-image .lp-hero-text,
.lp-tpl-long-form-seo        .lp-hero--with-image .lp-hero-text { position: relative; z-index: 1; }
.lp-tpl-long-form-seo .lp-hero--with-image .lp-hero-media { opacity: 0.1; }

/* ----- Parallax variables consumed by lp-motion.js --------------------- */
.lp-hero::before,
.lp-hero::after {
    transform: translate(var(--lp-parallax-x, 0), var(--lp-parallax-y, 0));
    transition: transform 180ms ease-out;
}

/* ----- Button shine sweep ---------------------------------------------- */
.lp-btn-shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.lp-btn-shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
    transform: skewX(-18deg);
    animation: lp-btn-shine 3.6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes lp-btn-shine {
    0%   { left: -80%; }
    40%  { left: 130%; }
    100% { left: 130%; }
}
.lp-btn-shine > * { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
    .lp-btn-shine::before { animation: none; display: none; }
}

/* ----- Marquee row (repurposes .lp-trust-list when parent has marquee) --- */
.lp-tpl .lp-block-trust {
    overflow: hidden;
    position: relative;
}
.lp-tpl .lp-block-trust::before,
.lp-tpl .lp-block-trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.lp-tpl .lp-block-trust::before {
    left: 0;
    background: linear-gradient(90deg, var(--c-bg-soft) 0%, transparent 100%);
}
.lp-tpl .lp-block-trust::after {
    right: 0;
    background: linear-gradient(-90deg, var(--c-bg-soft) 0%, transparent 100%);
}
.lp-tpl .lp-trust-list {
    flex-wrap: nowrap;
    animation: lp-marquee 28s linear infinite;
    width: max-content;
}
.lp-tpl .lp-block-trust:hover .lp-trust-list { animation-play-state: paused; }
@keyframes lp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-tpl .lp-trust-list { animation: none; }
}

/* ----- Card hover glow --------------------------------------------------- */
.lp-tpl .lp-benefit-card,
.lp-tpl .lp-plan,
.lp-tpl .lp-testimonial,
.lp-tpl .lp-process-step {
    position: relative;
    transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease, border-color 200ms ease;
}
.lp-tpl .lp-benefit-card::before,
.lp-tpl .lp-plan::before,
.lp-tpl .lp-testimonial::before,
.lp-tpl .lp-process-step::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--c-brand-600), var(--c-accent-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 280ms ease;
    pointer-events: none;
    z-index: 1;
}
.lp-tpl .lp-benefit-card:hover::before,
.lp-tpl .lp-plan:hover::before,
.lp-tpl .lp-testimonial:hover::before,
.lp-tpl .lp-process-step:hover::before {
    opacity: 1;
}
.lp-tpl .lp-benefit-card:hover,
.lp-tpl .lp-testimonial:hover,
.lp-tpl .lp-process-step:hover {
    box-shadow: 0 22px 48px -24px rgba(15, 23, 42, 0.35);
}

/* ============================================================================
   Per-theme signature decorations
   ============================================================================ */

/* ----- 1. quick-enquiry: diagonal caution stripes + sunburst -----------  */
.lp-tpl-quick-enquiry .lp-hero::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background-image:
        repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 16px, transparent 16px 48px),
        radial-gradient(circle at 70% 30%, rgba(251,191,36,0.35) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    display: block;
    width: auto;
    height: auto;
}
.lp-tpl-quick-enquiry .lp-hero .lp-container { position: relative; z-index: 1; }
.lp-tpl-quick-enquiry .lp-hero h1::after {
    content: "";
    display: block;
    width: 240px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    margin: var(--sp-3) auto 0;
    border-radius: 2px;
}

/* ----- 2. testimonial-heavy: giant watermark star pattern ---------------- */
.lp-tpl-testimonial-heavy .lp-hero::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image:
        radial-gradient(circle at 15% 80%, rgba(251,191,36,0.12) 0%, transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(236,72,153,0.12) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
    width: auto;
    height: auto;
}

/* ----- 3. service-detailed: gold seal above hero ------------------------ */
.lp-tpl-service-detailed .lp-hero-text::before {
    content: "EST · 2015 · LUCKNOW";
    display: inline-block;
    font-family: Georgia, serif;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #d4af37;
    padding: 0.6rem 1.2rem;
    border: 1px solid #d4af37;
    border-radius: 999px;
    margin-bottom: var(--sp-4);
    background: rgba(212, 175, 55, 0.05);
}

/* ----- 4. pricing-comparison: glowing floating orbs --------------------- */
.lp-tpl-pricing-comparison .lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(16,185,129,0.2) 0%, transparent 18%),
        radial-gradient(circle at 80% 30%, rgba(16,185,129,0.15) 0%, transparent 15%),
        radial-gradient(circle at 60% 80%, rgba(16,185,129,0.12) 0%, transparent 20%);
    pointer-events: none;
    z-index: 0;
    animation: lp-orb-float 14s ease-in-out infinite alternate;
    width: auto;
    height: auto;
}
@keyframes lp-orb-float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.08); }
}
.lp-tpl-pricing-comparison .lp-hero-text h1::before {
    content: "{ ";
    color: #10b981;
    opacity: 0.6;
}
.lp-tpl-pricing-comparison .lp-hero-text h1::after {
    content: " }";
    color: #10b981;
    opacity: 0.6;
}
@media (prefers-reduced-motion: reduce) {
    .lp-tpl-pricing-comparison .lp-hero::after { animation: none; }
}

/* ----- 5. event-registration: ticket perforation + calendar grid -------- */
.lp-tpl-event-registration .lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(250,204,21,0.08) 0 8px, transparent 8px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px, 60px 60px, 60px 60px;
    pointer-events: none;
    z-index: 0;
    width: auto;
    height: auto;
}
.lp-tpl-event-registration .lp-hero-text::before {
    content: "- - - - - - - - - - - - - - - - - -";
    display: block;
    color: #facc15;
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    margin-bottom: var(--sp-4);
    opacity: 0.7;
    text-align: left;
}

/* ----- 6. consultation-booking: giant clock face watermark -------------- */
.lp-tpl-consultation-booking .lp-hero::after {
    content: "15:00";
    position: absolute;
    bottom: 8%;
    right: 4%;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 900;
    color: rgba(132, 204, 22, 0.08);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    width: auto;
    height: auto;
    background: none;
}

/* ----- 7. city-targeted: map pin pattern + route curve ------------------- */
.lp-tpl-city-targeted .lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at center, rgba(255, 251, 235, 0.4) 2px, transparent 2.5px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    width: auto;
    height: auto;
    opacity: 0.5;
}

/* ----- 8. long-form-seo: massive pilcrow watermark ---------------------- */
.lp-tpl-long-form-seo .lp-hero-text::after {
    content: "¶";
    position: absolute;
    top: 10%;
    right: -8%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10rem, 20vw, 20rem);
    color: rgba(5, 150, 105, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
.lp-tpl-long-form-seo .lp-hero-text { position: relative; }

/* ----- 9. industry-vertical: food industry glyph watermark --------------- */
.lp-tpl-industry-vertical .lp-hero::after {
    content: "🍽";
    position: absolute;
    bottom: 8%;
    right: 6%;
    font-size: clamp(6rem, 15vw, 12rem);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    width: auto;
    height: auto;
    background: none;
    line-height: 1;
}

/* ----- 10. startup-bundle: rocket trail curve --------------------------- */
.lp-tpl-startup-bundle .lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(250, 204, 21, 0.3) 0%, transparent 8%),
        radial-gradient(circle at 30% 60%, rgba(250, 204, 21, 0.2) 0%, transparent 5%),
        radial-gradient(circle at 55% 35%, rgba(250, 204, 21, 0.15) 0%, transparent 4%),
        radial-gradient(circle at 80% 10%, rgba(250, 204, 21, 0.25) 0%, transparent 7%);
    pointer-events: none;
    z-index: 0;
    width: auto;
    height: auto;
    animation: lp-rocket-pulse 4s ease-in-out infinite alternate;
}
@keyframes lp-rocket-pulse {
    0%   { opacity: 0.5; }
    100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-tpl-startup-bundle .lp-hero::after { animation: none; }
}

/* ----- AOS scrollreveal compat — hide until AOS initialises ------------- */
[data-aos] { will-change: transform, opacity; }
