/* KP-RIISP IMRD MIS Landing Page */
:root {
    --lp-primary: #0F4C81;
    --lp-primary-dark: #0a3558;
    --lp-secondary: #2E7D32;
    --lp-accent: #F4B400;
    --lp-bg: #F8FAFC;
    --lp-text: #1F2937;
    --lp-muted: #64748b;
    --lp-white: #ffffff;
    --lp-radius: 1rem;
    --lp-shadow: 0 10px 40px rgba(15, 76, 129, 0.08);
    --lp-shadow-hover: 0 20px 50px rgba(15, 76, 129, 0.14);
    --lp-header-h: 76px;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body.lp-body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4, .lp-body h5, .lp-body h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
}

.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.lp-section {
    padding: 5rem 0;
}

.lp-section-alt {
    background: var(--lp-white);
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-secondary);
    margin-bottom: 0.75rem;
}

.lp-section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 0.75rem;
    color: var(--lp-primary);
}

.lp-section-lead {
    color: var(--lp-muted);
    max-width: 720px;
    margin-bottom: 2.5rem;
}

/* Header */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--lp-header-h);
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.lp-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(15, 76, 129, 0.08);
}

.lp-header.is-scrolled .lp-nav-link,
.lp-header.is-scrolled .lp-brand-text {
    color: var(--lp-text);
}

.lp-header.is-scrolled .lp-brand-sub {
    color: var(--lp-muted);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--lp-header-h);
    gap: 1rem;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.lp-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.lp-brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.2;
}

.lp-brand-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.lp-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 992px) {
    .lp-nav { display: flex; }
}

.lp-nav-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.70rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.lp-nav-link:hover,
.lp-nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.lp-header.is-scrolled .lp-nav-link:hover {
    background: rgba(15, 76, 129, 0.08);
    color: var(--lp-primary);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent), #e6a200);
    color: var(--lp-primary-dark);
    box-shadow: 0 8px 24px rgba(244, 180, 0, 0.35);
}

.lp-btn-primary:hover {
    color: var(--lp-primary-dark);
    box-shadow: 0 12px 28px rgba(244, 180, 0, 0.45);
}

.lp-btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.lp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lp-btn-secondary {
    background: var(--lp-primary);
    color: #fff;
}

.lp-btn-secondary:hover {
    background: var(--lp-primary-dark);
    color: #fff;
}

.lp-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.35rem;
}

.lp-header.is-scrolled .lp-menu-toggle {
    background: rgba(15, 76, 129, 0.08);
    color: var(--lp-primary);
}

@media (min-width: 992px) {
    .lp-menu-toggle { display: none; }
}

.lp-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.lp-mobile-drawer.is-open {
    pointer-events: auto;
    opacity: 1;
}

.lp-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.lp-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: #fff;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.lp-mobile-drawer.is-open .lp-mobile-panel {
    transform: translateX(0);
}

.lp-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1.5rem;
}

.lp-mobile-nav a {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--lp-text);
    text-decoration: none;
    font-weight: 500;
}

.lp-mobile-nav a:hover {
    background: var(--lp-bg);
    color: var(--lp-primary);
}

/* Hero */
.lp-hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
}

.lp-hero-swiper {
    width: 100%;
    min-height: 100vh;
    height: 100%;
}

.lp-hero-swiper > .swiper-wrapper > .swiper-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    height: auto;
}

.lp-hero-swiper > .swiper-wrapper > .swiper-slide-active .lp-hero-slide-bg {
    transform: scale(1);
}

.lp-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(15, 76, 129, 0.88) 0%, rgba(15, 53, 88, 0.82) 42%, rgba(46, 125, 50, 0.72) 100%);
}

.lp-hero-slide-inner {
    position: relative;
    z-index: 2;
    padding: calc(var(--lp-header-h) + 2rem) 1.25rem 7.5rem;
    width: 100%;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .lp-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.lp-hero-copy {
    animation: lpHeroFadeIn 0.7s ease both;
}

.lp-hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease-out;
}

.lp-hero-swiper > .swiper-wrapper > .swiper-slide-active .lp-hero-copy {
    animation: lpHeroFadeIn 0.7s ease both;
}

@keyframes lpHeroFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.lp-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.lp-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 1.75rem;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Hero CTA buttons */
.lp-btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--lp-accent), #e6a200);
    color: var(--lp-primary-dark);
    box-shadow: 0 10px 28px rgba(244, 180, 0, 0.4);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(244, 180, 0, 0.5);
    color: var(--lp-primary-dark);
}

