/* Local landing pages — brand palette #2072F3 */
.local-landing-page {
    --ll-ink: var(--heading);
    --ll-slate: var(--text-body);
    --ll-muted: var(--muted);
    --ll-border: var(--border);
    --ll-surface: var(--white);
    --ll-surface-alt: var(--bg-page);
    --ll-shadow-sm: 0 4px 20px rgba(17, 24, 39, .06);
    --ll-shadow-md: 0 12px 40px rgba(32, 114, 243, .12);
    --ll-shadow-lg: 0 24px 60px rgba(17, 24, 39, .14);
    --ll-radius: 16px;
    --ll-radius-lg: 20px;
}

/* ── Hero ── */
.ll-hero {
    position: relative;
    padding: 56px 0 72px;
    background: var(--gradient-hero);
    color: #fff;
    overflow: hidden;
}
.ll-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(32, 114, 243, .32), transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(24, 89, 201, .22), transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 90%, rgba(21, 62, 117, .18), transparent 45%);
}
.ll-hero-mesh {
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.ll-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: ll-float 8s ease-in-out infinite;
}
.ll-hero-orb--1 { width: 320px; height: 320px; background: rgba(32, 114, 243, .3); top: -80px; right: 10%; }
.ll-hero-orb--2 { width: 240px; height: 240px; background: rgba(24, 89, 201, .25); bottom: -60px; left: 5%; animation-delay: -3s; }
.ll-hero-orb--3 { width: 180px; height: 180px; background: rgba(21, 62, 117, .2); top: 40%; left: 45%; animation-delay: -5s; }
@keyframes ll-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.04); }
}

