/**
 * Like-Buy Design Pages - Frontend Styles
 * Full-width modern design system
 */

/* ===== CSS Variables ===== */
:root {
    --lbdp-primary: #0f172a;
    --lbdp-secondary: #1e3a5f;
    --lbdp-accent: #dc2626;
    --lbdp-ink: #0b1120;
    --lbdp-muted: #64748b;
    --lbdp-card: #ffffff;
    --lbdp-shell: #f8fafc;
    --lbdp-border: #e2e8f0;
    --lbdp-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    
    /* Gradient colors */
    --lbdp-gradient-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --lbdp-gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --lbdp-gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --lbdp-gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --lbdp-gradient-pink: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* ===== Base Styles ===== */
.lbdp-page {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lbdp-ink);
    background: #ffffff;
    line-height: 1.6;
}

/* Keep CTA copy centered/white on gratis pages even with aggressive theme overrides. */
.lbdp-page .lbdp-gf-cta-content p,
.lbdp-page .lbdp-gl-cta-content p,
.lbdp-page .lbdp-gf-cta-copy,
.lbdp-page .lbdp-gl-cta-copy {
    text-align: center !important;
    color: #ffffff !important;
}

.lbdp-page .lbdp-gf-cta-content p span,
.lbdp-page .lbdp-gl-cta-content p span,
.lbdp-page .lbdp-gf-cta-copy span,
.lbdp-page .lbdp-gl-cta-copy span {
    display: block;
    width: 100%;
    text-align: center !important;
    color: #ffffff !important;
}

.lbdp-page h1,
.lbdp-page h2,
.lbdp-page h3,
.lbdp-page h4 {
    font-family: "Manrope", sans-serif;
    color: var(--lbdp-ink);
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.2;
}

.lbdp-page h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.lbdp-page h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.lbdp-page p {
    margin: 0 0 16px;
    line-height: 1.7;
    color: var(--lbdp-muted);
}

.lbdp-page strong {
    color: var(--lbdp-ink);
    font-weight: 700;
}

/* ===== Full-Width Container System ===== */
.lbdp-full-width {
    width: 100%;
    margin: 0;
    padding: 0;
}

.lbdp-max-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Section Backgrounds ===== */
.lbdp-section-hero {
    background: var(--lbdp-gradient);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lbdp-section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.lbdp-section-hero > * {
    position: relative;
    z-index: 1;
}

.lbdp-section-white {
    background: #ffffff;
    padding: 80px 0;
}

.lbdp-section-alt {
    background: var(--lbdp-shell);
    padding: 80px 0;
}

.lbdp-text-center {
    text-align: center;
}

/* ===== Badge Component ===== */
.lbdp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.lbdp-badge-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.2) 100%);
    color: #1e40af;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.lbdp-badge-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #065f46;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.lbdp-badge-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.2) 100%);
    color: #9a3412;
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.lbdp-badge-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.2) 100%);
    color: #6b21a8;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.lbdp-badge-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.2) 100%);
    color: #9f1239;
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.lbdp-badge-white {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* ===== Button Styles ===== */
.lbdp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.lbdp-btn-primary {
    background: var(--lbdp-gradient);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2), 0 4px 12px rgba(15, 23, 42, 0.1);
}

.lbdp-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.3), 0 8px 20px rgba(15, 23, 42, 0.15);
}

.lbdp-btn-white-large {
    background: #ffffff;
    color: var(--lbdp-primary);
    padding: 20px 48px;
    font-size: 1.15rem;
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2), 0 6px 16px rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

.lbdp-btn-white-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 48px rgba(255, 255, 255, 0.3), 0 10px 24px rgba(255, 255, 255, 0.2);
}

/* ===== Section Header ===== */
.lbdp-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.lbdp-section-header h2 {
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--lbdp-ink) 0%, var(--lbdp-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lbdp-section-header p {
    font-size: 1.1rem;
    color: var(--lbdp-muted);
    line-height: 1.8;
}

/* ===== Product Grid Placeholder ===== */
.lbdp-product-grid-placeholder {
    background: var(--lbdp-shell);
    padding: 60px 0;
}

.lbdp-placeholder-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 197, 253, 0.05) 100%);
    border: 3px dashed rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.lbdp-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 24px;
}

.lbdp-placeholder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.lbdp-placeholder-card code {
    background: rgba(15, 23, 42, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: "Monaco", "Courier New", monospace;
    font-size: 0.9rem;
    color: var(--lbdp-accent);
}

.lbdp-placeholder-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--lbdp-muted);
    margin-top: 20px;
}

