/* ============================================================
   JASA PEMBUATAN LANDING PAGE — landing-page.css
   Scope: /layanan/jasa-pembuatan-landing-page
   Prefix: llp-
   ============================================================ */

:root {
    --llp-bg:           #0a0f1a;
    --llp-bg-2:         #111827;
    --llp-bg-3:         #1f2937;
    --llp-text:         #f9fafb;
    --llp-muted:        #9ca3af;
    --llp-border:       rgba(255,255,255,0.07);
    --llp-green:        #84cc16;
    --llp-green-dark:   #65a30d;
    --llp-orange:       #f97316;
    --llp-orange-glow:  rgba(249,115,22,0.18);
    --llp-green-glow:   rgba(132,204,22,0.12);
    --llp-radius:       12px;
    --llp-radius-lg:    20px;
}

/* ============================================================
   HERO
   ============================================================ */
.llp-hero {
    position: relative;
    min-height: 100vh;
    background: var(--llp-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Background layers */
.llp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.llp-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.llp-glow-orange {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--llp-orange-glow) 0%, transparent 65%);
    border-radius: 50%;
    animation: llp-pulse-orange 9s ease-in-out infinite;
}

.llp-glow-green {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--llp-green-glow) 0%, transparent 65%);
    border-radius: 50%;
    animation: llp-pulse-green 11s ease-in-out infinite;
}

@keyframes llp-pulse-orange {
    0%, 100% { transform: scale(1);     opacity: 1; }
    50%       { transform: scale(1.2);  opacity: 0.5; }
}
@keyframes llp-pulse-green {
    0%, 100% { transform: scale(1);     opacity: 1; }
    50%       { transform: scale(1.15); opacity: 0.6; }
}

/* Grid lines diagonal */
.llp-grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.08), transparent);
    height: 1px;
    width: 100%;
    transform-origin: left center;
}
.llp-grid-line:nth-child(1) { top: 25%;  transform: rotate(-6deg) scaleX(1.4); }
.llp-grid-line:nth-child(2) { top: 55%;  transform: rotate(-6deg) scaleX(1.4); }
.llp-grid-line:nth-child(3) { top: 80%;  transform: rotate(-6deg) scaleX(1.4); }

/* ── Layout ── */
.llp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── Breadcrumb ── */
.llp-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--llp-muted);
    margin-bottom: 24px;
}
.llp-breadcrumb ol li + li::before {
    content: '/';
    margin-right: 6px;
    opacity: 0.4;
}
.llp-breadcrumb a {
    color: var(--llp-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.llp-breadcrumb a:hover { color: var(--llp-green); }

/* ── Badge ── */
.llp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.3);
    color: #fb923c;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.llp-badge-dot {
    width: 7px;
    height: 7px;
    background: #fb923c;
    border-radius: 50%;
    animation: llp-blink 1.8s ease-in-out infinite;
}
@keyframes llp-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ── Heading ── */
.llp-hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--llp-text);
    line-height: 1.15;
    margin-bottom: 20px;
}

.llp-accent-orange { color: var(--llp-orange); }
.llp-accent-green  { color: var(--llp-green); }

/* ── Desc ── */
.llp-hero-desc {
    font-size: 1.05rem;
    color: var(--llp-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}
.llp-hero-desc strong { color: var(--llp-text); }

/* ── CTAs ── */
.llp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.llp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--llp-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: var(--llp-radius);
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}
.llp-btn-primary:hover {
    background: #ea6c0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249,115,22,0.45);
    color: #fff;
}

.llp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--llp-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 24px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--llp-radius);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.llp-btn-outline:hover {
    border-color: var(--llp-green);
    color: var(--llp-green);
    transform: translateY(-2px);
}

/* ── Stats ── */
.llp-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.llp-stat { text-align: center; }
.llp-stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--llp-text);
    line-height: 1;
}
.llp-stat-label {
    font-size: 0.76rem;
    color: var(--llp-muted);
    margin-top: 4px;
    display: block;
}
.llp-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--llp-border);
}

