/* ============================================
   PERFECT LAWNS BLOCKS — FRONTEND STYLES
   Version 1.0.0
   ============================================ */

/* ============================================
   FULL-WIDTH SECTIONS (break out of page container)
   Landing page sections should always span the full viewport width
   regardless of the theme/page template's content max-width.
   ============================================ */
.wp-block-pll-hero,
.wp-block-pll-trust-bar,
.wp-block-pll-problem,
.wp-block-pll-services,
.wp-block-pll-industries,
.wp-block-pll-stats,
.wp-block-pll-why,
.wp-block-pll-compare,
.wp-block-pll-process,
.wp-block-pll-testimonials,
.wp-block-pll-areas,
.wp-block-pll-faq,
.wp-block-pll-final-cta {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box;
    position: relative;
}

/* Prevent horizontal scroll caused by 100vw + scrollbar */
html { overflow-x: clip; }
body { overflow-x: hidden; }

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --pll-black: #000000;
    --pll-forest: #2F6B2F;
    --pll-forest-deep: #0F1F14;
    --pll-leaf: #1AB93F;
    --pll-leaf-light: #2ECC50;
    --pll-grass: #55D475;
    --pll-cream: #F5F7EF;
    --pll-cream-warm: #EAEFE2;
    --pll-ink: #0A1628;
    --pll-stone: #5B6B5F;
    --pll-mist: #E4EAE0;
    --pll-white: #FFFFFF;
    --pll-shadow-sm: 0 2px 8px rgba(15, 31, 20, 0.08);
    --pll-shadow-md: 0 8px 32px rgba(15, 31, 20, 0.12);
    --pll-shadow-lg: 0 20px 60px rgba(15, 31, 20, 0.18);
    --pll-radius-sm: 8px;
    --pll-radius-md: 16px;
    --pll-radius-lg: 24px;
    --pll-radius-xl: 32px;
    --pll-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   BASE + ALL PLL BLOCK WRAPPERS
   ============================================ */
[class*="wp-block-pll-"] h1,
[class*="wp-block-pll-"] h2,
[class*="wp-block-pll-"] h3,
[class*="wp-block-pll-"] h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}

[class*="wp-block-pll-"] {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
}

[class*="wp-block-pll-"] img { max-width: 100%; height: auto; display: block; }

.pll-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.pll-section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pll-leaf);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pll-section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--pll-forest-deep);
}
.pll-section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--pll-leaf);
}

.pll-section-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--pll-stone);
    margin-bottom: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pll-fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes pll-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes pll-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.pll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--pll-ease), transform 0.9s var(--pll-ease);
}
.pll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS (applied to core/button blocks via class)
   ============================================ */
[class*="wp-block-pll-"] .wp-block-button__link,
.pll-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: -0.01em;
    transition: all 0.4s var(--pll-ease);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.pll-btn-primary,
.is-style-pll-primary .wp-block-button__link {
    background-color: var(--pll-leaf) !important;
    color: var(--pll-white) !important;
    box-shadow: 0 8px 24px rgba(26, 185, 63, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.pll-btn-primary:hover,
.is-style-pll-primary .wp-block-button__link:hover {
    background: #159636 !important;
    transform: translateY(-2px);
}
.pll-btn-ghost,
.is-style-pll-ghost .wp-block-button__link {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--pll-cream) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.pll-btn-ghost:hover,
.is-style-pll-ghost .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   HERO
   ============================================ */
.wp-block-pll-hero {
    position: relative;
    background-color: var(--pll-forest-deep);
    background-image: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--pll-cream);
    padding: 80px 0 120px;
    overflow: hidden;
    isolation: isolate;
}
.wp-block-pll-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(46, 204, 80, 0.25), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(26, 185, 63, 0.18), transparent 50%);
    z-index: -1;
}
.wp-block-pll-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 20, 0.55) 0%, rgba(15, 31, 20, 0.88) 100%);
    z-index: -1;
}
.wp-block-pll-hero > .pll-container {
    position: relative;
    z-index: 1;
}
.wp-block-pll-hero h1 {
    color: var(--pll-cream);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 500;
    margin-bottom: 24px;
}
.wp-block-pll-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--pll-leaf);
}
.wp-block-pll-hero p {
    color: var(--pll-cream);
    opacity: 0.9;
}
.wp-block-pll-hero .hero-sub {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 36px;
}
.wp-block-pll-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(46, 204, 80, 0.18);
    border: 1px solid rgba(46, 204, 80, 0.45);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pll-grass);
    margin-bottom: 24px;
    width: auto;
    max-width: max-content;
}
.wp-block-pll-hero .hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background-color: var(--pll-grass);
    border-radius: 50%;
    animation: pll-pulse 2s ease-in-out infinite;
}
.wp-block-pll-hero .hero-trust-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-bottom: 36px;
}
.wp-block-pll-hero .hero-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pll-cream);
}
.wp-block-pll-hero .hero-trust-list li::before {
    content: '✓';
    display: inline-grid;
    place-items: center;
    width: 22px; height: 22px;
    background: rgba(26, 185, 63, 0.2);
    color: var(--pll-grass);
    border-radius: 50%;
    font-weight: 800;
    flex-shrink: 0;
}