/* ===== Step Row Layout ===== */
.lbdp-step-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.lbdp-step-row-reverse {
    flex-direction: row-reverse;
}

.lbdp-step-visual {
    flex: 0 0 260px;
    height: 260px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lbdp-step-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-step-visual:hover::before {
    transform: translate(-25%, -25%) scale(1.2);
}

.lbdp-step-visual:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15);
}

.lbdp-gradient-blue {
    background: var(--lbdp-gradient-blue);
}

.lbdp-gradient-green {
    background: var(--lbdp-gradient-green);
}

.lbdp-gradient-orange {
    background: var(--lbdp-gradient-orange);
}

.lbdp-gradient-purple {
    background: var(--lbdp-gradient-purple);
}

.lbdp-step-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.lbdp-step-visual p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.lbdp-step-content {
    flex: 1;
}

.lbdp-step-content h2,
.lbdp-step-content h3 {
    margin-bottom: 16px;
}

/* ===== Checklist ===== */
.lbdp-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.lbdp-checklist li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--lbdp-ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Advantages Grid ===== */
.lbdp-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.lbdp-advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.lbdp-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lbdp-gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-advantage-card:hover::before {
    transform: scaleX(1);
}

.lbdp-advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15), 0 12px 24px rgba(15, 23, 42, 0.1);
}

.lbdp-advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-advantage-card:hover .lbdp-advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.25) 100%);
}

.lbdp-advantage-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.lbdp-advantage-card p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== Testimonials Grid ===== */
.lbdp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.lbdp-testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.lbdp-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(59, 130, 246, 0.08);
    font-family: Georgia, serif;
    font-weight: 700;
}

.lbdp-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.08);
}

.lbdp-testimonial-rating {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.lbdp-testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--lbdp-ink);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.lbdp-testimonial-author strong {
    display: block;
    font-size: 1.05rem;
    color: var(--lbdp-ink);
    margin-bottom: 6px;
    font-weight: 700;
}

.lbdp-testimonial-author span {
    font-size: 0.9rem;
    color: var(--lbdp-muted);
}

/* ===== SEO Content Section ===== */
.lbdp-seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.lbdp-seo-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 20px;
}

.lbdp-seo-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-top: 40px;
    margin-bottom: 16px;
}

.lbdp-seo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== Table Container ===== */
.lbdp-table-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
    border: none;
}

.lbdp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    overflow: hidden;
}

.lbdp-comparison-table thead {
    background: var(--lbdp-gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.lbdp-comparison-table th {
    padding: 22px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.lbdp-comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 1rem;
    line-height: 1.7;
}

.lbdp-comparison-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-comparison-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
    transform: scale(1.005);
}

.lbdp-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.lbdp-comparison-table tbody tr:nth-child(even) {
    background: rgba(248, 250, 252, 0.6);
}

.lbdp-comparison-table tbody tr:nth-child(even):hover {
    background: rgba(59, 130, 246, 0.05);
}

/* ===== Pillars Grid ===== */
.lbdp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.lbdp-pillar-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.08);
}

.lbdp-pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.lbdp-pillar-card p {
    margin: 0;
    line-height: 1.7;
}

/* ===== Use Cases Grid ===== */
.lbdp-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.lbdp-use-case-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.lbdp-use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lbdp-gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-use-case-card:hover::before {
    transform: scaleX(1);
}

.lbdp-use-case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15), 0 12px 24px rgba(15, 23, 42, 0.1);
}

.lbdp-use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-use-case-card:hover .lbdp-use-case-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.25) 100%);
}

.lbdp-use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.lbdp-use-case-card p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== Statistics Banner ===== */
.lbdp-stats-banner {
    background: var(--lbdp-gradient);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lbdp-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.lbdp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lbdp-stat {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lbdp-stat:hover {
    transform: translateY(-8px) scale(1.05);
}

.lbdp-stat-number {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lbdp-stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ===== Platform Sections ===== */
.lbdp-platform-section {
    margin-bottom: 70px;
    padding-bottom: 70px;
    position: relative;
}

.lbdp-platform-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    border-radius: 4px;
}

.lbdp-platform-section:last-child::after {
    display: none;
}

.lbdp-platform-section h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--lbdp-ink) 0%, var(--lbdp-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lbdp-platform-section > p {
    font-size: 1.1rem;
    color: var(--lbdp-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.lbdp-product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lbdp-product-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--lbdp-border);
    border-radius: 50px;
    color: var(--lbdp-ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.lbdp-product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--lbdp-gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.lbdp-product-btn:hover::before {
    left: 0;
}

.lbdp-product-btn:hover {
    color: #ffffff;
    border-color: var(--lbdp-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2), 0 6px 12px rgba(15, 23, 42, 0.1);
}

/* ===== FAQ Accordion ===== */
.lbdp-faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.lbdp-faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 20px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.05);
}

.lbdp-faq-item summary {
    padding: 24px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lbdp-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lbdp-faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lbdp-primary);
    transition: transform 0.3s ease;
}

.lbdp-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.lbdp-faq-item[open] {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(59, 130, 246, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, rgba(59, 130, 246, 0.02) 100%);
}

.lbdp-faq-answer {
    padding: 0 28px 24px;
}

.lbdp-faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lbdp-muted);
    margin: 0;
}

