/* ═══════════════════════════════════════════════════════════════════════
   LP2 — Premium Dark Wikipedia LP
   Design system: Dark navy bg + Gold accent + Blue secondary
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --lp2-dark:      #0b1220;
    --lp2-dark-2:    #111a2e;
    --lp2-dark-3:    #1a2540;
    --lp2-text:      #f5f7fb;
    --lp2-text-mute: #c5cce0;
    --lp2-text-soft: #8a93ad;
    --lp2-gold:      #ffc857;
    --lp2-gold-2:    #ffb732;
    --lp2-blue:      #2b6cff;
    --lp2-blue-2:    #1a52d6;
    --lp2-green:     #1fbf75;
    --lp2-white:     #ffffff;
    --lp2-line:      rgba(255,255,255,0.08);
    --lp2-shadow:    0 20px 50px rgba(0,0,0,0.18);
    --lp2-radius:    14px;
}

/* ──── Reset & Base ──── */
.lp2-body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    color: #1a2540;
    background: #ffffff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.lp2-body p, .lp2-body li, .lp2-body span, .lp2-body label { font-weight: 500; }
.lp2-body strong, .lp2-body b { font-weight: 800; }
.lp2-body h1, .lp2-body h2, .lp2-body h3, .lp2-body h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.18; }
.lp2-body h5, .lp2-body h6 { font-weight: 700; }
.lp2-body a { text-decoration: none; }
.lp2-body img { max-width: 100%; height: auto; }

.lp2-accent       { color: var(--lp2-gold); }
.lp2-accent-blue  { color: var(--lp2-blue); }

/* ──── Buttons ──── */
.lp2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background-color .15s, color .15s, border-color .15s;
    white-space: nowrap;
    line-height: 1;
}
.lp2-btn--primary {
    background: var(--lp2-gold);
    color: #0b1220;
    box-shadow: 0 12px 28px rgba(255,200,87,0.35);
}
.lp2-btn--primary:hover {
    background: var(--lp2-gold-2);
    color: #0b1220;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255,200,87,0.45);
}
.lp2-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.lp2-btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* ──── Section heads ──── */
.lp2-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--lp2-blue);
    background: rgba(43,108,255,0.10);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.lp2-eyebrow--light {
    color: var(--lp2-gold);
    background: rgba(255,200,87,0.14);
}
.lp2-section-head h2 {
    font-size: clamp(28px, 4vw, 46px);
    margin: 0 0 14px;
    color: #0b1220;
}
.lp2-section-head__sub {
    color: #5a637b;
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto;
}