/* ── Visual: Overlapping Cards ── */
.llp-hero-visual {
    position: relative;
    height: 520px;
}

.llp-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.llp-mock-card {
    position: absolute;
    border-radius: var(--llp-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.4s ease;
}
.llp-mock-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.llp-mock-card:hover { transform: scale(1.03) !important; }

/* Card 1 — besar, tengah-atas */
.llp-mock-card--1 {
    width: 78%;
    height: 260px;
    top: 0;
    left: 11%;
    z-index: 3;
    transform: rotate(-1deg);
}

/* Card 2 — medium, kiri-bawah, overlapping */
.llp-mock-card--2 {
    width: 56%;
    height: 200px;
    bottom: 40px;
    left: -10px;
    z-index: 4;
    transform: rotate(2deg);
}

/* Card 3 — medium, kanan-bawah, overlapping */
.llp-mock-card--3 {
    width: 52%;
    height: 180px;
    bottom: 60px;
    right: -10px;
    z-index: 2;
    transform: rotate(-2.5deg);
}

/* Badge floating di atas card */
.llp-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    font-size: 0.78rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    white-space: nowrap;
}
.llp-float-badge svg { flex-shrink: 0; }

.llp-float-badge--rate {
    top: 20px;
    right: 0;
}
.llp-float-badge--speed {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.llp-float-dot-green { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
.llp-float-dot-orange { width: 8px; height: 8px; background: var(--llp-orange); border-radius: 50%; }

/* Scroll hint */
.llp-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}
.llp-scroll-hint span {
    display: block;
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    margin: 0 auto;
    animation: llp-scroll-drop 2s ease-in-out infinite;
}
@keyframes llp-scroll-drop {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: translateY(10px); }
}


/* ============================================================
   SECTION UMUM
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.llp-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--llp-orange);
    margin-bottom: 12px;
}

.llp-section-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.llp-problem {
    background: #fff;
    padding: 96px 0;
}

.llp-problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.llp-problem-text .llp-eyebrow { color: #f97316; }

.llp-problem-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 20px;
}

.llp-problem-text h2 em {
    font-style: normal;
    color: var(--llp-orange);
}

.llp-problem-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.llp-pullquote {
    border-left: 4px solid var(--llp-orange);
    padding: 16px 20px;
    margin: 28px 0;
    background: #fff8f3;
    border-radius: 0 var(--llp-radius) var(--llp-radius) 0;
}
.llp-pullquote p {
    color: #111 !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.llp-problem-visual {
    position: relative;
}

.llp-problem-visual img {
    width: 100%;
    border-radius: var(--llp-radius-lg);
    display: block;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.llp-problem-tag {
    position: absolute;
    bottom: -18px;
    left: 24px;
    background: var(--llp-orange);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--llp-radius);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}


/* ============================================================
   PRICING
   ============================================================ */
.llp-pricing {
    background: var(--llp-bg-2);
    padding: 100px 0;
}

