@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #071735;
    --navy-soft: #102b61;
    --blue: #3d5d88;
    --blue-bright: #2760a7;
    --pink: #d0315f;
    --orange: #fa7070;
    --yellow: #f7e34c;
    --ink: #181c35;
    --muted: #65728a;
    --light: #f0f4f7;
    --white: #fff;
    --border: #e4e9f0;
    --shadow: 0 18px 50px rgba(20, 46, 88, .12);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.main-wrapper { flex: 1; }
img { max-width: 100%; height: auto; }
a { color: var(--blue-bright); text-decoration: none; }
a, button { transition: all .3s ease; }
h1, h2, h3, h4, h5, h6 { color: var(--blue); font-weight: 600; line-height: 1.2; }
p { color: var(--ink); }
:target { scroll-margin-top: 86px; }

.section-padding { padding: 110px 0; }
.section-heading { max-width: 760px; margin: 0 auto 52px; }
.section-heading h2,
.maps-section h2,
.reports-section h2,
.development-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
}
.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.section-label.light { color: rgba(255, 255, 255, .72); }

/* Navigation */
.lm-navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    padding: 22px 0;
    background: transparent;
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.lm-navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 30px rgba(7, 23, 53, .1);
    backdrop-filter: blur(12px);
}

.lm-navbar .container { max-width: 1240px; }
.lm-navbar .navbar-brand { display: flex; align-items: center; padding: 0; margin-right: 70px; }
.lm-navbar .navbar-brand img { width: 176px; height: auto; }
.lm-navbar .logo-dark { display: none; }
.lm-navbar.scrolled .logo-white { display: none; }
.lm-navbar.scrolled .logo-dark { display: block; }
.lm-navbar .navbar-nav { align-items: center; gap: 8px; }
.lm-navbar .nav-link {
    padding: 10px 12px !important;
    color: #fff !important;
    font-size: .92rem;
    font-weight: 600;
}
.lm-navbar.scrolled .nav-link { color: var(--ink) !important; }
.lm-navbar .nav-link:hover { color: var(--yellow) !important; }
.lm-navbar.scrolled .nav-link:hover { color: var(--pink) !important; }

.lm-navbar .main-menu-cta { margin-left: 16px; }
.lm-navbar .main-menu-cta .nav-link {
    min-width: 142px;
    padding: 11px 22px !important;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 6px;
    text-align: center;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
}
.lm-navbar .main-menu-cta .nav-link:hover {
    color: var(--yellow) !important;
    background: rgba(255, 255, 255, .1) !important;
    border-color: rgba(255, 255, 255, .75) !important;
}
.lm-navbar.scrolled .main-menu-cta .nav-link {
    border-color: var(--blue);
    color: var(--blue) !important;
    background: transparent !important;
}
.lm-navbar.scrolled .main-menu-cta .nav-link:hover {
    color: #fff !important;
    background: var(--blue) !important;
    border-color: var(--blue) !important;
}

.lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    color: #fff !important;
    font-size: .9rem;
    font-weight: 600;
}
.lm-navbar.scrolled .lang-badge { color: var(--ink) !important; }
.lm-navbar .dropdown-menu {
    padding: 8px;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.lm-navbar .dropdown-item { padding: 7px 12px; border-radius: 5px; }
.lm-navbar .dropdown-item.active { background: var(--blue); color: #fff; }
.lm-navbar .navbar-toggler { border-color: rgba(255, 255, 255, .45); }
.lm-navbar.scrolled .navbar-toggler { border-color: var(--blue); }
.lm-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.lm-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233d5d88' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero */
.lm-hero {
    position: relative;
    min-height: 760px;
    padding: 160px 0 88px;
    overflow: hidden;
    color: #fff;
    background: url('/media/landing/hero-bg-3.webp') center/cover no-repeat;
}
.lm-hero::after {
    position: absolute;
    z-index: 0;
    content: '';
    right: -8%;
    bottom: -260px;
    width: 120%;
    height: 430px;
    background: #fff;
    transform: rotate(-7deg);
}
.hero-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 41%;
    height: 190px;
    opacity: .2;
    background: url('/media/landing/shape-corner.png') top right/contain no-repeat;
}
.hero-trust-badge {
    position: absolute;
    z-index: 4;
    top: 52%;
    right: 6%;
    width: clamp(108px, 11vw, 152px);
    transform: rotate(-12deg);
    pointer-events: none;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, .35));
    animation: hero-badge-float 4.5s ease-in-out infinite;
}
.hero-trust-badge img {
    display: block;
    width: 100%;
    height: auto;
}
@keyframes hero-badge-float {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-8px); }
}
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px 90px;
}
.hero-copy { align-self: center; max-width: 430px; }
.hero-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.35rem, 3.7vw, 3.35rem);
    font-weight: 500;
}
.hero-intro { align-self: center; max-width: 550px; padding-top: 30px; }
.hero-intro p { color: #fff; font-size: 1.18rem; font-weight: 500; line-height: 1.65; }
.hero-intro .hero-attribution { margin-top: 12px; font-size: .95rem; color: rgba(255, 255, 255, .82); max-width: 42ch; }
.home-stats-band { margin-top: 0; }
.home-sources-list { list-style: none; padding: 0; margin: 0 0 20px; }
.home-sources-list li { padding: 10px 0; border-bottom: 1px solid rgba(0, 0, 0, .08); }
.home-sources-list li:last-child { border-bottom: 0; }
.home-updated { margin: 0; font-size: .9rem; }
.hero-product {
    position: relative;
    z-index: 2;
    align-self: end;
    width: 148%;
    margin-top: 10px;
}
.hero-product img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}
.hero-pillars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 20px 0 10px 245px;
}
.hero-pillar { display: flex; align-items: center; gap: 18px; }
.pillar-icon {
    display: inline-flex;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--blue-bright);
    box-shadow: 0 12px 28px rgba(28, 74, 137, .22);
    font-size: 1.55rem;
}
.pillar-icon.dark { background: var(--navy); }
.hero-pillar small { display: block; color: var(--blue); font-size: .9rem; }
.hero-pillar strong { display: block; color: var(--blue-bright); font-size: 1.18rem; }