/* ═══════════════════════ TOP CONTACT BAR ═══════════════════════ */
.lp2-topbar {
    background: #0b1220;
    color: #cbd3e8;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp2-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.lp2-topbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp2-topbar__dot {
    width: 10px;
    height: 10px;
    background: #1fbf75;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(31,191,117,0.20);
    animation: lp2Pulse 1.6s ease-in-out infinite;
}
@keyframes lp2Pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(31,191,117,0.20); }
    50%     { box-shadow: 0 0 0 8px rgba(31,191,117,0.04); }
}
.lp2-topbar__live {
    font-weight: 600;
    color: #e2e8f6;
}
.lp2-topbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.lp2-topbar__link {
    color: #cbd3e8;
    transition: color .15s;
    font-weight: 600;
}
.lp2-topbar__link i { color: var(--lp2-gold); margin-right: 6px; }
.lp2-topbar__link:hover { color: #fff; }
.lp2-topbar__chat {
    color: #0b1220;
    background: var(--lp2-gold);
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 700;
}
.lp2-topbar__chat:hover { background: var(--lp2-gold-2); color: #0b1220; }

/* ═══════════════════════ STICKY NAV (Dark — matches old design) ═══════════════════════ */
.lp2-nav {
    background: #080d1a;
    padding: 14px 0;
    box-shadow: 0 2px 14px rgba(0,0,0,0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp2-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.lp2-nav__logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}
.lp2-nav__menu {
    display: flex;
    gap: 30px;
}
.lp2-nav__menu a {
    color: rgba(255,255,255,0.78);
    font-weight: 700;
    font-size: 15px;
    transition: color .15s;
}
.lp2-nav__menu a:hover { color: var(--lp2-gold); }
.lp2-nav__cta {
    background: linear-gradient(135deg, #ffc857 0%, #ffb732 100%);
    color: #0b1220;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(255,200,87,0.4);
    transition: transform .15s, box-shadow .15s;
}
.lp2-nav__cta:hover { transform: translateY(-2px); color: #0b1220; box-shadow: 0 14px 30px rgba(255,200,87,0.5); }
@media (max-width: 991px) { .lp2-nav__menu { display: none; } }

/* ═══════════════════════ HERO ═══════════════════════ */
.lp2-hero {
    position: relative;
    background: #0b1220;
    color: #fff;
    padding: 90px 0 100px;
    overflow: hidden;
}
.lp2-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(43,108,255,0.30) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255,200,87,0.18) 0%, transparent 50%),
        linear-gradient(180deg, #0b1220 0%, #111a2e 100%);
}
.lp2-hero .container { z-index: 2; }
.lp2-hero__eyebrow {
    display: inline-block;
    background: rgba(255,200,87,0.14);
    color: var(--lp2-gold);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,200,87,0.3);
}
.lp2-hero__title {
    font-size: clamp(34px, 5vw, 58px);
    color: #fff;
    margin: 0 0 20px;
}
.lp2-hero__sub {
    color: #c5cce0;
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 600px;
    font-weight: 500;
}
.lp2-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.lp2-hero__bullets li {
    color: #e2e8f6;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.lp2-hero__bullets i { color: var(--lp2-green); font-size: 18px; }
.lp2-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.lp2-hero__rating {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #c5cce0;
    font-size: 14px;
}
.lp2-hero__rating strong { color: #fff; font-size: 16px; }
.lp2-stars { display: inline-flex; gap: 3px; color: var(--lp2-gold); font-size: 18px; }

/* Hero form card */
.lp2-hero__form {
    background: #fff;
    color: #1a2540;
    border-radius: 18px;
    padding: 36px 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    position: relative;
    border-top: 4px solid var(--lp2-gold);
}
.lp2-hero__form-badge {
    display: inline-block;
    background: #fff3e0;
    color: #c50a2b;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.lp2-hero__form-title {
    font-size: 26px;
    margin: 0 0 8px;
    color: #0b1220;
}
.lp2-hero__form-desc {
    color: #5a637b;
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.5;
    font-weight: 500;
}

/* Shared form styles */
.lp2-form__group { margin-bottom: 12px; }
.lp2-form__input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 2px solid #e6e9f2;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2540;
    background: #f8faff;
    transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.lp2-form__input::placeholder { color: #98a0b6; font-weight: 500; }
.lp2-form__input:focus {
    outline: none;
    border-color: var(--lp2-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(43,108,255,0.12);
}
.lp2-form__textarea {
    height: auto;
    min-height: 90px;
    padding: 14px 18px;
    line-height: 1.5;
    resize: vertical;
    font-family: inherit;
}
/* intl-tel-input flag dropdown — give the input enough left padding */
.lp2-form .iti--allow-dropdown { width: 100%; }
.lp2-form .iti--allow-dropdown input.countryCode { padding-left: 72px; }
.lp2-cta-band__form .iti--allow-dropdown { width: 100%; }
.lp2-cta-band__form .iti--allow-dropdown input.countryCode { padding-left: 72px; }
.lp2-form__submit {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #ffc857 0%, #ffb732 100%);
    color: #0b1220;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.lp2-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255,200,87,0.45);
}
.lp2-form__trust {
    margin: 14px 0 0;
    font-size: 13px;
    color: #6c7388;
    text-align: center;
    font-weight: 500;
}

/* ═══════════════════════ AS FEATURED IN ═══════════════════════ */
.lp2-featured {
    padding: 40px 0;
    background: #f5f7fb;
    border-bottom: 1px solid #e6e9f2;
}
.lp2-featured__label {
    text-align: center;
    color: #8a93ad;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 800;
    margin: 0 0 22px;
}
.lp2-featured__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 60px;
}
.lp2-featured__logos span {
    color: #8a93ad;
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.7;
    transition: opacity .2s, color .2s;
}
.lp2-featured__logos span:hover { opacity: 1; color: #1a2540; }

/* ═══════════════════════ STATS ═══════════════════════ */
.lp2-stats {
    padding: 70px 0;
    background: #fff;
}
.lp2-stat {
    text-align: center;
    padding: 30px 18px;
    background: #f8faff;
    border-radius: 14px;
    border: 1px solid #e6e9f2;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp2-stat:hover {
    transform: translateY(-6px);
    border-color: var(--lp2-blue);
    box-shadow: 0 18px 40px rgba(43,108,255,0.10);
}
.lp2-stat__num {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: var(--lp2-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}
.lp2-stat__num span { color: var(--lp2-gold); }
.lp2-stat__label {
    margin-top: 10px;
    color: #5a637b;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════ SERVICES ═══════════════════════ */
.lp2-services { padding: 90px 0; background: #f5f7fb; }
.lp2-service-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    border: 1px solid #e6e9f2;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp2-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--lp2-blue);
    box-shadow: 0 24px 50px rgba(43,108,255,0.14);
}
.lp2-service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(43,108,255,0.12) 0%, rgba(43,108,255,0.04) 100%);
    color: var(--lp2-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.lp2-service-card h3 {
    font-size: 19px;
    color: #0b1220;
    margin: 0 0 10px;
}
.lp2-service-card p {
    color: #5a637b;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════ PROCESS ═══════════════════════ */
.lp2-process { padding: 90px 0; background: #fff; }
.lp2-process__row { position: relative; }
.lp2-step {
    text-align: center;
    padding: 32px 22px;
    position: relative;
}
.lp2-step__num {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    color: var(--lp2-gold);
    line-height: 1;
    margin-bottom: 14px;
    -webkit-text-stroke: 1px var(--lp2-gold-2);
}
.lp2-step h4 {
    font-size: 19px;
    color: #0b1220;
    margin: 0 0 10px;
}
.lp2-step p {
    color: #5a637b;
    font-size: 15px;
    margin: 0;
}

/* ═══════════════════════ FULL SERVICES CATALOG ═══════════════════════ */
.lp2-services-detail {
    padding: 90px 0;
    background: #fff;
    position: relative;
}
.lp2-services-detail::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e6e9f2, transparent);
}
.lp2-detail-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e6e9f2;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}
.lp2-detail-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp2-gold) 0%, var(--lp2-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.lp2-detail-card:hover {
    transform: translateY(-8px);
    border-color: var(--lp2-gold);
    box-shadow: 0 24px 50px rgba(255,200,87,0.18);
}
.lp2-detail-card:hover::before { transform: scaleX(1); }
.lp2-detail-card__icon {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(43,108,255,0.10) 0%, rgba(255,200,87,0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 14px;
}
.lp2-detail-card__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.lp2-detail-card h4 {
    font-size: 18px;
    color: #0b1220;
    margin: 0 0 12px;
    line-height: 1.35;
}
.lp2-detail-card h4 span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp2-blue);
    margin-top: 4px;
    letter-spacing: 0.3px;
}
.lp2-detail-card p {
    color: #5a637b;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}
@media (max-width: 575px) {
    .lp2-services-detail { padding: 60px 0; }
    .lp2-detail-card { padding: 26px 22px; }
}

/* ═══════════════════════ CTA BAND (Notification) ═══════════════════════ */
.lp2-cta-band {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #0b1220 0%, #1a2540 100%);
    color: #fff;
    overflow: hidden;
}
.lp2-cta-band__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,200,87,0.18) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(43,108,255,0.25) 0%, transparent 45%);
}
.lp2-cta-band__badge {
    display: inline-block;
    background: rgba(255,200,87,0.18);
    color: var(--lp2-gold);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,200,87,0.4);
    animation: lp2BadgePulse 2s ease-in-out infinite;
}
@keyframes lp2BadgePulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.04); }
}
.lp2-cta-band h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: #fff;
    margin: 0 0 14px;
}
.lp2-cta-band > .container > .row > .col-lg-7 p {
    color: #c5cce0;
    font-size: 17px;
    margin-bottom: 22px;
    font-weight: 500;
}
.lp2-cta-band__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
}
.lp2-cta-band__list li {
    color: #e2e8f6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
}
.lp2-cta-band__list i { color: var(--lp2-green); font-size: 18px; }
.lp2-cta-band__form {
    background: #fff;
    color: #1a2540;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    border-top: 4px solid var(--lp2-gold);
}
.lp2-cta-band__form .lp2-form__input { margin-bottom: 12px; }