/* ===== Final CTA Section ===== */
.lbdp-final-cta {
    background: var(--lbdp-gradient);
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lbdp-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lbdp-final-cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lbdp-final-cta > div > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.lbdp-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.lbdp-cta-trust span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .lbdp-max-container {
        padding: 0 20px;
    }
    
    .lbdp-section-white,
    .lbdp-section-alt {
        padding: 50px 0;
    }
    
    .lbdp-section-header {
        margin-bottom: 40px;
    }
    
    .lbdp-step-row,
    .lbdp-step-row-reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .lbdp-step-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
        height: 200px;
    }
    
    .lbdp-advantages-grid,
    .lbdp-testimonials-grid,
    .lbdp-use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lbdp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .lbdp-product-buttons {
        justify-content: center;
    }
    
    .lbdp-cta-trust {
        flex-direction: column;
        gap: 16px;
    }
    
    .lbdp-platform-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .lbdp-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .lbdp-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .lbdp-btn-white-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .lbdp-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .lbdp-faq-item summary {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .lbdp-faq-answer {
        padding: 0 20px 18px;
    }
}

/* ================================================================
   GRATIS PAGES – Follower (lbdp-gf-*) & Likes (lbdp-gl-*)
   Shared styles via combined selectors where identical
   ================================================================ */