.ll-hero .container { position: relative; z-index: 2; }
.ll-hero .detail-breadcrumb a,
.ll-hero .detail-breadcrumb span { color: rgba(255,255,255,.75); }
.ll-hero .detail-breadcrumb a:hover { color: #fff; }

.ll-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.ll-hero-grid--form { grid-template-columns: 1.15fr minmax(320px, 400px); align-items: stretch; }

.ll-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(32, 114, 243, .2);
    border: 1px solid rgba(255,255,255,.18);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.ll-badge i { color: var(--accent); }

.ll-hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    margin: 0 0 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
}
.ll-hero h1 .ll-gradient-text {
    background: linear-gradient(90deg, #fff 0%, var(--primary-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ll-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, .92);
    max-width: 680px;
    margin: 0 0 24px;
}
.ll-lead strong { color: #fff; font-weight: 600; }

.ll-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.ll-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    font-size: 13px;
    backdrop-filter: blur(6px);
    transition: transform .2s, background .2s;
}
.ll-hero-pill:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.ll-hero-pill i {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-size: 12px;
}
.ll-hero-pill--blue i { background: rgba(32, 114, 243, .35); color: var(--primary-200); }
.ll-hero-pill--green i { background: rgba(24, 89, 201, .3); color: var(--primary-100); }
.ll-hero-pill--violet i { background: rgba(255, 176, 32, .25); color: var(--accent); }
.ll-hero-pill strong { color: #fff; font-size: 15px; font-weight: 800; }

.ll-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ll-hero-actions--mobile { display: none; }
.local-landing-page .ll-hero .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(4px);
}
.local-landing-page .ll-hero .btn-outline:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.local-landing-page .ll-hero .btn-primary {
    background: var(--primary-600);
    border: none;
    box-shadow: var(--shadow-primary);
}
.local-landing-page .ll-hero .btn-primary:hover {
    background: var(--primary-700);
}

/* Hero form card */
.ll-hero-form {
    background: var(--ll-surface);
    border-radius: var(--ll-radius-lg);
    overflow: hidden;
    box-shadow: var(--ll-shadow-lg);
    border: 1px solid rgba(255,255,255,.2);
}
.ll-hero-form-head {
    background: var(--gradient-primary);
    padding: 20px 24px;
    color: #fff;
}
.ll-hero-form-head h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ll-hero-form-head p { margin: 6px 0 0; font-size: 13px; opacity: .9; }
.ll-hero-form-body { padding: 24px; }

.ll-proposal-form { display: grid; gap: 12px; }
.ll-proposal-form input,
.ll-proposal-form select,
.ll-proposal-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--ll-border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--ll-surface-alt);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.ll-proposal-form input:focus,
.ll-proposal-form select:focus,
.ll-proposal-form textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(32, 114, 243, .12);
}
.ll-proposal-form textarea { resize: vertical; min-height: 64px; }
.ll-proposal-form .btn-primary {
    background: var(--primary-600);
    border: none;
    padding: 14px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    transition: transform .2s, box-shadow .2s, background .2s;
}
.ll-proposal-form .btn-primary:hover {
    transform: translateY(-1px);
    background: var(--primary-700);
    box-shadow: 0 10px 28px rgba(24, 89, 201, .35);
}
.ll-form-note { font-size: 11px; color: var(--ll-muted); margin: 4px 0 0; line-height: 1.45; text-align: center; }
.ll-form-note a { color: var(--primary-600); font-weight: 600; }
.ll-form-msg { font-size: 13px; padding: 12px; border-radius: 10px; margin-top: 4px; font-weight: 500; }
.ll-form-msg.is-success { background: #f0fdf4; color: var(--success); border: 1px solid #bbf7d0; }
.ll-form-msg.is-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.ll-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.ll-stat {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    backdrop-filter: blur(6px);
}
.ll-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--primary-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ll-stat span { font-size: 11px; color: rgba(148, 163, 184, .95); text-transform: uppercase; letter-spacing: .03em; }

/* ── Trust strip ── */
.ll-trust-strip {
    background: linear-gradient(180deg, #fff 0%, var(--bg-page) 100%);
    border-bottom: 1px solid var(--ll-border);
    padding: 28px 0;
    position: relative;
}
.ll-trust-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent-line);
}
.ll-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ll-trust-item {
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border-radius: var(--ll-radius);
    border: 1px solid var(--ll-border);
    box-shadow: var(--ll-shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.ll-trust-item:hover { transform: translateY(-4px); box-shadow: var(--ll-shadow-md); }
.ll-trust-icon {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #fff;
}
.ll-trust-icon--1 { background: linear-gradient(135deg, var(--primary-700), var(--primary-500)); }
.ll-trust-icon--2 { background: linear-gradient(135deg, var(--primary-600), var(--primary-400)); }
.ll-trust-icon--3 { background: linear-gradient(135deg, var(--primary-800), var(--primary-600)); }
.ll-trust-icon--4 { background: linear-gradient(135deg, var(--accent), #ffc857); }
.ll-trust-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-accent-line);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.ll-trust-item span { font-size: 13px; color: var(--ll-muted); font-weight: 500; }

/* AEO on local pages */
.local-landing-page .aeo-answer-block {
    padding: 36px 0;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg-page) 100%);
    border: none;
}
.local-landing-page .aeo-answer-inner {
    border: 1px solid var(--primary-200);
    box-shadow: var(--ll-shadow-md);
    border-radius: var(--ll-radius-lg);
}
.local-landing-page .aeo-label { color: var(--primary-700); }

/* ── Sections ── */
.ll-section { padding: 72px 0; position: relative; }
.ll-section--alt {
    background: var(--bg-page);
}
.ll-section--dark {
    background: var(--gradient-hero);
    color: #fff;
}
.ll-section--dark h2,
.ll-section--dark .ll-intro { color: #fff; }
.ll-section--dark .ll-intro { opacity: .85; }

.ll-section-head { margin-bottom: 36px; max-width: 780px; }
.ll-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary-700);
    margin-bottom: 12px;
}
.ll-section-label::before {
    content: '';
    width: 24px; height: 3px;
    background: var(--gradient-accent-line);
    border-radius: 2px;
}
.ll-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 16px;
    color: var(--ll-ink);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.25;
}
.ll-h3 {
    font-size: 1.15rem;
    margin: 28px 0 14px;
    color: #1e293b;
    font-weight: 700;
}
.ll-intro {
    color: var(--ll-slate);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 900px;
    margin-bottom: 24px;
}

/* Stats grid (why invest) */
.ll-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin: 28px 0;
}
.ll-stat-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--ll-radius);
    border: 1px solid var(--ll-border);
    box-shadow: var(--ll-shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.ll-stat-card:hover { transform: translateY(-3px); box-shadow: var(--ll-shadow-md); }
.ll-stat-card-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: #fff;
}
.ll-stat-card-icon--1 { background: linear-gradient(135deg, var(--primary-700), var(--primary-500)); }
.ll-stat-card-icon--2 { background: linear-gradient(135deg, var(--primary-600), var(--primary-400)); }
.ll-stat-card-icon--3 { background: linear-gradient(135deg, var(--primary-800), var(--primary-600)); }
.ll-stat-card-icon--4 { background: linear-gradient(135deg, var(--accent), #ffc857); }
.ll-stat-card-icon--5 { background: linear-gradient(135deg, var(--primary-900), var(--primary-700)); }
.ll-stat-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ll-slate); }
.ll-stat-card strong { color: var(--ll-ink); }