.lm-btn-light,
.lm-btn-dark,
.lm-btn-outline {
    border-radius: 5px;
    font-weight: 600;
}
.lm-btn-light { border: 1px solid rgba(255, 255, 255, .5); color: #fff; }
.lm-btn-light:hover { background: #fff; color: var(--blue); }

/* Feature circles */
.feature-band {
    position: relative;
    z-index: 3;
    padding-top: 82px;
    background: var(--light);
}
.feature-band::after {
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 240px;
    height: 180px;
    content: '';
    opacity: .18;
    background: url('/media/landing/shape-waves.png') center/contain no-repeat;
}
.feature-bubble {
    max-width: 250px;
    min-height: 250px;
    margin: 0 auto;
    padding: 36px 24px 28px;
    border-radius: 50%;
    text-align: center;
    background: linear-gradient(145deg, #fff, #e5edf7);
    box-shadow: inset 0 1px 0 #fff;
}
.feature-bubble-icon {
    display: flex;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 25px rgba(61, 93, 136, .15);
}
.feature-bubble-icon img { max-width: 42px; max-height: 42px; }
.feature-bubble h3 { margin-bottom: 8px; font-size: 1rem; font-weight: 600; }
.feature-bubble p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.feature-more-btn {
    padding: 11px 22px;
    border: 1px solid var(--blue);
    border-radius: 5px;
    color: var(--blue);
    font-weight: 600;
}
.feature-more-btn:hover { color: #fff; background: var(--blue); }

/* Modules */
.modules-section {
    position: relative;
    color: #fff;
    background: linear-gradient(110deg, #1c4d92, #284e83);
}
.modules-section::before {
    position: absolute;
    inset: 0;
    content: '';
    opacity: .08;
    background-image: radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px);
    background-size: 28px 28px;
}
.modules-section .container { position: relative; }
.modules-section h2 { color: #fff; }
.module-panel-link {
    display: block;
    height: 100%;
    color: inherit;
}
.module-panel {
    position: relative;
    display: flex;
    min-height: 280px;
    gap: 24px;
    padding: 38px 34px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}
.module-panel::after {
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    content: '';
    border: 1px solid #dce5f0;
    border-radius: 50%;
}
.module-panel-icon { width: 48px; height: 48px; object-fit: contain; }
.module-panel h3 { margin: 0 0 15px; font-size: 1.3rem; }
.module-panel p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
}
.module-panel .module-panel-arrow {
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: #b2bfd0;
    font-size: 1.35rem;
}
.module-panel-link:hover .module-panel { transform: translateY(-6px); }
.module-panel-link:hover .module-panel-arrow { color: var(--pink); }
.lm-btn-dark {
    padding: 11px 20px;
    color: #fff;
    background: var(--navy);
}
.lm-btn-dark span {
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .65);
    font-size: .7rem;
    text-transform: uppercase;
}
.lm-btn-dark:hover { color: #fff; background: var(--pink); }

/* Content bands */
.maps-section {
    min-height: 610px;
    background: #dfeef4 url('/media/landing/marina-map.png') center top/cover no-repeat;
}
.maps-section p,
.reports-section p,
.development-section p { color: var(--ink); }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 28px;
    color: var(--blue);
    font-weight: 500;
}
.check-list li::before {
    position: absolute;
    left: 0;
    content: '\F26B';
    color: var(--pink);
    font-family: 'bootstrap-icons';
}
.reports-section { background: #fff; }
.report-illustration {
    position: relative;
    min-height: 430px;
    padding: 35px;
    border-radius: 50%;
    background: #f4f7fb;
}
.report-illustration img { width: 100%; height: 360px; object-fit: contain; }
.report-illustration .report-detail {
    position: absolute;
    width: 34%;
    height: auto;
    filter: drop-shadow(0 14px 20px rgba(31, 67, 112, .14));
}
.report-detail-left { left: -3%; bottom: 2%; }
.report-detail-right { top: 3%; right: -2%; }
.report-copy h3 { margin: 26px 0 8px; color: var(--ink); font-size: 1.1rem; }
.report-copy h3 i { margin-right: 10px; color: var(--pink); }
.report-copy p { color: var(--muted); }
.development-section { background: #edf4f6; }
.development-image { display: block; max-height: 480px; margin: 0 auto; object-fit: contain; }
.support-item { display: flex; gap: 18px; margin-top: 30px; }
.support-item > i {
    display: flex;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 1.3rem;
}
.support-item h3 { margin: 0 0 6px; font-size: 1.2rem; }

/* Pricing */
.pricing-section {
    position: relative;
    color: #fff;
    background: var(--navy);
}
.pricing-section::before {
    position: absolute;
    inset: 0;
    content: '';
    opacity: .1;
    background: linear-gradient(135deg, transparent 45%, #3162a1 45% 55%, transparent 55%);
    background-size: 280px 280px;
}
.pricing-section .container { position: relative; }
.pricing-section h2 { color: #fff; }
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card header { min-height: 145px; padding: 30px; border-bottom: 1px solid var(--border); }
.pricing-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.pricing-card header p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.pricing-card ul { flex: 1; margin: 0; padding: 28px 30px 20px; list-style: none; }
.pricing-card li { margin: 9px 0; color: var(--ink); font-size: .88rem; }
.pricing-card li i { margin-right: 8px; color: var(--blue-bright); }
.pricing-feature-inactive {
    opacity: 0.5;
    color: var(--muted);
}
.pricing-feature-inactive i {
    color: var(--muted);
}
.pricing-card-action { margin-top: auto; padding: 0 30px 30px; }
.pricing-card-action .lm-btn-outline { margin: 0; }
.pricing-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.pricing-card-featured {
    border: 2px solid rgba(255, 255, 255, .25);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
}
.pricing-card-featured header {
    color: #fff;
    background: linear-gradient(135deg, var(--blue) 0%, #1f4268 100%);
    border-bottom-color: rgba(255, 255, 255, .12);
}
.pricing-card-featured header p { color: rgba(255, 255, 255, .82); }
.pricing-card-featured h3 { color: #fff; }
.lm-btn-outline {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--border);
    color: var(--blue);
    font-size: .86rem;
    text-align: center;
    text-decoration: none;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card:hover .lm-btn-outline { border-color: var(--blue); background: var(--blue); color: #fff; }
.pricing-hero .lead { max-width: 760px; }
.pricing-intro-section { background: var(--light); }
.pricing-page-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.75rem);
}
.pricing-page-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}
.pricing-page-intro-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(31, 67, 112, .12);
}
.pricing-page-intro-visual img { display: block; width: 100%; height: auto; }
.pricing-page-section { padding-top: 72px; }
.pricing-models-section { background: var(--light); }
.pricing-models-section .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-body);
}
.pricing-model-card {
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}
.pricing-model-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: var(--blue);
    background: rgba(49, 98, 161, .1);
    font-size: 1.4rem;
}
.pricing-model-card h3 { margin-bottom: .75rem; font-size: 1.25rem; }
.pricing-model-card p { color: var(--text-body); }
.pricing-model-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--text-body);
}
.pricing-model-card li { margin-bottom: .45rem; }
.pricing-cta-band {
    color: #fff;
    background: var(--navy);
}
.pricing-cta-band h2 {
    max-width: 760px;
    margin: .75rem auto 0;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.pricing-cta-band p {
    max-width: 680px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, .78);
}
.lm-btn-outline-light {
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}
.lm-btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* Gallery, FAQ and contact */
.screenshots-section {
    position: relative;
    overflow: hidden;
    background: var(--light);
}
.screenshots-section::before {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 93, 136, .08) 0%, transparent 70%);
    content: "";
    pointer-events: none;
}
.screenshot-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 46, 88, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.screenshot-card:hover {
    transform: translateY(-6px);
    border-color: rgba(61, 93, 136, .22);
    box-shadow: var(--shadow);
}
.screenshot-card-media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--navy);
    cursor: zoom-in;
}
.screenshot-card-media img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .5s ease;
}
.screenshot-card:hover .screenshot-card-media img { transform: scale(1.04); }
.screenshot-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    background: rgba(7, 23, 53, .42);
    opacity: 0;
    transition: opacity .35s ease;
}
.screenshot-card:hover .screenshot-card-overlay { opacity: 1; }
.screenshot-card-caption {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px 22px;
}
.screenshot-card-index {
    flex-shrink: 0;
    color: rgba(61, 93, 136, .28);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}