.lp-btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.lp-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.lp-hero-visual {
    position: relative;
}

.lp-hero-featured-img {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.25);
    aspect-ratio: 4 / 3;
}

.lp-hero-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-hero-dashboard-preview {
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, #e2e8f0 0%, #f8fafc 100%);
    border-color: rgba(244, 180, 0, 0.55);
}

.lp-hero-dashboard-preview img {
    object-fit: contain;
    object-position: center top;
    padding: 0.35rem;
    background: #f8fafc;
}

.lp-hero-img-caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    padding: 0.55rem 0.85rem;
    border-radius: 0.65rem;
    background: rgba(15, 76, 129, 0.85);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.lp-hero-img-caption i {
    margin-right: 0.35rem;
    color: var(--lp-accent);
}

/* Hero slider arrows */
.lp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(15, 76, 129, 0.55);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.lp-hero-arrow:hover {
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
    border-color: var(--lp-accent);
    transform: translateY(-50%) scale(1.06);
}

.lp-hero-prev { left: 1.25rem; }
.lp-hero-next { right: 1.25rem; }

@media (max-width: 767px) {
    .lp-hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    .lp-hero-prev { left: 0.65rem; }
    .lp-hero-next { right: 0.65rem; }
}

/* Play / pause */
.lp-hero-playpause {
    position: absolute;
    bottom: 6.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(15, 76, 129, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.lp-hero-playpause:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lp-hero-playpause .icon-play { display: none; }
.lp-hero-playpause:not(.is-playing) .icon-pause { display: none; }
.lp-hero-playpause:not(.is-playing) .icon-play { display: block; }

/* Hero pagination dots */
.lp-hero-pagination {
    position: absolute !important;
    bottom: 6.75rem !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    width: auto !important;
    display: flex;
    gap: 0.45rem;
    justify-content: center;
}

.lp-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: width 0.3s, background 0.3s;
}

.lp-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--lp-accent);
}

/* Thumbnail strip */
.lp-hero-thumbs-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 0.75rem 0 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.65));
    pointer-events: none;
}

.lp-hero-thumbs-wrap .lp-container,
.lp-hero-thumbs-wrap .swiper,
.lp-hero-thumbs-wrap .swiper-slide {
    pointer-events: auto;
}

.lp-hero-thumbs {
    height: 72px;
    overflow: hidden;
}

.lp-hero-thumbs .swiper-wrapper {
    align-items: stretch;
}

.lp-hero-thumbs .swiper-slide {
    width: 140px !important;
    height: 72px !important;
    min-height: 0 !important;
    flex-shrink: 0;
    opacity: 0.55;
    transform: scale(0.92);
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
}

.lp-hero-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1);
}

.lp-hero-thumb {
    width: 100%;
    height: 100%;
    border-radius: 0.65rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.lp-hero-thumbs .swiper-slide-thumb-active .lp-hero-thumb {
    border-color: var(--lp-accent);
    box-shadow: 0 4px 16px rgba(244, 180, 0, 0.35);
}

.lp-hero-thumb span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0.35rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(15, 76, 129, 0.85));
    line-height: 1.2;
}

@media (max-width: 991px) {
    .lp-hero-visual { display: none; }
    .lp-hero-slide-inner { padding-bottom: 8.5rem; }
}

@media (max-width: 575px) {
    .lp-hero-thumbs { height: 58px; }
    .lp-hero-thumbs .swiper-slide {
        width: 100px !important;
        height: 58px !important;
    }
    .lp-hero-playpause { bottom: 5.5rem; right: 1rem; }
    .lp-hero-pagination { bottom: 5.75rem !important; }
}

/* Legacy mock styles removed from hero — kept for reference if needed elsewhere */
.lp-dashboard-mock {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.25rem;
    padding: 1.25rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.lp-mock-header {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.lp-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.lp-mock-chart {
    height: 120px;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, rgba(244, 180, 0, 0.35), rgba(46, 125, 50, 0.25));
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.lp-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100%;
    padding: 1rem;
}

.lp-mock-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(255, 255, 255, 0.55);
    animation: lpBarPulse 3s ease-in-out infinite;
}

.lp-mock-bars span:nth-child(2) { height: 55%; animation-delay: 0.2s; }
.lp-mock-bars span:nth-child(3) { height: 80%; animation-delay: 0.4s; }
.lp-mock-bars span:nth-child(4) { height: 45%; animation-delay: 0.6s; }
.lp-mock-bars span:nth-child(5) { height: 70%; animation-delay: 0.8s; }