.llp-pricing-header {
    text-align: center;
    margin-bottom: 56px;
}
.llp-pricing-header .llp-section-heading { color: var(--llp-text); }
.llp-pricing-header p {
    color: var(--llp-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.llp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.llp-price-card {
    background: var(--llp-bg-3);
    border: 1px solid var(--llp-border);
    border-radius: var(--llp-radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.llp-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.llp-price-card--featured {
    border-color: var(--llp-orange);
    background: linear-gradient(160deg, #1f2937 0%, #1a1f30 100%);
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(249,115,22,0.25);
}
.llp-price-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.llp-price-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--llp-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.llp-price-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--llp-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.llp-price-card--featured .llp-price-name { color: #fb923c; }

.llp-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--llp-text);
    line-height: 1;
    margin-bottom: 4px;
}
.llp-price-sub {
    font-size: 0.82rem;
    color: var(--llp-muted);
    margin-bottom: 24px;
}

.llp-price-divider {
    height: 1px;
    background: var(--llp-border);
    margin-bottom: 24px;
}

.llp-price-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.llp-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--llp-muted);
    line-height: 1.5;
}
.llp-price-features li svg { flex-shrink: 0; margin-top: 2px; }

.llp-price-cta {
    display: block;
    text-align: center;
    background: var(--llp-bg);
    color: var(--llp-text);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 20px;
    border-radius: var(--llp-radius);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.12);
    transition: border-color 0.25s, color 0.25s;
}
.llp-price-cta:hover {
    border-color: var(--llp-green);
    color: var(--llp-green);
}

.llp-price-card--featured .llp-price-cta {
    background: var(--llp-orange);
    border-color: var(--llp-orange);
    box-shadow: 0 6px 24px rgba(249,115,22,0.4);
}
.llp-price-card--featured .llp-price-cta:hover {
    background: #ea6c0a;
    border-color: #ea6c0a;
    color: #fff;
}

.llp-pricing-note {
    text-align: center;
    margin-top: 36px;
    color: var(--llp-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}
.llp-pricing-note strong { color: var(--llp-text); }


/* ============================================================
   DIFFERENTIATOR SECTION
   ============================================================ */
.llp-diff {
    background: #fff;
    padding: 100px 0;
}

.llp-diff-header {
    max-width: 640px;
    margin-bottom: 56px;
}
.llp-diff-header .llp-eyebrow { color: var(--llp-orange); }
.llp-diff-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111;
    line-height: 1.25;
}

.llp-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.llp-diff-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--llp-radius-lg);
    padding: 32px 28px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.llp-diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--llp-orange);
}

.llp-diff-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fff3eb, #fde8d5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--llp-orange);
    flex-shrink: 0;
}

.llp-diff-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.llp-diff-body p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}


/* ============================================================
   PROCESS / HOW TO ORDER
   ============================================================ */
.llp-process {
    background: var(--llp-bg);
    padding: 100px 0;
}

.llp-process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.llp-process-header .llp-section-heading { color: var(--llp-text); }
.llp-process-header p {
    color: var(--llp-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.llp-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    counter-reset: llp-step;
}

.llp-step {
    background: var(--llp-bg-3);
    border: 1px solid var(--llp-border);
    border-radius: var(--llp-radius-lg);
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    counter-increment: llp-step;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.llp-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--llp-orange);
    opacity: 0;
    transition: opacity 0.3s;
}
.llp-step:hover { transform: translateX(4px); border-color: rgba(249,115,22,0.3); }
.llp-step:hover::before { opacity: 1; }

.llp-step-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(249,115,22,0.18);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    text-align: right;
}

.llp-step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--llp-text);
    margin-bottom: 8px;
}
.llp-step-body p {
    font-size: 0.88rem;
    color: var(--llp-muted);
    line-height: 1.7;
}

/* ============================================================
   SPECS TABLE
   ============================================================ */
.llp-specs {
    background: var(--llp-bg-2);
    padding: 96px 0;
}