.screenshot-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: var(--blue);
    background: rgba(49, 98, 161, .1);
    font-size: 1rem;
}
.screenshot-card-caption h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 600;
}
.screenshot-lightbox .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #fff;
}
.screenshot-lightbox .modal-header { padding: 1rem 1.25rem .5rem; }
.screenshot-lightbox .modal-title { color: var(--navy); font-weight: 600; }
.screenshot-lightbox-img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #f4f7fb;
}
.faq-section { background: #fff; }
.lm-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px !important;
}
.lm-accordion .accordion-button { color: var(--blue); background: #fff; box-shadow: none; font-weight: 600; }
.lm-accordion .accordion-button:not(.collapsed) { color: #fff; background: var(--blue); }
.lm-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.contact-strip { padding: 62px 0; color: #fff; background: linear-gradient(100deg, var(--pink), var(--orange)); }
.contact-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.contact-strip h2 { margin: 0; color: #fff; font-size: 2.1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-actions a {
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 6px;
    color: #fff;
}
.contact-actions a:hover { color: var(--pink); background: #fff; }

/* Footer */
.lm-footer {
    position: relative;
    padding: 80px 0 28px;
    overflow: hidden;
    color: rgba(255, 255, 255, .65);
    background: #07142d;
}
.lm-footer::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 420px;
    height: 360px;
    content: '';
    opacity: .12;
    background: url('/media/landing/shape-corner.png') center/contain no-repeat;
}
.lm-footer .container { position: relative; z-index: 1; }
.lm-footer img { width: 190px; }
.lm-footer .footer-heading { margin-bottom: 20px; color: #fff; font-size: 1rem; font-weight: 600; }
.lm-footer p, .lm-footer a { color: rgba(255, 255, 255, .6); }
.lm-footer a:hover { color: #fff; }
.footer-desc { max-width: 340px; font-size: .9rem; }
.footer-links, .footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 8px; }
.footer-contact li { display: flex; gap: 9px; font-size: .9rem; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}
.footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .82rem;
}
.lm-footer .form-control { border-color: rgba(255, 255, 255, .12) !important; background: rgba(255, 255, 255, .06) !important; }
.btn-accent { color: #fff; background: var(--pink); }

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1060;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 4px solid #c7f6d7;
    border-radius: 50%;
    color: #fff;
    background: #13c765;
    box-shadow: 0 8px 24px rgba(19, 199, 101, .35);
    font-size: 1.55rem;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* Features page */
.features-hero .lead { max-width: 760px; }
.features-page { background: var(--light); }
.features-page-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.75rem);
}
.features-page-intro p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
}
.features-page-intro p:last-of-type { margin-bottom: 0; }
.features-page-intro-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(31, 67, 112, .12);
}
.features-page-intro-visual img { display: block; width: 100%; height: auto; }
.features-page .section-heading > p {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--muted);
}
.feature-detail-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(31, 67, 112, .07);
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature-detail-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    content: '';
    border: 1px solid #e4eaf2;
    border-radius: 50%;
}
.feature-detail-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.feature-detail-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    box-shadow: 0 12px 24px rgba(39, 96, 167, .22);
    font-size: 1.55rem;
}
.feature-detail-card h2 { margin-bottom: 13px; font-size: 1.25rem; }
.feature-detail-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.7; }
.feature-page-cta {
    padding: 70px 0;
    color: #fff;
    background: linear-gradient(105deg, var(--blue-bright), var(--navy));
}
.feature-page-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.feature-page-cta h2 { max-width: 730px; margin: 0; color: #fff; font-size: 2rem; }
.feature-page-cta .btn { flex: 0 0 auto; padding: 12px 22px; }

/* Why page */
.why-hero .lead { max-width: 820px; }
.why-intro { background: #fff; }
.why-intro-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--light);
    box-shadow: var(--shadow);
}
.why-intro-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}
.why-intro-visual img { display: block; width: 100%; height: auto; }
.why-intro-copy { text-align: left; }
@media (min-width: 992px) {
    .why-intro-copy {
        align-self: flex-end;
        max-width: 380px;
    }
}
.why-intro-panel h2 {
    margin: 10px 0 14px;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.25;
}
.why-intro-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}
.why-proof { background: var(--light); }
.why-proof-heading { max-width: 820px; margin: 0 auto 42px; }
.why-proof-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.3;
}
.why-proof-heading p {
    margin: 0;
    color: var(--pink);
    font-size: 1.15rem;
    font-weight: 600;
}
.why-proof-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .why-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .why-proof-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.why-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 28px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(31, 67, 112, .12);
}
.why-proof-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    box-shadow: 0 10px 22px rgba(39, 96, 167, .22);
    flex-shrink: 0;
}
.why-proof-icon i {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
}
.why-proof-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    line-height: 1.1;
    color: var(--blue);
}
.why-proof-label {
    display: block;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}
