/* ============================================
   PAGE: Home – Premium Geometry & Alignment
   ============================================ */

/* ----- Global Container ----- */
.lh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ----- Trust Bar ----- */
.trust-bar {
    text-align: center;
    padding: 12px 20px;
    background: var(--lh-surface);
    border-bottom: 1px solid var(--lh-border);
    color: var(--lh-muted);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-bar span:first-child {
    color: var(--lh-green);
    font-weight: 700;
}

/* ----- Floating WhatsApp ----- */
#floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--lh-whatsapp);
    color: var(--lh-white);
    padding: 14px 22px;
    border-radius: var(--lh-radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37,211,102,.30);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
#floating-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,211,102,.40);
    color: var(--lh-white);
}

/* ----- Hero ----- */
.hero {
    background: linear-gradient(145deg, var(--lh-navy) 0%, var(--lh-navy-2) 50%, var(--lh-navy-3) 100%);
    color: var(--lh-white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(45,212,191,.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero h1 {
    color: var(--lh-white);
    font-size: var(--lh-h1);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 16px;
}
.hero h1 span {
    color: var(--lh-green);
}
.hero .hero-sub {
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
}
.hero .hero-sub strong {
    color: #FFFFFF !important;
    font-weight: 600;
}

/* Hero Demo Form */
.demo-form-wrapper {
    background: rgba(255,255,255,0.1);
    padding: 20px 28px;
    border-radius: 16px;
    display: inline-block;
    max-width: 100%;
    margin: 0 auto 20px;
}
.demo-form-wrapper form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.demo-form-wrapper input[type="text"],
.demo-form-wrapper select {
    height: 56px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    background: #fff;
    color: var(--lh-navy);
    min-width: 150px;
    box-sizing: border-box;
}
.demo-form-wrapper select {
    min-width: 190px;
}
.demo-form-wrapper .btn-primary {
    height: 56px;
    padding: 0 32px;
    border: none;
    border-radius: 30px;
    background: var(--lh-orange);
    color: var(--lh-navy);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .25s ease;
}
.demo-form-wrapper .btn-primary:hover {
    background: var(--lh-orange-dark);
    transform: translateY(-2px);
}
.demo-disclaimer {
    font-size: 0.85rem;
    margin-top: 12px;
    opacity: 0.85;
    margin-bottom: 0;
}

/* Hero Actions: Pricing Pill + Trial Button (side by side) */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 16px;
}

/* Pricing Pill */
.hero-pricing {
    background: rgba(255,255,255,.08);
    padding: 8px 18px;
    border-radius: var(--lh-radius-pill);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-pricing .price-old {
    text-decoration: line-through;
    opacity: .6;
    font-size: 0.95rem;
    color: rgba(255,255,255,.7);
}
.hero-pricing .price-new {
    color: var(--lh-green);
    font-weight: 700;
    font-size: 1.5rem;
}
.hero-pricing .price-badge {
    background: var(--lh-orange);
    color: var(--lh-navy);
    padding: 4px 14px;
    border-radius: var(--lh-radius-pill);
    font-weight: 700;
    font-size: 0.8rem;
}

/* Hero CTA (same shape as demo button) */
.hero .btn-primary.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    background: var(--lh-orange);
    color: var(--lh-navy);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245,158,11,.25);
    transition: all .25s ease;
}
.hero .btn-primary.hero-cta:hover {
    background: var(--lh-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.35);
}
.btn-highlight {
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245,158,11,.40); }
    70% { box-shadow: 0 0 0 16px rgba(245,158,11,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* Micro Trust & Refund */
.micro-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.75);
    margin-top: 8px;
}
.micro-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.refund-guarantee {
    color: var(--lh-white);
    background: rgba(16,185,129,.12);
    padding: 8px 22px;
    border-radius: var(--lh-radius-pill);
    font-weight: 600;
    border: 1px solid rgba(16,185,129,.25);
    display: inline-block;
    margin-top: 14px;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
}