/* ---------- Root / Page ---------- */
.lbdp-gratis-follower,
.lbdp-gratis-likes {
    font-family: 'Manrope', 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Force strong weight for all headings so it looks sharp without Manrope */
.lbdp-gratis-follower h1, .lbdp-gratis-follower h2, .lbdp-gratis-follower h3,
.lbdp-gratis-likes h1, .lbdp-gratis-likes h2, .lbdp-gratis-likes h3 {
    font-family: 'Manrope', 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.lbdp-gratis-follower p, .lbdp-gratis-follower li, .lbdp-gratis-follower label,
.lbdp-gratis-likes p, .lbdp-gratis-likes li, .lbdp-gratis-likes label {
    font-family: 'Manrope', 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* ---------- Container ---------- */
.lbdp-gf-container,
.lbdp-gl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.lbdp-gf-narrow,
.lbdp-gl-narrow {
    max-width: 720px;
}

/* ---------- Animate ---------- */
.lbdp-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: var(--delay, 0s);
}
.lbdp-animate.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- HERO – Follower (indigo) ---------- */
.lbdp-gf-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ---------- HERO – Likes (pink) ---------- */
.lbdp-gl-hero {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Orbs */
.lbdp-gf-hero-bg,
.lbdp-gl-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.lbdp-gf-orb,
.lbdp-gl-orb {
    position: absolute;
    border-radius: 50%;
    opacity: .15;
    filter: blur(60px);
}
.lbdp-gf-orb-1 { width: 500px; height: 500px; background: #818cf8; top: -150px; left: -100px; }
.lbdp-gf-orb-2 { width: 400px; height: 400px; background: #c084fc; bottom: -80px; right: -80px; }
.lbdp-gl-orb-1 { width: 500px; height: 500px; background: #f9a8d4; top: -150px; left: -100px; }
.lbdp-gl-orb-2 { width: 400px; height: 400px; background: #fed7aa; bottom: -80px; right: -80px; }

/* Hero Badge */
.lbdp-gf-hero-badge,
.lbdp-gl-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

/* Hero Title */
.lbdp-gf-hero-title,
.lbdp-gl-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
}

/* Hero Sub */
.lbdp-gf-hero-sub,
.lbdp-gl-hero-sub {
    font-size: 1.15rem;
    color: #fff !important;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.7;
    text-align: center !important;
    display: block;
}

/* Trust chips */
.lbdp-gf-hero-trust,
.lbdp-gl-hero-trust {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.lbdp-gf-hero-trust span,
.lbdp-gl-hero-trust span {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
}

/* ---------- Stats Bar ---------- */
.lbdp-gf-stats-bar,
.lbdp-gl-stats-bar {
    background: #1e293b;
    padding: 40px 0;
}
.lbdp-gf-stats-grid,
.lbdp-gl-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.lbdp-gf-stat,
.lbdp-gl-stat {}
.lbdp-gf-stat-number,
.lbdp-gl-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}
.lbdp-gf-stat-label,
.lbdp-gl-stat-label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

/* ---------- Sections ---------- */
.lbdp-gf-section,
.lbdp-gl-section {
    padding: 80px 0;
}
.lbdp-gf-section-label,
.lbdp-gl-section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #6366f1;
    margin-bottom: 12px;
}
.lbdp-gl-section-label {
    color: #ec4899;
}
.lbdp-gf-section-title,
.lbdp-gl-section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 48px;
    line-height: 1.25;
}

/* ---------- Features Grid ---------- */
.lbdp-gf-features-grid,
.lbdp-gl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lbdp-gf-feature-card,
.lbdp-gl-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}
.lbdp-gf-feature-card:hover,
.lbdp-gl-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.lbdp-gf-feature-icon,
.lbdp-gl-feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.lbdp-gf-feature-card h3,
.lbdp-gl-feature-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}
.lbdp-gf-feature-card p,
.lbdp-gl-feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Steps ---------- */
.lbdp-gf-steps,
.lbdp-gl-steps {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.lbdp-gf-step,
.lbdp-gl-step {
    flex: 1; min-width: 160px; max-width: 220px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.lbdp-gf-step-num,
.lbdp-gl-step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.lbdp-gl-step-num {
    background: linear-gradient(135deg, #ec4899, #f97316);
}
.lbdp-gf-step h3,
.lbdp-gl-step h3 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}
.lbdp-gf-step p,
.lbdp-gl-step p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.lbdp-gf-step-arrow,
.lbdp-gl-step-arrow {
    font-size: 24px;
    color: #cbd5e1;
    align-self: center;
    flex-shrink: 0;
}

/* ---------- Form Section ---------- */
.lbdp-gf-form-section,
.lbdp-gl-form-section {
    background: #f8fafc;
}
.lbdp-gf-form-card,
.lbdp-gl-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    overflow: hidden;
}
.lbdp-gf-form-header,
.lbdp-gl-form-header {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 32px 36px;
    text-align: center;
}
.lbdp-gl-form-header {
    background: linear-gradient(135deg, #ec4899, #f97316);
}
.lbdp-gf-form-header h2,
.lbdp-gl-form-header h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
}
.lbdp-gf-form-header p,
.lbdp-gl-form-header p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    margin: 0;
}

/* Form Elements (lbdp-gf-form-wrap) */
.lbdp-gf-form-wrap {
    padding: 32px 36px;
}
.lbdp-gf-notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 24px;
    line-height: 1.5;
}
.lbdp-gf-notice--pink {
    background: #fdf2f8;
    border-color: #fbcfe8;
    color: #9d174d;
}
.lbdp-gf-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.lbdp-gf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lbdp-gf-field label {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}
.lbdp-gf-field input[type="text"],
.lbdp-gf-field input[type="email"],
.lbdp-gf-field input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
}
.lbdp-gf-field input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
    background: #fff;
}
.lbdp-gf-checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    line-height: 1.55;
}
.lbdp-gf-checkbox-field input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #6366f1;
}
.lbdp-gf-checkbox-field a {
    color: #6366f1;
    text-decoration: underline;
}
.lbdp-gf-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    font-family: inherit;
    letter-spacing: .02em;
}
.lbdp-gf-btn:hover { opacity: .92; transform: translateY(-1px); }
.lbdp-gf-btn:active { transform: translateY(0); }
.lbdp-gf-btn--pink {
    background: linear-gradient(135deg, #ec4899, #f97316);
}
.lbdp-gf-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.55;
}
.lbdp-gf-success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}
.lbdp-gf-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.lbdp-gf-legal {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.lbdp-gf-legal a { color: #6366f1; }

/* ---------- SEO / Text Blocks ---------- */
.lbdp-gf-seo-wrap,
.lbdp-gl-seo-wrap {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.lbdp-gf-seo-block,
.lbdp-gl-seo-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.lbdp-gf-seo-block h2,
.lbdp-gl-seo-block h2 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}
.lbdp-gf-seo-block p,
.lbdp-gl-seo-block p {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin: 0 0 14px;
}
.lbdp-gf-seo-block p:last-child,
.lbdp-gl-seo-block p:last-child { margin-bottom: 0; }
.lbdp-gf-seo-list,
.lbdp-gl-seo-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.lbdp-gf-seo-list li,
.lbdp-gl-seo-list li {
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: #374151;
    line-height: 1.65;
}
.lbdp-gf-seo-list li::before,
.lbdp-gl-seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 900;
}
.lbdp-gl-seo-list li::before { color: #ec4899; }

/* Tips Grid */
.lbdp-gf-tips-grid,
.lbdp-gl-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lbdp-gf-tip-item,
.lbdp-gl-tip-item {
    display: flex;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    align-items: flex-start;
    font-size: 14px;
    color: #374151;
    line-height: 1.55;
}
.lbdp-gf-tip-icon,
.lbdp-gl-tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.lbdp-gf-faq-wrap,
.lbdp-gl-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lbdp-gf-faq-item,
.lbdp-gl-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.lbdp-gf-faq-item summary,
.lbdp-gl-faq-item summary {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background .15s;
}
.lbdp-gf-faq-item summary:hover,
.lbdp-gl-faq-item summary:hover { background: #f8fafc; }
.lbdp-gf-faq-item summary::after,
.lbdp-gl-faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: #94a3b8;
    flex-shrink: 0;
}
.lbdp-gf-faq-item[open] summary::after,
.lbdp-gl-faq-item[open] summary::after { content: '−'; }
.lbdp-gf-faq-answer,
.lbdp-gl-faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

/* ---------- CTA Bottom Section ---------- */
.lbdp-gf-cta-section,
.lbdp-gl-cta-section {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.lbdp-gl-cta-section {
    background: linear-gradient(135deg, #ec4899, #f97316);
}
.lbdp-gf-cta-title,
.lbdp-gl-cta-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}
.lbdp-gf-cta-sub,
.lbdp-gl-cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.65;
}
.lbdp-gf-cta-btn,
.lbdp-gl-cta-btn {
    display: inline-block;
    background: #fff;
    color: #4f46e5;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.lbdp-gl-cta-btn { color: #ec4899; }
.lbdp-gf-cta-btn:hover,
.lbdp-gl-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

/* ---------- Testimonials ---------- */
.lbdp-gf-testimonials-grid,
.lbdp-gl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lbdp-gf-testimonial,
.lbdp-gl-testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.lbdp-gf-testimonial-stars,
.lbdp-gl-testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px;
}
.lbdp-gf-testimonial-text,
.lbdp-gl-testimonial-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.lbdp-gf-testimonial-author,
.lbdp-gl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lbdp-gf-testimonial-avatar,
.lbdp-gl-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff; font-weight: 700;
    flex-shrink: 0;
}
.lbdp-gl-testimonial-avatar {
    background: linear-gradient(135deg, #ec4899, #f97316);
}
.lbdp-gf-testimonial-name,
.lbdp-gl-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.lbdp-gf-testimonial-meta,
.lbdp-gl-testimonial-meta {
    font-size: 12px;
    color: #94a3b8;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .lbdp-gf-features-grid,
    .lbdp-gl-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lbdp-gf-testimonials-grid,
    .lbdp-gl-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lbdp-gf-stats-grid,
    .lbdp-gl-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .lbdp-gf-hero,
    .lbdp-gl-hero { padding: 70px 0 60px; }
    .lbdp-gf-section,
    .lbdp-gl-section { padding: 56px 0; }
    .lbdp-gf-features-grid,
    .lbdp-gl-features-grid,
    .lbdp-gf-testimonials-grid,
    .lbdp-gl-testimonials-grid,
    .lbdp-gf-tips-grid,
    .lbdp-gl-tips-grid { grid-template-columns: 1fr; }
    .lbdp-gf-stats-grid,
    .lbdp-gl-stats-grid { grid-template-columns: 1fr 1fr; }
    .lbdp-gf-steps,
    .lbdp-gl-steps { flex-direction: column; align-items: center; }
    .lbdp-gf-step-arrow,
    .lbdp-gl-step-arrow { transform: rotate(90deg); }
    .lbdp-gf-form-wrap { padding: 20px; }
    .lbdp-gf-seo-block,
    .lbdp-gl-seo-block { padding: 24px 20px; }
}