/* ============================================
   FORM SLOT (for Blocksy form placeholder)
   ============================================ */
.wp-block-pll-form-slot {
    background-color: var(--pll-cream);
    color: var(--pll-ink);
    padding: 36px;
    border-radius: var(--pll-radius-lg);
    box-shadow: var(--pll-shadow-lg);
    position: relative;
}
.wp-block-pll-form-slot::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px;
    right: 24px;
    background-color: var(--pll-leaf);
    color: var(--pll-white);
    font-size: 11px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 12px rgba(26, 185, 63, 0.3);
}
.wp-block-pll-form-slot > h3 {
    font-size: 26px;
    margin-bottom: 6px;
    color: var(--pll-forest-deep);
}
.wp-block-pll-form-slot > p {
    color: var(--pll-stone);
    font-size: 15px;
    margin-bottom: 24px;
}
.wp-block-pll-form-slot .pll-form-area {
    min-height: 60px;
    padding: 16px 0;
}
.wp-block-pll-form-slot .pll-form-area input[type="text"],
.wp-block-pll-form-slot .pll-form-area input[type="email"],
.wp-block-pll-form-slot .pll-form-area input[type="tel"],
.wp-block-pll-form-slot .pll-form-area textarea,
.wp-block-pll-form-slot .pll-form-area select {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--pll-white);
    border: 1.5px solid var(--pll-mist);
    border-radius: var(--pll-radius-sm);
    font-size: 15px;
    margin-bottom: 10px;
}
.wp-block-pll-form-slot .pll-form-area button[type="submit"],
.wp-block-pll-form-slot .pll-form-area input[type="submit"] {
    width: 100%;
    padding: 16px;
    background-color: var(--pll-leaf);
    color: var(--pll-white);
    border: none;
    border-radius: var(--pll-radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

/* ============================================
   TRUST BAR (MARQUEE)
   ============================================ */
.wp-block-pll-trust-bar {
    background-color: var(--pll-cream);
    padding: 40px 0 52px;
    border-top: 1px solid var(--pll-mist);
    overflow: hidden;
}
.wp-block-pll-trust-bar .pll-trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--pll-stone);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 auto 24px;
    max-width: 1240px;
    padding: 0 24px;
}
.wp-block-pll-trust-bar .pll-marquee {
    overflow: hidden;
    background-color: var(--pll-leaf);
    padding: 22px 0;
    transform: rotate(-1.2deg);
    width: calc(100% + 40px);
    margin: 12px -20px;
}
.wp-block-pll-trust-bar .pll-marquee-track {
    display: flex;
    gap: 0;
    animation: pll-marquee 35s linear infinite;
    width: max-content;
}
.wp-block-pll-trust-bar .pll-marquee-item {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--pll-white);
    white-space: nowrap;
    padding: 0 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.wp-block-pll-trust-bar .pll-marquee-item::after {
    content: '•';
    margin-left: 24px;
    opacity: 0.7;
    font-weight: 400;
}