/* ----- Trust Interrupt ----- */
.trust-interrupt {
    background: var(--lh-surface);
    padding: 60px 0;
    border-top: 1px solid var(--lh-border);
    border-bottom: 1px solid var(--lh-border);
}
.trust-interrupt .lh-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}
.trust-interrupt .content-left,
.trust-interrupt .content-right {
    flex: 1 1 45%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trust-interrupt .content-left h2 {
    color: var(--lh-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}
.trust-interrupt .content-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--lh-text-soft);
    margin-bottom: 0;
}
.trust-interrupt .feature-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--lh-text-soft);
    flex-wrap: nowrap;
}
.trust-interrupt .feature-row:last-child {
    margin-bottom: 0;
}
.feature-badge {
    padding: 6px 16px;
    border-radius: var(--lh-radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.feature-badge--teal {
    background: rgba(45,212,191,.10);
    color: var(--lh-teal);
}
.feature-badge--green {
    background: rgba(16,185,129,.10);
    color: var(--lh-green);
}
.feature-badge--navy {
    background: rgba(11,30,51,.06);
    color: var(--lh-navy);
}

/* ----- Categories Section ----- */
.categories-section {
    padding: 60px 0 40px;
}
.section-title {
    text-align: center;
    margin-bottom: 8px;
}
.section-subtitle {
    text-align: center;
    color: var(--lh-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.category-card {
    background: var(--lh-white);
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-md);
    padding: 28px 24px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--lh-shadow-xs);
    display: flex;
    flex-direction: column;
}
.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--lh-teal);
    box-shadow: var(--lh-shadow-md);
}
.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lh-navy);
    margin-bottom: 8px;
}
.category-card p {
    font-size: 0.95rem;
    color: var(--lh-text-soft);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.category-card .cat-demo-trigger {
    background: none;
    border: 1px solid var(--lh-teal);
    padding: 8px 20px;
    border-radius: var(--lh-radius-pill);
    cursor: pointer;
    color: var(--lh-teal);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all .25s ease;
    align-self: flex-start;
    margin-top: auto;
}
.category-card .cat-demo-trigger:hover {
    background: var(--lh-teal);
    color: var(--lh-white);
    transform: translateX(4px);
}
.category-card::after {
    content: '🔄 Real-time';
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--lh-teal);
    color: var(--lh-white);
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--lh-radius-pill);
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(-8px);
    transition: all .3s ease;
}
.category-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Accordion */
.accordion-section {
    margin-top: 48px;
}
.accordion-title {
    text-align: center;
    margin-bottom: 20px;
}
.accordion-container {
    max-width: 760px;
    margin: 0 auto;
}
.accordion-item {
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
}
.accordion-header {
    background: var(--lh-white);
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--lh-navy);
}
.accordion-header:hover {
    background: var(--lh-surface);
}
.accordion-icon {
    transition: transform .3s ease;
    font-size: 0.7rem;
    color: var(--lh-muted);
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 20px 24px 24px;
    background: var(--lh-white);
    border-top: 1px solid var(--lh-border);
}
.accordion-content strong {
    color: var(--lh-navy);
    font-weight: 600;
    display: block;
    margin-top: 8px;
}
.accordion-content strong:first-child {
    margin-top: 0;
}
.accordion-content ul {
    margin: 6px 0 14px 20px;
    padding: 0;
}
.accordion-content ul li {
    font-size: 0.9rem;
    color: var(--lh-text-soft);
    line-height: 1.6;
}
.blindspot {
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--lh-muted);
    line-height: 1.6;
}
.categories-footer {
    text-align: center;
    margin-top: 32px;
    color: var(--lh-muted);
    font-size: 0.95rem;
}
.categories-footer .check {
    color: var(--lh-green);
    font-weight: 700;
}

/* ----- Preview Section ----- */
.preview-section {
    background: var(--lh-surface);
    padding: 60px 0;
    border-top: 1px solid var(--lh-border);
    border-bottom: 1px solid var(--lh-border);
}
.preview-simple {
    background: var(--lh-white);
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-md);
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--lh-shadow-xs);
}
.preview-simple h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lh-navy);
    margin-bottom: 24px;
}
.preview-items {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    justify-content: center;
    margin-bottom: 20px;
}
.preview-item {
    background: var(--lh-surface);
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-pill);
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--lh-text-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s ease;
}
.preview-item:hover {
    border-color: var(--lh-teal);
    background: var(--lh-white);
    transform: translateY(-2px);
}
.preview-item span {
    font-size: 1.1rem;
}
.preview-disclaimer {
    font-size: 0.85rem;
    color: var(--lh-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

/* ----- Pricing Card ----- */
.pricing-section {
    padding: 60px 0 40px;
}
.pricing-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--lh-white);
    border: 2px solid rgba(45,212,191,.15);
    border-radius: var(--lh-radius-md);
    padding: 36px 36px 28px;
    box-shadow: var(--lh-shadow-sm);
    text-align: left;
}
.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lh-border);
}
.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lh-green);
    line-height: 1;
}
.price-small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lh-muted);
}
.trial-label {
    margin: 6px 0 4px;
    font-size: 0.95rem;
    color: var(--lh-text-soft);
}
.price-compare {
    font-size: 0.95rem;
}
.price-compare .old {
    text-decoration: line-through;
    color: var(--lh-muted);
}
.price-compare .new {
    color: var(--lh-green);
    font-weight: 700;
}
.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin: 24px 0 18px;
    list-style: none;
    padding: 0;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--lh-text-soft);
    line-height: 1.4;
}
.pricing-features li::before {
    content: '✅';
    color: var(--lh-green);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-features li strong {
    color: var(--lh-navy);
    font-weight: 600;
}
.value-compare {
    text-align: center;
    font-size: 0.95rem;
    color: var(--lh-text-soft);
    padding: 14px 0 18px;
    border-top: 1px solid var(--lh-border);
}
.pricing-card .btn-primary {
    display: block;
    text-align: center;
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    background: var(--lh-orange);
    color: var(--lh-navy);
    border: none;
    border-radius: var(--lh-radius-sm);
    text-decoration: none;
    line-height: 52px;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(245,158,11,.20);
}
.pricing-card .btn-primary:hover {
    background: var(--lh-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.30);
}
.pricing-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: var(--lh-muted);
    margin-top: 14px;
    margin-bottom: 0;
}

/* ----- Testimonials (How It Works - 2x2 grid) ----- */
.testimonials-section {
    padding: 60px 0 40px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}
.testimonial {
    background: var(--lh-white);
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-sm);
    padding: 24px;
    box-shadow: var(--lh-shadow-xs);
    transition: all .25s ease;
}
.testimonial:hover {
    border-color: var(--lh-teal);
    transform: translateY(-3px);
    box-shadow: var(--lh-shadow-sm);
}
.testimonial .quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--lh-text-soft);
    margin: 0;
    font-style: italic;
}
.testimonial .quote::before {
    content: '"';
    color: var(--lh-teal);
    font-size: 1.2rem;
    font-weight: 700;
}
.testimonial .quote::after {
    content: '"';
    color: var(--lh-teal);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ----- Value Section ----- */
.value-section {
    text-align: center;
    background: linear-gradient(145deg, var(--lh-navy) 0%, var(--lh-navy-2) 50%, var(--lh-navy-3) 100%);
    color: var(--lh-white);
    padding: 60px 0;
    border: 1px solid rgba(45,212,191,.08);
}
.value-section h2 {
    color: var(--lh-white);
    font-size: 1.8rem;
    font-weight