.llp-specs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.llp-specs-text .llp-section-heading { color: var(--llp-text); }
.llp-specs-text p {
    color: var(--llp-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.llp-specs-cta-wrap { margin-top: 32px; }

.llp-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.llp-specs-table tr {
    border-bottom: 1px solid var(--llp-border);
    transition: background 0.2s;
}
.llp-specs-table tr:hover { background: rgba(255,255,255,0.03); }
.llp-specs-table td {
    padding: 14px 16px;
    vertical-align: top;
    color: var(--llp-muted);
    line-height: 1.6;
}
.llp-specs-table td:first-child {
    color: var(--llp-text);
    font-weight: 600;
    width: 42%;
    white-space: nowrap;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.llp-testi {
    background: #fff;
    padding: 100px 0;
}

.llp-testi-header {
    text-align: center;
    margin-bottom: 56px;
}
.llp-testi-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}
.llp-testi-header p { color: #555; font-size: 1rem; }

.llp-testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.llp-testi-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--llp-radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.llp-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.llp-testi-quote {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 4rem;
    line-height: 1;
    color: #f97316;
    opacity: 0.2;
    font-family: Georgia, serif;
    pointer-events: none;
}

.llp-testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.llp-testi-stars svg { color: #f59e0b; }

.llp-testi-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.llp-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.llp-testi-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}
.llp-testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    display: block;
}
.llp-testi-role {
    font-size: 0.8rem;
    color: #888;
}

.llp-testi-rating-bar {
    background: linear-gradient(135deg, #fff8f3, #fff3eb);
    border: 1px solid #fde8d5;
    border-radius: var(--llp-radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    text-align: center;
}
.llp-rating-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--llp-orange);
    line-height: 1;
}
.llp-rating-item span {
    font-size: 0.82rem;
    color: #666;
    margin-top: 4px;
    display: block;
}
.llp-rating-divider {
    width: 1px;
    height: 40px;
    background: #fde8d5;
}


/* ============================================================
   FAQ
   ============================================================ */
.llp-faq {
    background: var(--llp-bg);
    padding: 100px 0;
}

.llp-faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.llp-faq-sidebar .llp-section-heading { color: var(--llp-text); }
.llp-faq-sidebar p {
    color: var(--llp-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.llp-faq-sidebar .llp-btn-primary { display: inline-flex; }

.llp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.llp-faq-item {
    background: var(--llp-bg-3);
    border: 1px solid var(--llp-border);
    border-radius: var(--llp-radius);
    overflow: hidden;
}

.llp-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--llp-text);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: inherit;
    transition: color 0.2s;
}
.llp-faq-q:hover { color: var(--llp-orange); }
.llp-faq-q[aria-expanded="true"] { color: var(--llp-orange); }

.llp-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.llp-faq-q[aria-expanded="true"] .llp-faq-icon {
    transform: rotate(45deg);
    background: var(--llp-orange);
    border-color: var(--llp-orange);
}

.llp-faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.llp-faq-a.is-open {
    padding: 0 24px 20px;
    max-height: 400px;
}
.llp-faq-a p {
    font-size: 0.9rem;
    color: var(--llp-muted);
    line-height: 1.75;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.llp-final-cta {
    background: linear-gradient(135deg, var(--llp-bg-2) 0%, #1a0f05 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.llp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.llp-final-cta-inner { position: relative; z-index: 1; }

.llp-final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--llp-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.llp-final-cta p {
    font-size: 1.05rem;
    color: var(--llp-muted);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.llp-final-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.llp-contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.llp-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--llp-muted);
}
.llp-contact-item svg { color: var(--llp-orange); flex-shrink: 0; }


/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.llp-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--llp-bg-2);
    border-top: 1px solid var(--llp-border);
    padding: 12px 20px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.llp-sticky-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--llp-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px;
    border-radius: var(--llp-radius);
    text-decoration: none;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .llp-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .llp-price-card--featured { transform: none; }
    .llp-price-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .llp-hero-inner      { grid-template-columns: 1fr; }
    .llp-hero-visual     { height: 340px; margin-top: 40px; }
    .llp-mock-card--1    { width: 88%; left: 6%; height: 200px; }
    .llp-mock-card--2    { width: 60%; bottom: 20px; height: 160px; }
    .llp-mock-card--3    { width: 55%; bottom: 30px; height: 140px; }
    .llp-problem-inner   { grid-template-columns: 1fr; }
    .llp-diff-grid       { grid-template-columns: 1fr; }
    .llp-steps           { grid-template-columns: 1fr; }
    .llp-specs-inner     { grid-template-columns: 1fr; }
    .llp-testi-grid      { grid-template-columns: 1fr; }
    .llp-faq-inner       { grid-template-columns: 1fr; }
    .llp-testi-rating-bar { flex-direction: column; gap: 24px; }
    .llp-rating-divider  { width: 80px; height: 1px; }
    .llp-sticky-bar      { display: block; }
    .llp-hero-stats      { flex-wrap: wrap; gap: 20px; }
    .llp-float-badge     { display: none; }
}

@media (max-width: 480px) {
    .llp-hero { padding: 100px 0 60px; }
    .llp-hero-visual { height: 280px; }
    .llp-mock-card--3 { display: none; }
    .llp-hero-ctas { flex-direction: column; }
    .llp-btn-primary, .llp-btn-outline { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