/* ============================================
   SECTION WRAPPERS (generic spacing)
   ============================================ */
.wp-block-pll-problem,
.wp-block-pll-services,
.wp-block-pll-industries,
.wp-block-pll-why,
.wp-block-pll-compare,
.wp-block-pll-process,
.wp-block-pll-testimonials,
.wp-block-pll-areas,
.wp-block-pll-faq,
.wp-block-pll-final-cta,
.wp-block-pll-stats {
    padding: 100px 0;
    position: relative;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.wp-block-pll-problem {
    background-color: var(--pll-cream-warm);
    overflow: hidden;
}
.wp-block-pll-problem .pll-problem-list ul {
    list-style: none;
    padding: 0;
}
.wp-block-pll-problem .pll-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 31, 20, 0.08);
    font-size: 17px;
    font-weight: 500;
}
.wp-block-pll-problem .pll-problem-list li:last-child { border-bottom: none; }
.wp-block-pll-problem .pll-problem-list li::before {
    content: '✕';
    display: inline-grid;
    place-items: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #FDE8E5;
    color: #C0392B;
    font-weight: 800;
    flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.wp-block-pll-services { background-color: var(--pll-cream); }
.wp-block-pll-services .pll-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wp-block-pll-service-card {
    background-color: var(--pll-white);
    border: 1px solid var(--pll-mist);
    border-radius: var(--pll-radius-lg);
    padding: 32px;
    transition: all 0.5s var(--pll-ease);
    isolation: isolate;
    position: relative;
    overflow: hidden;
}
.wp-block-pll-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pll-forest) 0%, var(--pll-leaf) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}
.wp-block-pll-service-card:hover { transform: translateY(-6px); box-shadow: var(--pll-shadow-lg); border-color: transparent; color: var(--pll-cream); }
.wp-block-pll-service-card:hover::before { opacity: 1; }
.wp-block-pll-service-card:hover h3,
.wp-block-pll-service-card:hover p { color: var(--pll-cream) !important; }
.wp-block-pll-service-card .pll-card-icon {
    width: 60px; height: 60px;
    border-radius: var(--pll-radius-md);
    background-color: var(--pll-mist);
    color: var(--pll-leaf);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}
.wp-block-pll-service-card:hover .pll-card-icon { background: rgba(255,255,255,0.18); color: var(--pll-cream); }
.wp-block-pll-service-card .pll-card-icon svg,
.wp-block-pll-service-card .pll-card-icon .pll-icon-host svg { width: 32px; height: 32px; }
.wp-block-pll-service-card .pll-card-icon .pll-icon-host { display: inline-flex; align-items: center; justify-content: center; }
.wp-block-pll-service-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--pll-forest-deep); }
.wp-block-pll-service-card p { color: var(--pll-stone); font-size: 15px; line-height: 1.6; margin: 0; }

/* ============================================
   INDUSTRIES
   ============================================ */
.wp-block-pll-industries { background-color: var(--pll-cream-warm); overflow: hidden; }
.wp-block-pll-industries .pll-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wp-block-pll-industry-card {
    background-color: var(--pll-white);
    border: 1.5px solid var(--pll-mist);
    border-radius: var(--pll-radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.45s var(--pll-ease);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.wp-block-pll-industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pll-leaf) 0%, var(--pll-leaf-light) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.45s ease;
}
.wp-block-pll-industry-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 16px 36px rgba(26, 185, 63, 0.28); color: var(--pll-white); }
.wp-block-pll-industry-card:hover::before { opacity: 1; }
.wp-block-pll-industry-card:hover h4,
.wp-block-pll-industry-card:hover p { color: var(--pll-white) !important; }
.wp-block-pll-industry-card .pll-card-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(26, 185, 63, 0.1);
    color: var(--pll-leaf);
    display: grid;
    place-items: center;
    transition: all 0.45s ease;
}
.wp-block-pll-industry-card:hover .pll-card-icon { background: rgba(255, 255, 255, 0.2); color: var(--pll-white); transform: scale(1.08); }
.wp-block-pll-industry-card .pll-card-icon svg,
.wp-block-pll-industry-card .pll-card-icon .pll-icon-host svg { width: 30px; height: 30px; }
.wp-block-pll-industry-card .pll-card-icon .pll-icon-host { display: inline-flex; align-items: center; justify-content: center; }
.wp-block-pll-industry-card h4 { font-size: 16px; font-weight: 700; color: var(--pll-forest-deep); font-family: 'Manrope', sans-serif; line-height: 1.3; margin-bottom: 4px; }
.wp-block-pll-industry-card p { font-size: 12px; color: var(--pll-stone); font-weight: 500; margin: 0; }