@keyframes lpBarPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.lp-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.lp-mock-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.65rem;
    padding: 0.65rem;
    text-align: center;
    color: #fff;
    font-size: 0.75rem;
}

.lp-mock-stat strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-display);
}

.lp-float-card {
    position: absolute;
    background: #fff;
    border-radius: 0.85rem;
    padding: 0.75rem 1rem;
    box-shadow: var(--lp-shadow-hover);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text);
    animation: lpFloat 4s ease-in-out infinite;
}

.lp-float-card i {
    color: var(--lp-secondary);
    font-size: 1.1rem;
}

.lp-float-1 { top: -12px; right: -8px; animation-delay: 0s; }
.lp-float-2 { bottom: 20px; left: -16px; animation-delay: 1s; }

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Stats */
.lp-stats {
    margin-top: -1rem;
    position: relative;
    z-index: 99999;
    padding-bottom: 1rem;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.lp-stat-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(15, 76, 129, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-hover);
}

.lp-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.lp-stat-label {
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
}

/* Cards */
.lp-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(15, 76, 129, 0.06);
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-hover);
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.lp-feature-item {
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
    background: var(--lp-bg);
    border-radius: 0.85rem;
    border: 1px solid rgba(15, 76, 129, 0.06);
}

.lp-feature-item i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-feature-item h6 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
}

.lp-feature-item p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--lp-muted);
}

/* Department cards */
.lp-dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.lp-dept-card .lp-dept-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lp-dept-card .lp-dept-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 76, 129, 0.55));
}

.lp-dept-body {
    padding: 1.25rem;
}

.lp-dept-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lp-dept-body h5 {
    margin: 0.75rem 0 0.5rem;
    color: var(--lp-primary);
}

.lp-dept-body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--lp-muted);
}

/* News */
.lp-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.lp-news-img {
    height: 190px;
    background-size: cover;
    background-position: center;
}

.lp-news-body {
    padding: 1.25rem;
}

.lp-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
}

.lp-news-date {
    color: var(--lp-muted);
}

.lp-news-cat {
    background: rgba(46, 125, 50, 0.12);
    color: var(--lp-secondary);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-weight: 600;
}

.lp-news-body h5 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.lp-read-more {
    color: var(--lp-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
}

.lp-read-more:hover {
    color: var(--lp-secondary);
}

/* Success stories */
.lp-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.lp-story-impact {
    display: inline-block;
    margin-top: 0.65rem;
    padding: 0.25rem 0.65rem;
    background: rgba(244, 180, 0, 0.2);
    color: #92680a;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Events timeline */
.lp-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.lp-event-card {
    padding: 1.25rem;
    border-left: 4px solid var(--lp-accent);
}

.lp-event-date {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--lp-primary);
    font-size: 0.95rem;
}

.lp-event-loc {
    font-size: 0.82rem;
    color: var(--lp-muted);
    margin-bottom: 0.5rem;
}

/* Gallery masonry */
.lp-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lp-gallery-filter {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 76, 129, 0.15);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-gallery-filter.active,
.lp-gallery-filter:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

.lp-gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

@media (max-width: 991px) {
    .lp-gallery-grid { columns: 2; }
}

@media (max-width: 575px) {
    .lp-gallery-grid { columns: 1; }
}

.lp-gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--lp-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.lp-gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.35s;
}

.lp-gallery-item:hover img {
    transform: scale(1.04);
}

.lp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 76, 129, 0.75));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.lp-gallery-item:hover .lp-gallery-overlay {
    opacity: 1;
}

/* Why MIS */
.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.lp-why-card {
    padding: 1.5rem;
    text-align: center;
}

.lp-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.1), rgba(46, 125, 50, 0.12));
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Testimonials */
.lp-testimonial-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem;
    box-shadow: var(--lp-shadow);
    height: 100%;
}

.lp-testimonial-stars {
    color: var(--lp-accent);
    margin-bottom: 1rem;
}

.lp-testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.lp-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
}

.lp-testimonial-user h6 {
    margin: 0;
    font-size: 0.95rem;
}

.lp-testimonial-user small {
    color: var(--lp-muted);
}

/* Partners slider */
.lp-partners-wrap {
    overflow: hidden;
    padding: 1rem 0;
}

.lp-partners-track {
    display: flex;
    gap: 2.5rem;
    animation: lpScroll 28s linear infinite;
    width: max-content;
}