/* ═══════════════════════ WHY CHOOSE US ═══════════════════════ */
.lp2-why { padding: 90px 0; background: #f5f7fb; }
.lp2-pillar {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 36px 26px;
    text-align: center;
    border: 1px solid #e6e9f2;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp2-pillar:hover {
    transform: translateY(-8px);
    border-color: var(--lp2-gold);
    box-shadow: 0 24px 50px rgba(255,200,87,0.20);
}
.lp2-pillar i {
    font-size: 38px;
    color: var(--lp2-blue);
    margin-bottom: 18px;
    display: inline-block;
}
.lp2-pillar h4 {
    font-size: 19px;
    color: #0b1220;
    margin: 0 0 10px;
}
.lp2-pillar p {
    color: #5a637b;
    font-size: 15px;
    margin: 0;
}

/* ═══════════════════════ PORTFOLIO ═══════════════════════ */
.lp2-portfolio { padding: 90px 0; background: #fff; }
.lp2-tabs .nav-link {
    background: #f5f7fb;
    color: #1a2540;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 999px;
    border: none;
    margin: 0 6px;
    transition: background-color .2s, color .2s;
}
.lp2-tabs .nav-link.active {
    background: var(--lp2-blue);
    color: #fff;
}
/* ── Portfolio cards (strong override of old .pf_crd .crd_1 absolute layout) ── */
.lp2-portfolio .pf_crd .crd_1,
.lp2-portfolio .crd_1 {
    background: #fff !important;
    border: 1px solid #e6e9f2 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    transition: transform .2s, box-shadow .2s, border-color .2s !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06) !important;
    text-align: left !important;
    position: relative !important;
    cursor: default !important;
}
.lp2-portfolio .pf_crd .crd_1:hover,
.lp2-portfolio .crd_1:hover {
    transform: translateY(-6px) !important;
    border-color: var(--lp2-blue) !important;
    box-shadow: 0 20px 44px rgba(0,0,0,0.10) !important;
}
.lp2-portfolio .pf_crd .crd_1 .img_area,
.lp2-portfolio .crd_1 .img_area {
    background: #f8faff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 22px !important;
    border-bottom: 1px solid #e6e9f2 !important;
    height: 280px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}
.lp2-portfolio .pf_crd .crd_1 .img_area img,
.lp2-portfolio .crd_1 .img_area img {
    max-width: 90% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    border: none !important;
}
.lp2-portfolio .pf_crd .crd_1 .txt_area,
.lp2-portfolio .crd_1 .txt_area {
    padding: 22px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.lp2-portfolio .pf_crd .crd_1 h3,
.lp2-portfolio .crd_1 h3 {
    font-size: 18px !important;
    color: #0b1220 !important;
    margin: 0 0 8px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}
.lp2-portfolio .pf_crd .crd_1 p,
.lp2-portfolio .crd_1 p {
    color: #5a637b !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    font-weight: 500 !important;
}
.lp2-portfolio .pf_crd .crd_1 a,
.lp2-portfolio .crd_1 a {
    margin-top: auto !important;
    align-self: flex-start !important;
    background: var(--lp2-blue) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    border: none !important;
    width: auto !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.lp2-portfolio .pf_crd .crd_1 a:hover,
.lp2-portfolio .crd_1 a:hover {
    background: var(--lp2-blue-2) !important;
    color: #fff !important;
}
/* equal-height columns for portfolio rows */
.lp2-portfolio .row > [class*="col-"] { display: flex; }
.lp2-portfolio .crd_1 h3 {
    font-size: 18px;
    color: #0b1220;
    margin: 0 0 8px;
}
.lp2-portfolio .crd_1 p {
    color: #5a637b;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
}
.lp2-portfolio .crd_1 a {
    color: var(--lp2-blue);
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.lp2-testi { padding: 90px 0; background: #f5f7fb; }
.lp2-testi__card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e6e9f2;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.lp2-testi__card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,0.08); }
.lp2-testi__card .lp2-stars { margin-bottom: 16px; }
.lp2-testi__card p {
    color: #1a2540;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    font-weight: 500;
}
.lp2-testi__author { border-top: 1px solid #e6e9f2; padding-top: 16px; }
.lp2-testi__author strong {
    display: block;
    color: #0b1220;
    font-size: 16px;
    font-weight: 800;
}
.lp2-testi__author span {
    color: #8a93ad;
    font-size: 13px;
    font-weight: 600;
}

/* ═══════════════════════ CALENDLY ═══════════════════════ */
.lp2-calendly {
    padding: 90px 0;
    background: #0b1220;
    color: #fff;
    position: relative;
}
.lp2-calendly .content h3 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin: 18px 0 14px; }
.lp2-calendly .content p { color: #c5cce0; font-size: 16px; font-weight: 500; }
.lp2-calendly__sub { color: var(--lp2-gold); font-size: 14px; letter-spacing: 1px; }
.lp2-calendly .content ul { padding-left: 18px; margin: 14px 0 0; }
.lp2-calendly .content ul li { color: #e2e8f6; margin-bottom: 10px; font-weight: 500; }
.lp2-calendly .content ul li strong { color: var(--lp2-gold); font-weight: 800; }
.lp2-calendly .calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

/* ═══════════════════════ FAQ ═══════════════════════ */
.lp2-faq { padding: 90px 0; background: #fff; }
.lp2-accordion { max-width: 880px; margin: 0 auto; }
.lp2-accordion .accordion-item {
    border: 1px solid #e6e9f2;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.lp2-accordion .accordion-header { margin: 0; }
.lp2-accordion .accordion-button {
    background: #fff;
    color: #0b1220;
    font-weight: 700;
    font-size: 16px;
    padding: 20px 24px;
    box-shadow: none;
    border: none;
}
.lp2-accordion .accordion-button:not(.collapsed) {
    background: #f8faff;
    color: var(--lp2-blue);
}
.lp2-accordion .accordion-button:focus { box-shadow: 0 0 0 4px rgba(43,108,255,0.12); }
.lp2-accordion .accordion-body {
    padding: 4px 24px 22px;
    color: #5a637b;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* ═══════════════════════ FINAL CTA ═══════════════════════ */
.lp2-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b1220 0%, #1a2540 50%, #0b1220 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp2-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,200,87,0.16) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(43,108,255,0.20) 0%, transparent 50%);
    pointer-events: none;
}
.lp2-final-cta .container { position: relative; z-index: 1; }
.lp2-final-cta h2 {
    font-size: clamp(30px, 4.5vw, 50px);
    color: #fff;
    margin: 0 0 14px;
}
.lp2-final-cta p {
    color: #c5cce0;
    font-size: 18px;
    margin-bottom: 32px;
    font-weight: 500;
}
.lp2-final-cta__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 991px) {
    .lp2-hero { padding: 60px 0 70px; }
    .lp2-hero__title { font-size: 36px; }
    .lp2-hero__form { margin-top: 30px; }
    .lp2-cta-band__form { margin-top: 30px; }
}
@media (max-width: 575px) {
    .lp2-topbar__right { gap: 14px; font-size: 12px; }
    .lp2-topbar__link span { display: none; }
    .lp2-services, .lp2-process, .lp2-why, .lp2-portfolio,
    .lp2-testi, .lp2-calendly, .lp2-faq, .lp2-cta-band, .lp2-final-cta { padding: 60px 0; }
    .lp2-hero__form, .lp2-cta-band__form { padding: 28px 22px; }
    .lp2-btn { padding: 14px 22px; font-size: 14px; }
    .lp2-hero__cta { flex-direction: column; }
    .lp2-hero__cta .lp2-btn { width: 100%; }
}

/* Hide previous owl carousel testimonials section from the old design if present */
.testi-sec, .first-section.sec-container, .services-sec, .service-sec { display: none !important; }