.why-page { background: var(--light); }
.why-stats-band {
    padding: 70px 0;
    color: #fff;
    background: linear-gradient(105deg, var(--navy-soft), var(--navy));
    text-align: center;
}
.why-stats-band h2 { margin-bottom: 36px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.why-stat-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}
.why-stat-item span { display: block; color: rgba(255, 255, 255, .78); font-size: .95rem; }
.why-compare { background: #fff; }
.why-compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.why-compare-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
}
.why-compare-table th,
.why-compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}
.why-compare-table thead th {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    font-size: .92rem;
}
.why-compare-table tbody tr:last-child td { border-bottom: 0; }
.why-compare-table tbody td:first-child { font-weight: 600; color: var(--blue); }
.why-compare-table tbody td:nth-child(2) { color: var(--ink); }
.why-compare-table tbody td:nth-child(2) i { margin-right: 8px; color: #13c765; }
.why-compare-table tbody td:nth-child(3) { color: var(--muted); }

/* Modules listing page */
.module-page-intro h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 18px; }
.module-page-intro p { color: var(--muted); line-height: 1.75; }
.module-page-intro-cta {
    margin: 0;
    margin-top: 22px;
    color: var(--blue);
    font-size: 1.05rem;
    font-weight: 600;
}
.module-page-intro-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(31, 67, 112, .12);
}
.module-page-intro-visual img { display: block; width: 100%; height: auto; }
.module-list-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 340px;
    padding: 34px 30px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 12px 35px rgba(31, 67, 112, .07);
    transition: transform .3s ease, box-shadow .3s ease;
}
.module-list-card::after {
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 180px;
    height: 180px;
    content: '';
    border: 1px solid #e1e8f1;
    border-radius: 50%;
}
.module-list-card:hover {
    color: var(--ink);
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.module-list-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    font-size: 1.45rem;
}
.module-list-category {
    position: absolute;
    top: 34px;
    right: 30px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.module-list-card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.module-list-card p { color: var(--muted); font-size: .92rem; line-height: 1.7; }
.module-list-link {
    z-index: 1;
    display: flex;
    margin-top: auto;
    align-items: center;
    justify-content: space-between;
    color: var(--blue-bright);
    font-size: .88rem;
    font-weight: 600;
}
.module-list-cta {
    display: flex;
    margin-top: 65px;
    padding: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(105deg, var(--blue-bright), var(--navy));
}
.module-list-cta h2 { margin-bottom: 8px; color: #fff; font-size: 1.7rem; }
.module-list-cta p { margin: 0; color: rgba(255, 255, 255, .72); }
.module-list-cta .btn { flex: 0 0 auto; padding: 11px 22px; }

/* Marina services inside the services module */
.marina-services-intro { margin-bottom: 28px; }
.marina-services-catalog { margin-top: 0; }
.marina-service-card {
    display: flex;
    height: 100%;
    min-height: 170px;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--light);
    transition: transform .25s ease, box-shadow .25s ease;
}
.marina-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(31, 67, 112, .1);
}
.marina-service-card > span {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: var(--blue);
    font-size: 1.2rem;
}
.marina-service-card h3 { margin: 2px 0 8px; font-size: 1.05rem; }
.marina-service-card p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }

/* Module detail sidebar */
.module-detail-sidebar {
    position: sticky;
    top: 105px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(31, 67, 112, .09);
}
.module-sidebar-heading {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}
.module-sidebar-heading .section-label { margin-bottom: 5px; }
.module-sidebar-heading h2 { margin: 0; font-size: 1.45rem; }
.module-detail-sidebar nav {
    max-height: calc(100vh - 300px);
    padding: 12px;
    overflow-y: auto;
}
.module-sidebar-link {
    display: flex;
    min-height: 46px;
    padding: 10px 13px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 7px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 500;
}
.module-sidebar-link:hover {
    color: var(--blue-bright);
    background: #edf3fa;
}
.module-sidebar-link.active {
    color: #fff;
    background: linear-gradient(100deg, var(--blue-bright), var(--blue));
}
.module-sidebar-link i { flex: 0 0 auto; }
.module-sidebar-all {
    display: flex;
    padding: 17px 25px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    color: var(--blue);
    background: #fff;
    font-size: .88rem;
    font-weight: 600;
}
.module-sidebar-all:hover { color: var(--pink); }

/* CMS inner pages */
.page-hero {
    position: relative;
    padding: 155px 0 75px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(105deg, #1f4d94, var(--navy));
}
.page-hero::after {
    position: absolute;
    right: -10%;
    bottom: -130px;
    width: 80%;
    height: 220px;
    content: '';
    background: rgba(255, 255, 255, .06);
    transform: rotate(-8deg);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.3rem); }