.lp-partner-logo {
    flex-shrink: 0;
    min-width: 140px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: var(--lp-white);
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 76, 129, 0.08);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--lp-primary);
    text-align: center;
}

@keyframes lpScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA */
.lp-cta {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(115deg, rgba(15, 76, 129, 0.94), rgba(46, 125, 50, 0.88)),
        url('/assets/images/map-merged-area.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.lp-cta h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.lp-cta p {
    max-width: 680px;
    margin: 0 auto 1.75rem;
    opacity: 0.92;
}

.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

/* Contact */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .lp-contact-grid {
        grid-template-columns: 1fr 1.1fr;
    }
}

.lp-contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.lp-contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(15, 76, 129, 0.15);
    border-radius: 0.65rem;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-form-control:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.lp-map-placeholder {
    margin-top: 2rem;
    border-radius: var(--lp-radius);
    overflow: hidden;
    height: 280px;
    background: #e2e8f0;
}

.lp-map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.lp-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.lp-footer h6 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-links li {
    margin-bottom: 0.5rem;
}

.lp-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.88rem;
}

.lp-footer-links a:hover {
    color: var(--lp-accent);
}

.lp-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.lp-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
}

.lp-social a:hover {
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Lightbox */
.lp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(15, 23, 42, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lp-lightbox.is-open {
    display: flex;
}

.lp-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 0.5rem;
}

.lp-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* About two-col */
.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .lp-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lp-about-visual {
    border-radius: 1.25rem;
    min-height: 520px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(46, 125, 50, 0.12)),
        url('/assets/images/map-merged-area.jpeg') center/cover no-repeat;
    box-shadow: var(--lp-shadow);
    position: relative;
    overflow: hidden;
}

.lp-about-visual-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    box-shadow: var(--lp-shadow);
}

.swiper-pagination-bullet-active {
    background: var(--lp-primary) !important;
}

/* === Enhanced landing (docx content) === */
.lp-stats-vivid {
    background: linear-gradient(135deg, var(--lp-primary) 0%, #1a6b3a 55%, var(--lp-secondary) 100%);
    padding: 3rem 0;
    margin-top: -1px;
}

.lp-stat-card-vivid {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    transition: transform 0.3s, background 0.3s;
}

.lp-stat-card-vivid:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.lp-stat-card-vivid .lp-stat-label { color: rgba(255,255,255,0.88); }
.lp-stat-card-vivid .lp-stat-value { color: var(--lp-accent); }

.lp-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-accent);
    font-size: 1.1rem;
}

.lp-about-photo {
    background-size: cover;
    background-position: center;
}

.lp-approach-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.lp-approach-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15,76,129,0.08), rgba(46,125,50,0.1));
    border: 1px solid rgba(15,76,129,0.12);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lp-primary);
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-approach-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow);
}

.lp-approach-pill i { color: var(--lp-secondary); }

.lp-section-gradient {
    background: linear-gradient(145deg, #0a3558 0%, var(--lp-primary) 40%, #1a5c34 100%);
    position: relative;
    overflow: hidden;
}

.lp-section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(244,180,0,0.15), transparent 45%);
    pointer-events: none;
}

.lp-eyebrow-light { color: var(--lp-accent); }

.lp-component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.lp-component-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-top: 4px solid var(--comp-color, var(--lp-primary));
}

.lp-component-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.lp-component-img {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.lp-component-body { padding: 1.25rem; }

.lp-component-letter {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--comp-color, var(--lp-primary));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.lp-component-body h5 {
    font-size: 1rem;
    color: var(--lp-primary);
    margin-bottom: 0.5rem;
}

.lp-component-body p {
    font-size: 0.88rem;
    color: var(--lp-muted);
    margin-bottom: 0.75rem;
}

.lp-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.lp-check-list li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: var(--lp-muted);
}

.lp-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--lp-secondary);
}

.lp-esg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575px) {
    .lp-esg-grid { grid-template-columns: 1fr; }
}

.lp-esg-card {
    background: #fff;
    border-radius: 0.85rem;
    padding: 1.15rem;
    box-shadow: var(--lp-shadow);
    border-left: 4px solid var(--lp-accent);
    transition: transform 0.3s;
}

.lp-esg-card:hover { transform: translateY(-4px); }

.lp-esg-card i {
    font-size: 1.35rem;
    color: var(--lp-primary);
    margin-bottom: 0.5rem;
}

.lp-esg-card h6 { margin-bottom: 0.35rem; color: var(--lp-primary); }
.lp-esg-card p { font-size: 0.82rem; color: var(--lp-muted); margin: 0; }