.ll-checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.ll-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    color: var(--ll-slate);
    line-height: 1.6;
    font-size: 15px;
    border-bottom: 1px solid var(--ll-border);
    background: #fff;
    transition: background .2s;
}
.ll-checklist li:first-child { border-radius: var(--ll-radius) var(--ll-radius) 0 0; border-top: 1px solid var(--ll-border); }
.ll-checklist li:last-child { border-radius: 0 0 var(--ll-radius) var(--ll-radius); border-bottom: 1px solid var(--ll-border); }
.ll-checklist li:hover { background: #f8fafc; }
.ll-checklist i { color: var(--success); margin-top: 3px; flex-shrink: 0; font-size: 16px; }
.ll-checklist--compact { gap: 8px; margin-top: 14px; border: none; }
.ll-checklist--compact li {
    padding: 8px 0;
    border: none;
    background: transparent;
    font-size: .92rem;
}
.ll-checklist--compact li:hover { background: transparent; }

/* Service details */
.ll-service-details { display: grid; gap: 24px; margin: 32px 0; }
.ll-service-detail {
    background: #fff;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 32px;
    box-shadow: var(--ll-shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}
.ll-service-detail::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-accent-line);
    opacity: 0;
    transition: opacity .3s;
}
.ll-service-detail:hover {
    box-shadow: var(--ll-shadow-md);
    transform: translateY(-2px);
}
.ll-service-detail:hover::before { opacity: 1; }
.ll-service-detail h3 {
    font-size: 1.2rem;
    margin: 0 0 14px;
    color: var(--ll-ink);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ll-service-detail h3 i {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: 18px;
}
.ll-service-detail p { color: var(--ll-slate); line-height: 1.7; margin: 0; font-size: 15px; }

/* Service cards grid */
.ll-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.ll-service-card {
    display: block;
    background: #fff;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.ll-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-accent-line);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s;
}
.ll-service-card:hover {
    box-shadow: var(--ll-shadow-md);
    transform: translateY(-6px);
}
.ll-service-card:hover::after { opacity: 1; }
.ll-service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--gradient-accent-line);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
}
.ll-service-card h3 { font-size: 1.08rem; margin: 0 0 10px; color: var(--ll-ink); font-weight: 700; }
.ll-service-card p { font-size: .92rem; color: var(--ll-muted); line-height: 1.6; margin: 0 0 14px; }
.ll-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.ll-service-card:hover .ll-link { gap: 10px; color: var(--primary-700); }

/* Package tabs & pricing */
.ll-package-tabs {
    display: inline-flex;
    gap: 6px;
    margin: 8px 0 28px;
    padding: 6px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--ll-border);
    box-shadow: var(--ll-shadow-sm);
}
.ll-tab-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: var(--ll-muted);
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ll-tab-btn.is-active {
    background: var(--gradient-accent-line);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
}
.ll-tab-panel { display: none; animation: ll-fadeIn .4s ease; }
.ll-tab-panel.is-active { display: block; }
@keyframes ll-fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.ll-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.ll-pricing-card {
    background: #fff;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.ll-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--ll-shadow-md); }
.ll-pricing-card--featured {
    border-color: transparent;
    background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
    box-shadow: var(--ll-shadow-md);
    transform: scale(1.03);
    z-index: 1;
}
.ll-pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--heading);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 158, 11, .4);
}
.ll-pricing-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--primary-700);
}
.ll-pricing-card h3 { font-size: 1.35rem; margin: 10px 0 8px; font-weight: 800; color: var(--ll-ink); }
.ll-pricing-amount { margin-bottom: 20px; }
.ll-pricing-amount strong {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent-line);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ll-pricing-amount span { font-size: 14px; color: var(--ll-muted); font-weight: 500; }
.ll-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--ll-slate);
    flex: 1;
}
.ll-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--ll-border);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.ll-pricing-features li:last-child { border-bottom: none; }
.ll-pricing-features i { color: var(--success); margin-top: 3px; }
.ll-pricing-card .btn-outline {
    border-width: 2px;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px;
}
.ll-pricing-card--featured .btn-outline {
    background: var(--gradient-accent-line);
    color: #fff;
    border-color: transparent;
}
.ll-pricing-note {
    margin-top: 32px;
    font-size: 14px;
    color: var(--ll-muted);
    text-align: center;
    padding: 16px;
    background: rgba(37, 99, 235, .06);
    border-radius: 12px;
}