.page-hero .lead { color: rgba(255, 255, 255, .75); }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, .7); }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .45); }
.section-dark, .section-navy { background: #fff; }
.section-gray { background: var(--light); }
.content-body { color: var(--ink); font-size: 1.04rem; line-height: 1.9; }
.content-body h2, .content-body h3, .content-body h4 { margin-top: 1.8em; color: var(--blue); }
.content-body img { margin: 20px 0; border-radius: 12px; box-shadow: var(--shadow); }

/* Contact page */
.contact-support-section { background: #fff; }
.contact-support-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.75rem);
}
.contact-support-intro p {
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.75;
}
.contact-support-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(31, 67, 112, .12);
}
.contact-support-visual img { display: block; width: 100%; height: auto; }
.contact-support-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-support-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--light);
    font-weight: 600;
    color: var(--ink);
}
.contact-support-channel-icon {
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    font-size: 1.05rem;
}
.contact-page { background: var(--light); }
.contact-company-card {
    margin-bottom: 28px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.contact-company-card h2 { margin: 10px 0 12px; font-size: 1.45rem; }
.contact-company-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.7; }
.contact-info-list { display: grid; gap: 14px; margin-bottom: 24px; }
.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.contact-info-icon {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    font-size: 1.15rem;
}
.contact-info-card h3 { margin: 0 0 6px; font-size: .95rem; color: var(--blue); }
.contact-info-card p { margin: 0; color: var(--ink); font-weight: 500; }
.contact-info-card p a { color: var(--ink); }
.contact-info-card p a:hover { color: var(--pink); }
.contact-info-card small { display: block; margin-top: 4px; color: var(--muted); font-size: .82rem; }
.contact-quick-links {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
}
.contact-quick-links h3 { margin-bottom: 16px; font-size: 1.05rem; color: var(--blue); }
.demo-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.demo-benefits-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-size: .95rem;
}
.demo-benefits-list li:last-child { border-bottom: 0; }
.demo-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--blue-bright);
    font-weight: 700;
}
.contact-form-panel {
    position: relative;
    height: 100%;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.contact-form-panel.is-loading {
    pointer-events: none;
    user-select: none;
}
.contact-form-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(2px);
    transition: opacity .2s ease, visibility .2s ease;
}
.contact-form-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}
.contact-form-preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}
.contact-form-preloader p {
    margin: 0;
    color: var(--blue);
    font-size: .95rem;
    font-weight: 600;
}
.contact-form-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(61, 93, 136, .18);
    border-top-color: var(--blue-bright);
    border-radius: 50%;
    animation: contact-form-spin .8s linear infinite;
}
@keyframes contact-form-spin {
    to { transform: rotate(360deg); }
}
.contact-form-panel h2 { margin: 10px 0 28px; font-size: 1.65rem; }
.contact-form-panel .form-label {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: .88rem;
    font-weight: 600;
}
.contact-input {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--light);
}
.contact-input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(61, 93, 136, .12);
}
.contact-submit {
    padding: 12px 28px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}
.contact-submit:hover {
    color: #fff;
    background: var(--pink);
}