.lp-dept-card-pro { transition: transform 0.35s, box-shadow 0.35s; }
.lp-dept-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-hover);
}

.lp-cta-vivid {
    background: linear-gradient(120deg, var(--lp-secondary), var(--lp-primary), #7c3aed);
    background-size: 200% 200%;
    animation: lpGradientShift 8s ease infinite;
}

@keyframes lpGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 2px solid var(--lp-primary);
    color: var(--lp-primary);
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: #fff;
    transform: translateY(-2px);
}

.lp-read-modal .modal-content {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15,76,129,0.25);
}

.lp-read-modal .modal-header {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    border: none;
}

.lp-read-modal .modal-header .btn-close {
    filter: invert(1);
}

.lp-read-modal .modal-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.lp-read-modal .modal-body h6 {
    color: var(--lp-primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.lp-read-modal .modal-footer {
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.lp-read-more-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
    .lp-stats-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Carousel rows (4 components / 4 PIUs / 6 gallery) */
.lp-carousel-wrap {
    position: relative;
    padding: 0 2.75rem 2.5rem;
}

.lp-component-swiper,
.lp-piu-swiper {
    overflow: hidden;
    padding: 0.25rem 0.15rem 0.5rem;
}

.lp-component-swiper .swiper-slide,
.lp-piu-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.lp-component-swiper .lp-component-card,
.lp-piu-swiper .lp-dept-card {
    width: 100%;
}

.lp-gallery-swiper {
    overflow: hidden;
    border-radius: 0.85rem;
}

.lp-gallery-swiper .swiper-slide {
    height: auto;
}

.lp-gallery-swiper .lp-gallery-item {
    position: relative;
    border-radius: 0.65rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-gallery-swiper .lp-gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(15, 76, 129, 0.2);
}

.lp-gallery-swiper .lp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-gallery-swiper .lp-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.65rem;
    background: linear-gradient(180deg, transparent, rgba(15, 76, 129, 0.88));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
}

.lp-gallery-swiper .swiper-slide.is-filtered-out {
    display: none !important;
}

.lp-carousel-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--lp-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.lp-carousel-arrow:hover {
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
    transform: translateY(-50%) scale(1.06);
}

.lp-component-carousel .lp-carousel-arrow,
.lp-gallery-carousel .lp-carousel-arrow {
    background: rgba(255, 255, 255, 0.92);
}

.lp-component-prev,
.lp-piu-prev,
.lp-gallery-prev { left: 0; }

.lp-component-next,
.lp-piu-next,
.lp-gallery-next { right: 0; }

.lp-component-pagination,
.lp-piu-pagination,
.lp-gallery-pagination {
    bottom: 0 !important;
}

.lp-component-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.lp-component-pagination .swiper-pagination-bullet-active {
    background: var(--lp-accent);
    width: 22px;
    border-radius: 999px;
}

/* Lightbox prev/next */
.lp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(15, 76, 129, 0.65);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
}

.lp-lightbox-nav:hover {
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
    transform: translateY(-50%) scale(1.05);
}

.lp-lightbox-prev { left: 1.5rem; }
.lp-lightbox-next { right: 1.5rem; }

.lp-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Contact map */
.lp-contact-map-panel {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--lp-shadow-hover);
    border: 1px solid rgba(15, 76, 129, 0.1);
}

.lp-contact-map-iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.lp-contact-map-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
}

.lp-contact-map-bar i {
    color: var(--lp-accent);
    margin-right: 0.35rem;
}

/* Compact footer */
.lp-footer-compact {
    background: linear-gradient(135deg, #0a3558 0%, var(--lp-primary) 50%, #1a5c34 100%);
    padding: 1.25rem 0;
    position: relative;
    overflow: hidden;
}

.lp-footer-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/landing pictures/landing_page_pic (1).jpeg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.lp-footer-compact-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
}

.lp-footer-brand i {
    color: var(--lp-accent);
    font-size: 1.1rem;
}

.lp-footer-inline-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

.lp-footer-inline-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-footer-inline-nav a:hover {
    color: var(--lp-accent);
}

.lp-footer-copy {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}

@media (max-width: 767px) {
    .lp-carousel-wrap { padding: 0 2.25rem 2.25rem; }
    .lp-carousel-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .lp-contact-map-iframe { height: 300px; }
    .lp-footer-compact-inner { flex-direction: column; text-align: center; }
    .lp-lightbox-prev { left: 0.5rem; }
    .lp-lightbox-next { right: 0.5rem; }
}