/* Industries */
.ll-industry-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 28px;
}
.ll-industry-card--detailed {
    background: #fff;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 28px;
    box-shadow: var(--ll-shadow-sm);
    transition: transform .25s, box-shadow .25s;
    border-top: 4px solid transparent;
}
.ll-industry-card--detailed:nth-child(6n+1) { border-top-color: var(--primary-700); }
.ll-industry-card--detailed:nth-child(6n+2) { border-top-color: var(--primary-600); }
.ll-industry-card--detailed:nth-child(6n+3) { border-top-color: var(--primary-500); }
.ll-industry-card--detailed:nth-child(6n+4) { border-top-color: var(--accent); }
.ll-industry-card--detailed:nth-child(6n+5) { border-top-color: var(--primary-800); }
.ll-industry-card--detailed:nth-child(6n+6) { border-top-color: var(--primary-400); }
.ll-industry-card--detailed:hover { transform: translateY(-4px); box-shadow: var(--ll-shadow-md); }
.ll-industry-card--detailed h3 { font-size: 1.1rem; margin: 0 0 12px; font-weight: 700; color: var(--ll-ink); }
.ll-industry-card--detailed p { font-size: .92rem; color: var(--ll-muted); margin: 0 0 14px; line-height: 1.6; }
.ll-industry-card--detailed ul { margin: 0; padding: 0; list-style: none; }
.ll-industry-card--detailed li {
    font-size: 13px;
    color: var(--ll-slate);
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.5;
}
.ll-industry-card--detailed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Why choose */
.ll-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 28px; }
.ll-why-card {
    padding: 28px;
    background: #fff;
    border-radius: var(--ll-radius-lg);
    border: 1px solid var(--ll-border);
    box-shadow: var(--ll-shadow-sm);
    transition: all .3s;
}
.ll-why-card--detailed { text-align: left; }
.ll-why-card:hover {
    box-shadow: var(--ll-shadow-md);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .2);
}
.ll-why-card i {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--gradient-accent-line);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .2);
}
.ll-why-card:nth-child(2) i { background: linear-gradient(135deg, var(--primary-700), var(--primary-500)); }
.ll-why-card:nth-child(3) i { background: linear-gradient(135deg, var(--primary-800), var(--primary-600)); }
.ll-why-card:nth-child(4) i { background: linear-gradient(135deg, var(--accent), #ffc857); }
.ll-why-card:nth-child(5) i { background: linear-gradient(135deg, var(--primary-600), var(--primary-400)); }
.ll-why-card:nth-child(6) i { background: linear-gradient(135deg, var(--primary-900), var(--primary-700)); }
.ll-why-card h3 { font-size: 1.05rem; margin: 0 0 10px; font-weight: 700; color: var(--ll-ink); }
.ll-why-card p { font-size: 14px; color: var(--ll-muted); margin: 0; line-height: 1.65; }

/* Keyword pills */
.ll-nearby-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ll-nearby-links a {
    padding: 11px 18px;
    background: #fff;
    border: 1px solid var(--ll-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-700);
    text-decoration: none;
    transition: all .25s;
    box-shadow: var(--ll-shadow-sm);
}
.ll-nearby-links a:hover {
    background: var(--gradient-accent-line);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .3);
}

/* CTA */
.ll-cta {
    position: relative;
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.ll-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(32, 114, 243, .28), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(21, 62, 117, .22), transparent 50%);
}
.ll-cta .container { position: relative; z-index: 1; }
.ll-cta h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
}
.ll-cta p {
    opacity: .92;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.65;
}
.ll-cta .btn-white {
    background: #fff;
    color: var(--primary-700);
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s;
}
.ll-cta .btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,.3);
    color: var(--primary-700);
}

/* FAQ */
.local-landing-page .seo-faq-block {
    background: #fff;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 40px;
    box-shadow: var(--ll-shadow-sm);
}
.local-landing-page .seo-faq-item {
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.local-landing-page .seo-faq-item[open] {
    border-color: var(--primary-200);
    box-shadow: 0 4px 16px rgba(32, 114, 243, .08);
}
.local-landing-page .seo-faq-q {
    padding: 18px 20px;
    font-weight: 700;
    color: var(--ll-ink);
    cursor: pointer;
}
.local-landing-page .seo-faq-a {
    padding: 0 20px 18px;
    color: var(--ll-slate);
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 992px) {
    .ll-hero-grid--form { grid-template-columns: 1fr; gap: 32px; }
    .ll-hero-aside { order: -1; }
    .ll-hero-actions--mobile { display: flex; }
    .ll-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .ll-pricing-card--featured { transform: none; }
}
@media (max-width: 768px) {
    .ll-hero { padding: 40px 0 56px; }
    .ll-hero-grid { grid-template-columns: 1fr; }
    .ll-section { padding: 52px 0; }
    .ll-trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ll-package-tabs { flex-wrap: wrap; border-radius: 16px; width: 100%; }
    .ll-tab-btn { flex: 1; justify-content: center; padding: 12px 16px; }
}