/* ============================================
   STATS
   ============================================ */
.wp-block-pll-stats {
    background-color: var(--pll-forest-deep);
    color: var(--pll-cream);
    padding: 80px 0;
    overflow: hidden;
}
.wp-block-pll-stats .pll-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.wp-block-pll-stat-item { text-align: center; padding: 20px; }
.wp-block-pll-stat-item h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--pll-leaf);
    line-height: 1;
    margin-bottom: 8px;
}
.wp-block-pll-stat-item p { font-size: 15px; color: var(--pll-cream); opacity: 0.85; margin: 0; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.wp-block-pll-why { background-color: var(--pll-cream); }
.wp-block-pll-why-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--pll-white);
    border-radius: var(--pll-radius-md);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    margin-bottom: 4px;
}
.wp-block-pll-why-feature:hover { border-color: var(--pll-mist); box-shadow: var(--pll-shadow-sm); transform: translateX(6px); }
.wp-block-pll-why-feature .pll-card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--pll-leaf) 0%, var(--pll-leaf-light) 100%);
    border-radius: var(--pll-radius-sm);
    display: grid; place-items: center;
    color: var(--pll-white);
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 20px;
}
.wp-block-pll-why-feature .pll-card-icon svg,
.wp-block-pll-why-feature .pll-card-icon .pll-icon-host svg { width: 26px; height: 26px; color: var(--pll-white); }
.wp-block-pll-why-feature {
    flex-direction: row;
    align-items: flex-start;
}
.wp-block-pll-why-feature h4 { font-size: 18px; margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--pll-forest-deep); }
.wp-block-pll-why-feature p { color: var(--pll-stone); font-size: 14px; line-height: 1.55; margin: 0; }

/* ============================================
   COMPARE (Us vs Them)
   ============================================ */