.captcha-field { margin-top: 4px; }
.captcha-image {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 54px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}
.captcha-refresh {
    min-height: 54px;
    border: 1px solid var(--border);
    color: var(--blue);
    background: var(--light);
}
.captcha-refresh:hover {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}
.list-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(30, 65, 110, .08);
}
.list-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.list-card .lc-img { width: 100%; height: 220px; object-fit: cover; }
.list-card .lc-body { padding: 25px; }
.list-card h5 a { color: var(--blue); }
.list-card p { color: var(--muted); }
.badge-tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    color: var(--blue);
    background: #e8eef6;
    font-size: .75rem;
}
.text-accent { color: var(--pink) !important; }
.rounded-xl { border-radius: 12px !important; }

/* Menu component */
.menu-list, .menu-submenu { margin: 0; padding: 0; list-style: none; }
.menu-item { margin-bottom: 8px; }
.menu-submenu { margin-top: 6px; padding-left: 15px; }

@media (max-width: 1199px) {
    .lm-navbar .navbar-brand { margin-right: 30px; }
    .lm-navbar .navbar-brand img { width: 155px; }
    .hero-layout { gap: 45px; }
}

@media (max-width: 991px) {
    .section-padding { padding: 80px 0; }
    .lm-navbar { padding: 15px 0; background: rgba(7, 23, 53, .96); }
    .lm-navbar.scrolled { background: #fff; }
    .lm-navbar .container { position: relative; }
    .lm-navbar .navbar-toggler {
        position: absolute;
        top: 2px;
        right: 12px;
        display: block;
    }
    .lm-navbar .navbar-collapse {
        margin-top: 15px;
        padding: 18px;
        border-radius: 8px;
        background: var(--navy);
        box-shadow: var(--shadow);
    }
    .lm-navbar.scrolled .navbar-collapse { background: #fff; }
    .lm-navbar .navbar-nav { align-items: stretch; }
    .lm-navbar .navbar-nav.ms-auto { margin-top: 10px; align-items: flex-start !important; }
    .lm-navbar .main-menu-cta { margin: 10px 0 0; }
    .lm-navbar .main-menu-cta .nav-link { text-align: left; }
    .hero-layout { grid-template-columns: 1fr; }
    .lm-hero { padding-top: 135px; }
    .hero-intro { padding-top: 0; }
    .hero-product { max-width: 760px; min-width: 0; overflow: hidden; border-radius: 16px; }
    .hero-product { width: 100%; }
    .hero-product img { display: block; min-width: 0; }
    .hero-pillars { padding-left: 8px; }
    .hero-trust-badge {
        top: auto;
        right: 4%;
        bottom: 18%;
        width: 118px;
    }
    .lm-hero::after { bottom: -330px; }
    .feature-bubble { min-height: 230px; }
    .contact-strip .container { align-items: flex-start; flex-direction: column; }
    .feature-page-cta .container,
    .module-list-cta { align-items: flex-start; flex-direction: column; }
    .module-detail-sidebar { position: static; }
    .module-detail-sidebar nav { max-height: none; }
}

@media (max-width: 767px) {
    .section-padding { padding: 62px 0; }
    .section-heading { margin-bottom: 36px; }
    .lm-hero { min-height: auto; padding: 125px 0 55px; }
    .lm-hero::after { display: none; }
    .hero-copy h1 { font-size: 2.6rem; }
    .hero-intro p { font-size: 1rem; }
    .hero-layout { gap: 28px; }
    .hero-trust-badge {
        top: 118px;
        right: 12px;
        bottom: auto;
        width: 88px;
    }
    .hero-pillars { color: #fff; }
    .hero-pillar small, .hero-pillar strong { color: #fff; }
    .pillar-icon { border-width: 3px; }
    .feature-band { padding-top: 62px; }
    .feature-bubble { min-height: 190px; padding: 24px 12px; border-radius: 24px; }
    .feature-bubble-icon { width: 56px; height: 56px; }
    .feature-bubble-icon img { max-width: 33px; max-height: 33px; }
    .feature-bubble p { display: none; }
    .module-panel { min-height: 250px; padding: 28px 24px; }
    .maps-section {
        min-height: 540px;
        background-position: 38% top;
    }
    .maps-section .col-lg-5 {
        padding: 24px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(4px);
    }
    .report-illustration { min-height: 300px; }
    .report-illustration img { height: 260px; }
    .pricing-card header { min-height: auto; }
    .screenshot-card-media img { height: 220px; }
    .screenshot-card-caption { padding: 16px 18px 18px; }
    .screenshot-card-index { font-size: 1.35rem; }
    .contact-strip { padding: 50px 0; }
    .contact-strip h2 { font-size: 1.7rem; }
    .whatsapp-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

/* Site preloader (LightMarina / Anaton theme) */
body.preloader-active {
    overflow: hidden;
}

.anaton-preloader {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.anaton-preloader .animation-preloader {
    position: relative;
    z-index: 1000;
}

.anaton-preloader .animation-preloader .spinner {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border: 3px solid rgba(0, 0, 0, .2);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: site-preloader-spin 1s linear infinite;
}

.anaton-preloader .animation-preloader .txt-loading {
    font: 700 56px 'Outfit', sans-serif;
    text-align: center;
    user-select: none;
    letter-spacing: .02em;
}

.anaton-preloader .letters-loading {
    position: relative;
    color: rgba(0, 0, 0, .2);
}

.anaton-preloader .letters-loading::before {
    content: attr(data-text-preloader);
    position: absolute;
    left: 0;
    top: -3px;
    opacity: 0;
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    transform: rotateY(-90deg);
    animation: site-preloader-letters 4s infinite;
}

.anaton-preloader .letters-loading:nth-child(2)::before { animation-delay: .2s; }
.anaton-preloader .letters-loading:nth-child(3)::before { animation-delay: .4s; }
.anaton-preloader .letters-loading:nth-child(4)::before { animation-delay: .6s; }
.anaton-preloader .letters-loading:nth-child(5)::before { animation-delay: .8s; }
.anaton-preloader .letters-loading:nth-child(6)::before { animation-delay: 1s; }
.anaton-preloader .letters-loading:nth-child(7)::before { animation-delay: 1.2s; }
.anaton-preloader .letters-loading:nth-child(8)::before { animation-delay: 1.4s; }
.anaton-preloader .letters-loading:nth-child(9)::before { animation-delay: 1.6s; }
.anaton-preloader .letters-loading:nth-child(10)::before { animation-delay: 1.8s; }

.anaton-preloader .loader {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    font-size: 0;
}

.anaton-preloader .loader .row {
    height: 100%;
    margin: 0;
}

.anaton-preloader .loader-section {
    padding: 0;
    height: 100%;
}

.anaton-preloader .loader-section .bg {
    width: 100%;
    height: 100%;
    background: #fff;
    transition: width .8s cubic-bezier(.77, 0, .175, 1);
}

.anaton-preloader.loaded .animation-preloader {
    opacity: 0;
    transition: opacity .3s ease-out;
}

.anaton-preloader.loaded .loader-section .bg {
    width: 0;
    transition: width .7s .3s cubic-bezier(.1, .1, .1, 1);
}

@keyframes site-preloader-spin {
    to { transform: rotate(360deg); }
}

@keyframes site-preloader-letters {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media (max-width: 767px) {
    .anaton-preloader .animation-preloader .txt-loading {
        font-size: 3.5rem;
    }
}

@media (max-width: 500px) {
    .anaton-preloader .animation-preloader .txt-loading {
        font-size: 2rem;
    }

    .anaton-preloader .animation-preloader .spinner {
        width: 72px;
        height: 72px;
    }
}

/* Blog */
.blog-home-intro {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: var(--text-body);
}
.blog-list-intro {
    max-width: 760px;
    margin-bottom: 2.5rem;
}
.blog-list-intro h2,
.blog-home-section .section-heading h2 {
    margin-top: 0.5rem;
}
.blog-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.75rem;
}
.blog-card h2,
.blog-card h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.blog-card h2 a,
.blog-card h3 a {
    color: var(--heading);
    text-decoration: none;
}
.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: var(--blue);
}
.blog-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    flex-grow: 1;
}
.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.75rem 0;
}
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--text-body);
    margin-top: auto;
    padding-top: 0.75rem;
}
.blog-card-meta i {
    margin-right: 0.25rem;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}
.blog-card-link:hover {
    color: var(--pink);
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-body);
}
.blog-detail-meta i {
    margin-right: 0.25rem;
}
.blog-article-lead {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}
.blog-article-body h5 {
    color: var(--heading);
    margin-top: 1.75rem;
}
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--light);
}
.blog-sidebar-heading h2 {
    font-size: 1.25rem;
    margin-top: 0.35rem;
    margin-bottom: 1.25rem;
}
.blog-sidebar-post {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
}
.blog-sidebar-post:last-of-type {
    border-bottom: none;
}
.blog-sidebar-post h3 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.35rem;
    color: var(--heading);
}
.blog-sidebar-post p {
    font-size: 0.82rem;
    color: var(--text-body);
    margin-bottom: 0.35rem;
}
.blog-sidebar-post span {
    font-size: 0.78rem;
    color: var(--text-body);
}
.blog-sidebar-post:hover h3 {
    color: var(--blue);
}
.blog-sidebar-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}
.blog-sidebar-all:hover {
    color: var(--pink);
}
