﻿/* ========================= HERO BASE CLASSES ========================= */
.lg-hero-inner {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px;
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center; 
    position: relative; 
    z-index: 2;
}
.lg-hero-badge {
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    padding: 7px 20px;
    background: rgba(249,115,22,0.12); 
    border: 1px solid rgba(249,115,22,0.35);
    border-radius: 50px; 
    color: #EA580C;
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 1.5px;
    text-transform: uppercase; 
    margin-bottom: 22px; 
    width: fit-content;
    backdrop-filter: blur(8px);
}
.lg-badge-live {
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: #F97316;
    animation: lgBadgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(249,115,22,0.6);
}
@keyframes lgBadgePulse {
    0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 8px rgba(249,115,22,0.6); }
    50%      { opacity:0.5; transform:scale(1.4); box-shadow:0 0 16px rgba(249,115,22,0.3); }
}
.lg-hero-title {
    font-family:'Sora',sans-serif; 
    font-size:clamp(2.2rem,4vw,3.4rem);
    font-weight:800; 
    line-height:1.12; 
    margin-bottom:22px;
    color: #071c3d;
}
.lg-hero-title span {
    background: linear-gradient(135deg, #F97316, #EA580C);
    -webkit-background-clip:text; 
    background-clip:text; 
    -webkit-text-fill-color:transparent;
}
.lg-hero-desc { 
    font-size:1.05rem; 
    color:#64748b; 
    line-height:1.75; 
    margin-bottom:32px; 
    max-width:480px; 
}
.lg-hero-btns { 
    display:flex; 
    gap:14px; 
    flex-wrap:wrap;
     margin-bottom:28px; 
    }
.lg-btn-primary {
    display:inline-flex; 
    align-items:center; 
    gap:8px; 
    padding:14px 34px;
    background:linear-gradient(135deg,#F97316,#EA580C); 
    color:#fff;
    font-size:15px; 
    font-weight:700; 
    border-radius:50px; 
    text-decoration:none;
    border:none; 
    cursor:pointer; 
    transition:all 0.3s ease;
    box-shadow:0 4px 20px rgba(249,115,22,0.35); 
    position:relative; 
    overflow:hidden;
}
.lg-btn-primary::after {
    content:""; 
    position:absolute; 
    inset:0;
    background:linear-gradient(135deg,transparent,rgba(255,255,255,0.15),transparent);
    transform:translateX(-100%); 
    transition:transform 0.5s ease;
}
.lg-btn-primary:hover::after { 
    transform:translateX(100%);
 }
.lg-btn-primary:hover {
     transform:translateY(-2px); 
     box-shadow:0 8px 30px rgba(249,115,22,0.5); 
     color:#fff; 
    }

/* ========================= STATS BAR ========================= */
.lg-stats-bar {
    background: linear-gradient(135deg,#0a1628 0%,#1a2d4a 100%);
    padding:55px 0; position:relative;
}
.lg-stats-grid {
    max-width:1200px; 
    margin:0 auto;
    padding:0 32px;
    display:grid; 
    grid-template-columns:repeat(4,1fr); 
    gap:24px; 
    text-align:center;
}
.lg-stat {
    background:rgba(255,255,255,0.05); 
    border:1px solid rgba(249,115,22,0.15);
    border-radius:20px; 
    padding:30px 20px 24px;
    transition:transform 0.2s ease,box-shadow 0.3s ease; 
    cursor:default;
}
.lg-stat:hover { 
    box-shadow:0 16px 40px rgba(249,115,22,0.15); 
    border-color:rgba(249,115,22,0.3); 
}
.lg-stat-icon {
    width:44px; 
    height:44px; 
    border-radius:12px;
    background:rgba(249,115,22,0.12); 
    display:flex; 
    align-items:center;
    justify-content:center; 
    margin:0 auto 14px; 
    font-size:20px; 
    color:#F97316;
}
.lg-stat h3 {
    font-family:'Sora',sans-serif;
     font-size:40px; 
     font-weight:800; 
     margin-bottom:6px;
    background:linear-gradient(135deg,#F97316,#EA580C);
    -webkit-background-clip:text; 
    background-clip:text; 
    -webkit-text-fill-color:transparent;
}
.lg-stat p { 
    font-size:14px; 
    color:#94a3b8; 
    margin:0 0 14px; 
}
.lg-stat-bar { 
    height:4px; 
    background:rgba(255,255,255,0.1);
     border-radius:4px; overflow:hidden; 
    }
.lg-stat-fill {
    height:100%;
     width:0; 
     border-radius:4px;
    background:linear-gradient(90deg,#F97316,#EA580C);
    transition:width 1.5s cubic-bezier(.22,1,.36,1);
}

/* ========================= USE CASES SECTION ========================= */
.lg-usecases { 
    padding:40px 0; 
    background:#fff; 
}
.lg-section-inner { 
    max-width:1200px;
     margin:0 auto; 
     padding:0 24px; 
    }
.lg-section-header { 
    text-align:center; 
    max-width:700px; 
    margin:0 auto 20px; 
}
.lg-section-tag {
    display:inline-flex;
    align-items:center; 
    gap:8px; padding:5px 16px;
    background:rgba(249,115,22,0.08); 
    border:1px solid rgba(249,115,22,0.25);
    border-radius:50px; 
    color:#F97316;
    font-size:12px; 
    font-weight:700; 
    letter-spacing:1.5px;
    text-transform:uppercase; 
    margin-bottom:18px;
}
.lg-section-title {
    font-family:'Sora',sans-serif; 
    font-size:clamp(1.8rem,3.2vw,2.5rem);
    font-weight:800; 
    color:#071c3d; 
    line-height:1.2; 
    margin-bottom:16px;
}
.lg-section-subtitle { 
    font-size:17px; 
    color:#5f6d85; 
    line-height:1.7; 
}
.lg-tabs-wrap { 
    display:flex; 
    justify-content:center; 
    gap:10px; 
    flex-wrap:wrap; 
    margin-bottom:45px; 
}
.lg-tab-btn {
    padding:10px 24px;
    border-radius:50px; 
    font-size:14px; 
    font-weight:600;
    cursor:pointer; 
    border:1.5px solid #e2e8f0; 
    background:#fff; 
    color:#5f6d85;
    transition:all 0.3s cubic-bezier(.22,1,.36,1); 
    position:relative; 
    overflow:hidden;
}
.lg-tab-btn:hover { 
    border-color:rgba(249,115,22,0.5); 
    color:#F97316; 
    transform:translateY(-2px); }
.lg-tab-btn.active {
    background:linear-gradient(135deg,#F97316,#EA580C); 
    color:#fff;
    border-color:transparent; 
    box-shadow:0 4px 18px rgba(249,115,22,0.35); 
    transform:translateY(-2px);
}
.lg-usecase-panel { 
    display:none; 
    animation:lgPanelIn 0.5s cubic-bezier(.22,1,.36,1); 
}
.lg-usecase-panel.active { 
    display:grid; 
    grid-template-columns:1fr 1fr; 
    gap:20px; 
    align-items:center; 
}
@keyframes lgPanelIn { 
    from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} 
}
.lg-usecase-content h3 {
    font-family:'Sora',sans-serif; 
    font-size:28px; 
    font-weight:800;
    color:#071c3d; 
    margin-bottom:16px; 
    line-height:1.25;
}
.lg-usecase-content > p { 
    font-size:16px; 
    color:#5f6d85; 
    line-height:1.7; 
    margin-bottom:28px; 
}
.lg-usecase-features { 
    display:flex; 
    flex-direction:column; 
    gap:16px; }
.lg-uc-feature {
    display:flex; 
    gap:14px; align-items:flex-start;
    padding:12px; border-radius:14px; transition:background 0.3s;
}
.lg-uc-feature:hover { background:#fff7ed; }
.lg-uc-check {
    width:28px; height:28px; border-radius:8px;
    background:rgba(249,115,22,0.1); color:#F97316;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0; font-weight:700; font-size:14px; transition:all 0.3s;
}
.lg-uc-feature:hover .lg-uc-check { background:#F97316; color:#fff; }
.lg-uc-feature h5 { font-size:15px; font-weight:700; color:#071c3d; margin-bottom:3px; }
.lg-uc-feature p { font-size:13.5px; color:#5f6d85; line-height:1.5; margin:0; }
.lg-usecase-visual {
    background:linear-gradient(135deg,#fff7ed,#fef3c7);
    border-radius:24px; padding:40px;
    display:flex; align-items:center; justify-content:center;
    min-height:360px; position:relative; overflow:hidden;
}
.lg-usecase-visual::before {
    content:""; position:absolute; top:-40px; right:-40px;
    width:120px; height:120px;
    background:radial-gradient(circle,rgba(249,115,22,0.12),transparent); border-radius:50%;
}

/* Message demo */
.lg-msg-demo { width:100%; max-width:320px; display:flex; flex-direction:column; gap:14px; }
.lg-demo-phone {
    background:#fff; border-radius:22px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08); overflow:hidden; transition:transform 0.3s;
}
.lg-demo-phone:hover { transform:scale(1.02); }
.lg-demo-topbar {
    background:linear-gradient(135deg,#F97316,#EA580C);
    padding:14px 18px; display:flex; align-items:center; gap:10px;
}
.lg-demo-avatar {
    width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.2);
    display:flex; align-items:center; justify-content:center;
    font-size:14px; color:#fff; font-weight:700;
}
.lg-demo-name { color:#fff; font-size:14px; font-weight:700; }
.lg-demo-status { color:rgba(255,255,255,0.7); font-size:11px; }
.lg-demo-body { padding:18px; display:flex; flex-direction:column; gap:10px; }
.lg-demo-msg {
    padding:10px 14px; border-radius:14px; font-size:13px; line-height:1.5;
    max-width:88%; transition:transform 0.2s;
}
.lg-demo-msg:hover { transform:scale(1.02); }
.lg-demo-msg.incoming {
    background:#fff7ed; color:#1c1c1e;
    border-bottom-left-radius:4px; align-self:flex-start;
}
.lg-demo-msg.outgoing {
    background:linear-gradient(135deg,#F97316,#EA580C); color:#fff;
    border-bottom-right-radius:4px; align-self:flex-end;
}
.lg-demo-meta { font-size:11px; color:#94a3b8; padding-left:4px; }
.lg-demo-chips { display:flex; gap:6px; flex-wrap:wrap; }
.lg-demo-chip {
    padding:6px 14px; border-radius:20px; font-size:12px; font-weight:600;
    border:1.5px solid #F97316; color:#F97316; background:#fff7ed;
    cursor:pointer; transition:all 0.25s cubic-bezier(.22,1,.36,1);
}
.lg-demo-chip:hover { background:#F97316; color:#fff; transform:translateY(-2px); }

/* ========================= ENTERPRISE SECTION ========================= */
.lg-enterprise { padding:60px 0; background:#f9fafb; }
.lg-ent-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.lg-ent-card {
    background:#fff; border:1px solid #eaeff6; border-radius:20px;
    padding:38px 28px 34px; text-align:center;
    transition:all 0.4s cubic-bezier(.22,1,.36,1);
    position:relative; overflow:hidden; border-top:3px solid transparent;
}
.lg-ent-card:nth-child(3n+1) { border-top-color:#F97316; }
.lg-ent-card:nth-child(3n+2) { border-top-color:#EA580C; }
.lg-ent-card:nth-child(3n)   { border-top-color:#FDBA74; }
.lg-ent-card::before {
    content:""; position:absolute; top:-60px; right:-60px;
    width:120px; height:120px; border-radius:50%; opacity:0;
    transition:all 0.5s cubic-bezier(.22,1,.36,1); pointer-events:none; z-index:0;
}
.lg-ent-card:nth-child(3n+1)::before { background:radial-gradient(circle,rgba(249,115,22,0.12),transparent 70%); }
.lg-ent-card:nth-child(3n+2)::before { background:radial-gradient(circle,rgba(234,88,12,0.12),transparent 70%); }
.lg-ent-card:nth-child(3n)::before   { background:radial-gradient(circle,rgba(253,186,116,0.15),transparent 70%); }
.lg-ent-card::after {
    content:""; position:absolute; bottom:0; left:0; width:100%; height:3px;
    transform:scaleX(0); transform-origin:left;
    transition:transform 0.4s cubic-bezier(.22,1,.36,1); pointer-events:none;
}
.lg-ent-card:nth-child(3n+1)::after { background:linear-gradient(90deg,#F97316,#FDBA74); }
.lg-ent-card:nth-child(3n+2)::after { background:linear-gradient(90deg,#EA580C,#F97316); }
.lg-ent-card:nth-child(3n)::after   { background:linear-gradient(90deg,#FDBA74,#F97316); }
.lg-ent-card:hover { transform:translateY(-8px); border-color:rgba(249,115,22,0.2); box-shadow:0 18px 45px rgba(249,115,22,0.12); }
.lg-ent-card:hover::before { opacity:1; width:160px; height:160px; top:-80px; right:-80px; }
.lg-ent-card:hover::after { transform:scaleX(1); }
.lg-ent-icon {
    width:58px; height:58px; border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 22px; font-size:24px;
    background:rgba(249,115,22,0.1); color:#F97316;
    transition:transform 0.3s,box-shadow 0.3s;
}
.lg-ent-card:hover .lg-ent-icon { transform:scale(1.15) rotate(-5deg); box-shadow:0 6px 20px rgba(249,115,22,0.25); }
.lg-ent-card h4 { font-family:'Sora',sans-serif; font-size:17px; font-weight:700; color:#071c3d; margin-bottom:10px; letter-spacing:-0.2px; }
.lg-ent-card p { font-size:14px; color:#64748b; line-height:1.7; margin:0; }

/* Responsive */
@media(max-width:1024px) {
    .lg-hero-inner { grid-template-columns:1fr; gap:40px; }
    .lg-stats-grid { grid-template-columns:repeat(2,1fr); }
    .lg-usecase-panel.active { grid-template-columns:1fr; }
    .lg-ent-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
}
@media(max-width:640px) {
    .lg-stats-grid { grid-template-columns:1fr 1fr; }
    .lg-ent-grid { grid-template-columns:1fr; }
}

/* ========================= HERO ========================= */
.lg-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FFF7ED;
}
/* Decorative soft blobs */
.lg-hero::before {
    content: '';
    position: absolute;
    top: -140px; right: -140px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lg-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,88,12,0.08) 0%, transparent 70%);
    pointer-events: none;
}
#lg-particles { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ========================= HERO GIF VISUAL ========================= */
.log-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.log-hero-gif {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    animation: logFadeIn 0.9s ease;
}

@keyframes logFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .log-hero-visual { display: none; }
}


/* ========================= OVERVIEW SECTION ========================= */
.lg-overview {
    padding: 100px 0;
    background: #fff;
}
.lg-overview-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lg-track-widget {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 12px 40px rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.1);
}
.lg-track-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}
.lg-track-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #EA580C);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; flex-shrink: 0;
}
.lg-track-title { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 14px; color: #071c3d; }
.lg-track-id { font-size: 12px; color: #F97316; font-weight: 600; margin-top: 2px; }
.lg-track-steps { display: flex; flex-direction: column; gap: 0; }
.lg-track-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}
.lg-track-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 28px;
    width: 2px;
    height: calc(100% + 8px);
    background: #f3f4f6;
    z-index: 0;
}
.lg-track-step.done::before { background: rgba(249,115,22,0.25); }
.lg-step-dot {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    position: relative; z-index: 1;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #9ca3af;
    margin-top: 2px;
}
.lg-track-step.done .lg-step-dot { background: #F97316; border-color: #F97316; color: #fff; }
.lg-track-step.active .lg-step-dot { background: #fff; border-color: #F97316; color: #F97316; animation: lgPulse 2s infinite; }
.lg-step-info { padding: 4px 0 16px; }
.lg-step-label { font-size: 13px; font-weight: 600; color: #071c3d; }
.lg-step-time { font-size: 11px; color: #9ca3af; margin-top: 1px; }
.lg-track-step.done .lg-step-label { color: #F97316; }
.lg-track-step.active .lg-step-label { color: #071c3d; }
@keyframes lgPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}

.lg-overview-content { }
.lg-overview-tag {
    display: inline-block;
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #F97316; background: rgba(249,115,22,0.08);
    padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.lg-overview-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800; color: #071c3d; line-height: 1.2; margin-bottom: 16px;
}
.lg-overview-content p { font-size: 16px; color: #5b6780; line-height: 1.8; margin-bottom: 28px; }
.lg-overview-highlights { display: flex; flex-direction: column; gap: 16px; }
.lg-overview-hl {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff7ed; border-radius: 12px; padding: 16px;
    border: 1px solid rgba(249,115,22,0.1);
}
.lg-overview-hl-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 10px; background: rgba(249,115,22,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #F97316;
}
.lg-overview-hl h5 { font-size: 14px; font-weight: 700; color: #071c3d; margin-bottom: 4px; }
.lg-overview-hl p { font-size: 13px; color: #5b6780; margin: 0; line-height: 1.5; }


/* ========================= CORE SERVICES BENTO ========================= */
.lg-pillars {
    padding: 100px 0;
    background: #fff7ed;
}
.lg-pillars-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.lg-pillars-header { text-align: center; margin-bottom: 60px; }
.lg-pillars-tag {
    display: inline-block;
    font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: #F97316; background: rgba(249,115,22,0.1);
    padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
}
.lg-pillars-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800; color: #071c3d; margin-bottom: 16px;
}
.lg-pillars-header p { font-size: 17px; color: #5b6780; line-height: 1.8; max-width: 600px; margin: 0 auto; }

.lg-pillars-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.lg-pillar-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid rgba(249,115,22,0.1);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lg-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.25);
}
.lg-pillar--large { grid-column: span 2; }
.lg-pillar--wide { grid-column: span 3; }

.lg-pillar-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(249,115,22,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--pillar-accent, #F97316);
    margin-bottom: 20px;
}
.lg-pillar-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px; font-weight: 700; color: #071c3d; margin-bottom: 12px;
}
.lg-pillar-card p { font-size: 15px; color: #5b6780; line-height: 1.7; }
.lg-pillar-stats {
    display: flex; gap: 24px; margin-top: 24px;
    padding-top: 24px; border-top: 1px solid #f3f4f6;
}
.lg-pillar-stat span {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 26px; font-weight: 800;
    background: linear-gradient(135deg, #F97316, #EA580C);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lg-pillar-stat small { font-size: 12px; color: #9ca3af; margin-top: 2px; display: block; }


/* ========================= DELIVERY JOURNEY (UNIQUE) ========================= */
.lg-journey {
    padding: 100px 0;
    background: #0a1628;
    position: relative;
    overflow: hidden;
}
.lg-journey::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
}
.lg-journey::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(234,88,12,0.06) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
}
.lg-journey-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.lg-journey-header { text-align: center; margin-bottom: 64px; }
.lg-journey-tag {
    display: inline-block;
    font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: #FDBA74; background: rgba(249,115,22,0.15);
    padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
}
.lg-journey-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800; color: #fff; margin-bottom: 14px;
}
.lg-journey-header p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; }

.lg-journey-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 32px;
}
.lg-journey-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #EA580C, #F97316);
    z-index: 0;
    opacity: 0.4;
}
.lg-journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.lg-journey-node {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(249,115,22,0.15);
    border: 2px solid rgba(249,115,22,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #F97316;
    margin-bottom: 16px;
    transition: 0.3s;
}
.lg-journey-step.active .lg-journey-node {
    background: #F97316;
    border-color: #F97316;
    color: #fff;
    box-shadow: 0 0 30px rgba(249,115,22,0.5);
}
.lg-journey-label {
    font-family: 'Sora', sans-serif;
    font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.lg-journey-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

.lg-journey-notifications {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.lg-journey-notif {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px;
    transition: 0.3s;
}
.lg-journey-notif:hover {
    background: rgba(249,115,22,0.08);
    border-color: rgba(249,115,22,0.25);
}
.lg-notif-channel {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #F97316; margin-bottom: 6px;
    display: flex; align-items: center; gap: 5px;
}
.lg-notif-text { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }


/* ========================= CAPABILITIES GRID ========================= */
.lg-capabilities {
    padding: 100px 0;
    background: #fff;
}
.lg-cap-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.lg-cap-header { text-align: center; margin-bottom: 60px; }
.lg-cap-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800; color: #071c3d; margin-bottom: 14px;
}
.lg-cap-header p { font-size: 17px; color: #5b6780; max-width: 580px; margin: 0 auto; }

.lg-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.lg-cap-card {
    background: #fff;
    border: 1px solid #f0f2f5;
    border-radius: 20px;
    padding: 32px 28px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lg-cap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #EA580C);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}
.lg-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(249,115,22,0.2);
}
.lg-cap-card:hover::before { transform: scaleX(1); }
.lg-cap-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.lg-cap-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px; font-weight: 700; color: #071c3d; margin-bottom: 10px;
}
.lg-cap-card p { font-size: 14px; color: #5b6780; line-height: 1.7; }


/* ========================= HOW IT WORKS ========================= */
.lg-how {
    padding: 100px 0;
    background: #fff7ed;
}
.lg-how-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.lg-how-header { text-align: center; margin-bottom: 60px; }
.lg-how-tag {
    display: inline-block;
    font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: #F97316; background: rgba(249,115,22,0.1);
    padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
}
.lg-how-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800; color: #071c3d; margin-bottom: 14px;
}
.lg-how-header p { font-size: 17px; color: #5b6780; max-width: 560px; margin: 0 auto; }

.lg-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lg-how-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(249,115,22,0.1);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lg-how-card::before {
    content: attr(data-step);
    position: absolute;
    top: -10px; right: 16px;
    font-family: 'Sora', sans-serif;
    font-size: 72px; font-weight: 800;
    color: rgba(249,115,22,0.06);
    line-height: 1;
    pointer-events: none;
}
.lg-how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(249,115,22,0.1);
}
.lg-how-num {
    font-family: 'Sora', sans-serif;
    font-size: 36px; font-weight: 800;
    background: linear-gradient(135deg, #F97316, #EA580C);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px; line-height: 1;
}
.lg-how-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px; font-weight: 700; color: #071c3d; margin-bottom: 10px;
}
.lg-how-card p { font-size: 14px; color: #5b6780; line-height: 1.7; }


/* ========================= BENEFITS ========================= */
.lg-benefits {
    padding: 100px 0;
    background: #fff;
}
.lg-benefits-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.lg-benefits-header { text-align: center; margin-bottom: 60px; }
.lg-benefits-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800; color: #071c3d; margin-bottom: 14px;
}
.lg-benefits-header p { font-size: 17px; color: #5b6780; max-width: 580px; margin: 0 auto; }

.lg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.lg-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border: 1px solid #f0f2f5;
    border-radius: 20px;
    transition: 0.3s;
}
.lg-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
    border-color: rgba(249,115,22,0.2);
}
.lg-benefit-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px;
    background: rgba(249,115,22,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.lg-benefit-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 16px; font-weight: 700; color: #071c3d; margin-bottom: 8px;
}
.lg-benefit-card p { font-size: 14px; color: #5b6780; line-height: 1.7; margin: 0; }


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .lg-overview-inner { grid-template-columns: 1fr; gap: 40px; }
    .lg-pillars-bento { grid-template-columns: 1fr; }
    .lg-pillar--large, .lg-pillar--wide { grid-column: span 1; }
    .lg-cap-grid { grid-template-columns: repeat(2, 1fr); }
    .lg-how-grid { grid-template-columns: repeat(2, 1fr); }
    .lg-benefits-grid { grid-template-columns: 1fr; }
}
/* Journey tablet layout — only between 768px and 991px (not phones) */
@media (min-width: 768px) and (max-width: 991px) {
    .lg-journey-track { grid-template-columns: repeat(3, 1fr); }
    .lg-journey-track::before { left: 5%; right: 5%; }
    .lg-journey-step:nth-child(4), .lg-journey-step:nth-child(5) { display: none; }
    .lg-journey-notifications { grid-template-columns: repeat(2, 1fr); }
    .lg-journey-notifications > div:nth-child(5) { display: none; }
}

@media (max-width: 767px) {
    .lg-overview, .lg-pillars, .lg-journey, .lg-capabilities, .lg-how, .lg-benefits { padding: 60px 0; }
    .lg-overview-inner, .lg-pillars-inner, .lg-journey-inner, .lg-cap-inner, .lg-how-inner, .lg-benefits-inner { padding: 0 20px; }
    .lg-cap-grid { grid-template-columns: 1fr; }
    .lg-how-grid { grid-template-columns: 1fr; }
    .lg-pillar-stats { flex-wrap: wrap; gap: 16px; }

    /* Journey — vertical track, all 5 steps shown */
    .lg-journey-track {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 28px;
    }
    .lg-journey-track::before {
        top: 28px;
        bottom: 28px;
        left: 28px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(249,115,22,0.5) 15%, rgba(249,115,22,0.5) 85%, transparent);
    }
    .lg-journey-step {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 18px;
        padding: 14px 0;
    }
    .lg-journey-node {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .lg-journey-label { font-size: 14px; margin-bottom: 3px; }
    .lg-journey-sub   { font-size: 12px; }

    /* Journey notifications — single column, all shown */
    .lg-journey-notifications {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .lg-journey-notifications > div { display: block; }
}

@media (max-width: 480px) {
    .lg-journey-track { padding-left: 22px; }
    .lg-journey-track::before { left: 22px; }
    .lg-journey-node { width: 44px; height: 44px; font-size: 16px; }
    .lg-journey-step,
    .lg-journey-step:nth-child(4),
    .lg-journey-step:nth-child(5) { gap: 14px; padding: 10px 0; }
    .lg-journey-label { font-size: 13px; }
}