.wp-block-pll-compare { background-color: var(--pll-cream); }
.wp-block-pll-compare-column {
    background-color: var(--pll-white);
    border-radius: var(--pll-radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--pll-mist);
    transition: transform 0.4s var(--pll-ease);
    position: relative;
}
.wp-block-pll-compare-column.is-good {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FAF1 100%);
    border: 2px solid var(--pll-leaf);
    box-shadow: 0 20px 40px rgba(26, 185, 63, 0.18);
}
.wp-block-pll-compare-column.is-good::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--pll-leaf);
    color: white;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    white-space: nowrap;
}
.wp-block-pll-compare-column h3 {
    font-size: 24px;
    margin-bottom: 6px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
}
.wp-block-pll-compare-column.is-bad h3 { color: #8B6B6B; }
.wp-block-pll-compare-column.is-good h3 { color: var(--pll-leaf); }
.wp-block-pll-compare-column > p { font-size: 14px; color: var(--pll-stone); margin-bottom: 28px; }
.wp-block-pll-compare-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--pll-mist);
    font-size: 15px;
    line-height: 1.5;
    align-items: flex-start;
    color: var(--pll-ink);
}
.wp-block-pll-compare-item:last-child { border-bottom: none; }
.wp-block-pll-compare-item::before {
    content: '✓';
    display: inline-grid;
    place-items: center;
    width: 24px; height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    margin-top: 1px;
}
.wp-block-pll-compare-column.is-good .wp-block-pll-compare-item::before { background-color: var(--pll-leaf); color: white; box-shadow: 0 2px 8px rgba(26, 185, 63, 0.3); }
.wp-block-pll-compare-column.is-bad .wp-block-pll-compare-item { color: var(--pll-stone); text-decoration: line-through; text-decoration-color: rgba(192, 57, 43, 0.3); }
.wp-block-pll-compare-column.is-bad .wp-block-pll-compare-item::before { content: '✕'; background: #FDE8E5; color: #C0392B; }

/* ============================================
   PROCESS
   ============================================ */
.wp-block-pll-process {
    background: linear-gradient(180deg, var(--pll-cream) 0%, var(--pll-cream-warm) 100%);
    overflow: hidden;
}
.wp-block-pll-process .pll-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.wp-block-pll-process-step { text-align: center; padding: 20px; position: relative; }
.wp-block-pll-process-step .pll-step-num {
    width: 104px; height: 104px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background-color: var(--pll-white);
    border: 2px solid var(--pll-leaf);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--pll-leaf);
    box-shadow: 0 0 0 8px rgba(26, 185, 63, 0.08);
    transition: all 0.4s var(--pll-ease);
}
.wp-block-pll-process-step:hover .pll-step-num { background-color: var(--pll-forest); color: var(--pll-leaf); border-color: var(--pll-forest); transform: scale(1.08); }
.wp-block-pll-process-step h3 { font-size: 22px; margin-bottom: 10px; color: var(--pll-forest-deep); }
.wp-block-pll-process-step p { color: var(--pll-stone); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.wp-block-pll-testimonials {
    background-color: var(--pll-forest);
    color: var(--pll-cream);
    overflow: hidden;
}
.wp-block-pll-testimonials .pll-section-title,
.wp-block-pll-testimonials h2 { color: var(--pll-cream); }
.wp-block-pll-testimonials .pll-section-title em { color: var(--pll-leaf); }
.wp-block-pll-testimonials p { color: rgba(245, 247, 239, 0.8); }
.wp-block-pll-testimonials .pll-section-eyebrow { color: var(--pll-grass); }
.wp-block-pll-testimonials .pll-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wp-block-pll-testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pll-radius-lg);
    padding: 36px;
    transition: all 0.5s var(--pll-ease);
    position: relative;
}
.wp-block-pll-testimonial-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.wp-block-pll-testimonial-card::before {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--pll-leaf);
    opacity: 0.6;
    position: absolute;
    top: 20px;
    right: 28px;
}
.wp-block-pll-testimonial-card .pll-stars {
    color: var(--pll-leaf);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.wp-block-pll-testimonial-card > p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
    color: var(--pll-cream);
}
.wp-block-pll-testimonial-card .pll-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.wp-block-pll-testimonial-card .pll-author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background-color: var(--pll-grass);
    display: grid; place-items: center;
    color: var(--pll-forest-deep);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.wp-block-pll-testimonial-card .pll-author-info h4 { color: var(--pll-cream); font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; margin: 0 0 2px; }
.wp-block-pll-testimonial-card .pll-author-info p { color: rgba(245, 247, 239, 0.6); font-size: 13px; margin: 0; }

/* ============================================
   AREAS
   ============================================ */
.wp-block-pll-areas { background-color: var(--pll-cream-warm); }
.wp-block-pll-areas ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}
.wp-block-pll-areas li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(15, 31, 20, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
}
.wp-block-pll-areas li::before {
    content: '';
    width: 6px; height: 6px;
    background-color: var(--pll-leaf);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.wp-block-pll-faq { background-color: var(--pll-cream); }
.wp-block-pll-faq-item {
    background-color: var(--pll-white);
    border: 1px solid var(--pll-mist);
    border-radius: var(--pll-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.wp-block-pll-faq-item:hover { border-color: var(--pll-leaf); }
.wp-block-pll-faq-item details[open] { }
.wp-block-pll-faq-item summary {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 17px;
    color: var(--pll-forest-deep);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 60px;
}
.wp-block-pll-faq-item summary::-webkit-details-marker { display: none; }
.wp-block-pll-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    background-color: var(--pll-mist);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pll-leaf);
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.wp-block-pll-faq-item details[open] summary::after {
    content: '×';
    background-color: var(--pll-leaf);
    color: var(--pll-white);
}
.wp-block-pll-faq-item .pll-faq-answer {
    padding: 0 28px 22px;
    color: var(--pll-stone);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.wp-block-pll-final-cta {
    background-color: var(--pll-forest-deep);
    color: var(--pll-cream);
    overflow: hidden;
    isolation: isolate;
}
.wp-block-pll-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 31, 20, 0.88), rgba(47, 107, 47, 0.78));
    z-index: -1;
}
.wp-block-pll-final-cta h2 {
    color: var(--pll-cream);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 20px;
}
.wp-block-pll-final-cta h2 em { color: var(--pll-leaf); font-style: italic; font-weight: 400; }
.wp-block-pll-final-cta p { font-size: 18px; line-height: 1.65; color: var(--pll-cream); opacity: 0.9; }
.wp-block-pll-final-cta .pll-guarantee-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}
.wp-block-pll-final-cta .pll-guarantee-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--pll-cream);
}
.wp-block-pll-final-cta .pll-guarantee-list li::before {
    content: '✓';
    display: inline-grid;
    place-items: center;
    width: 22px; height: 22px;
    background: rgba(26, 185, 63, 0.2);
    color: var(--pll-leaf);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 800;
}

/* ============================================
   LAYOUT HELPERS (2-column sections)
   ============================================ */
.wp-block-pll-hero .pll-hero-grid,
.wp-block-pll-problem .pll-problem-grid,
.wp-block-pll-why .pll-why-grid,
.wp-block-pll-areas .pll-areas-grid,
.wp-block-pll-final-cta .pll-final-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wp-block-pll-hero .pll-hero-grid { grid-template-columns: 1.15fr 1fr; }

.wp-block-pll-compare .pll-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pll-section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .wp-block-pll-hero .pll-hero-grid,
    .wp-block-pll-problem .pll-problem-grid,
    .wp-block-pll-why .pll-why-grid,
    .wp-block-pll-areas .pll-areas-grid,
    .wp-block-pll-final-cta .pll-final-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .wp-block-pll-services .pll-services-grid,
    .wp-block-pll-testimonials .pll-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .wp-block-pll-stats .pll-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .wp-block-pll-process .pll-process-grid { grid-template-columns: 1fr; gap: 40px; }
    .wp-block-pll-industries .pll-industries-grid { grid-template-columns: repeat(3, 1fr); }
    .wp-block-pll-compare .pll-compare-grid { grid-template-columns: 1fr; gap: 36px; max-width: 600px; }
    .wp-block-pll-problem,
    .wp-block-pll-services,
    .wp-block-pll-industries,
    .wp-block-pll-why,
    .wp-block-pll-compare,
    .wp-block-pll-process,
    .wp-block-pll-testimonials,
    .wp-block-pll-areas,
    .wp-block-pll-faq,
    .wp-block-pll-final-cta { padding: 72px 0; }
}

@media (max-width: 640px) {
    .wp-block-pll-hero { padding: 56px 0 72px; }
    .wp-block-pll-services .pll-services-grid,
    .wp-block-pll-testimonials .pll-testimonials-grid { grid-template-columns: 1fr; }
    .wp-block-pll-industries .pll-industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .wp-block-pll-areas ul { grid-template-columns: 1fr; }
    .wp-block-pll-problem,
    .wp-block-pll-services,
    .wp-block-pll-industries,
    .wp-block-pll-why,
    .wp-block-pll-compare,
    .wp-block-pll-process,
    .wp-block-pll-testimonials,
    .wp-block-pll-areas,
    .wp-block-pll-faq,
    .wp-block-pll-final-cta { padding: 56px 0; }
    .wp-block-pll-form-slot { padding: 28px 24px; }
    .wp-block-pll-service-card,
    .wp-block-pll-testimonial-card { padding: 24px; }
    .wp-block-pll-compare-column { padding: 28px 22px; }
    .wp-block-pll-trust-bar .pll-marquee-item { font-size: 18px; }
}
