/* ==========================================================================
   SECTION 1: BENTO GRID
   ========================================================================== */
.lotius-bento-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin-top: 3rem;
}

.lotius-bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    overflow: hidden;
}

.lotius-bento-card::before {
    content: attr(data-num);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    pointer-events: none;
    transition: color 0.4s ease;
}

/* Card 50%: Horizontal Split Layout on Desktop */
.card-50 {
    width: calc(50% - 12px);
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    min-height: 420px;
    height: auto;
}

.card-50 .lotius-bento-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 5;
}

.card-50 .lotius-bento-visual {
    width: 45%;
    height: 100%;
    position: relative;
}

/* Card 33%: Vertical Layout on Desktop */
.card-33 {
    width: calc(33.333% - 16px);
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    height: auto;
}

.card-33 .lotius-bento-content {
    height: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
    margin-bottom: 20px;
}

.card-33 .lotius-bento-visual {
    height: 160px;
    position: relative;
    width: 100%;
    margin-top: auto;
}

/* Common Content Styles */
.lotius-icon-wrapper {
    margin-bottom: 20px;
}

.lotius-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #53cdff;
    stroke-width: 1.5;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(83, 205, 255, 0.3));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.lotius-bento-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.lotius-bento-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
    margin-top: 0;
}

.lotius-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #53cdff;
    background: transparent;
    border: 1px solid rgba(83, 205, 255, 0.4);
    border-radius: 12px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.lotius-cta-btn svg.arrow-icon {
    margin-left: 8px;
    width: 14px;
    height: 14px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

/* Card Hover States */
.lotius-bento-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: #53cdff;
    box-shadow: 0 10px 40px rgba(83, 205, 255, 0.12), inset 0 0 20px rgba(83, 205, 255, 0.03);
}

.lotius-bento-card:hover::before {
    color: rgba(83, 205, 255, 0.06);
}

.lotius-bento-card:hover .lotius-icon-wrapper svg {
    transform: scale(1.1) translateY(-3px);
    filter: drop-shadow(0 0 12px rgba(83, 205, 255, 0.6));
}

.lotius-cta-btn:hover {
    background: #53cdff;
    color: #16213e;
    box-shadow: 0 0 12px rgba(83, 205, 255, 0.4);
}

.lotius-cta-btn:hover svg.arrow-icon {
    transform: translateX(4px);
}

/* HIGH FIDELITY MOCKUP DESIGNS */

/* Layout 1: Split-layout dashboard on Card 50% (Right absolute crop) */
.card-50 .lotius-bento-visual {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 50%;
    height: 110%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.mockup-window {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transform: translateY(10px) rotate(-2deg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lotius-bento-card:hover .mockup-window {
    transform: translateY(0) rotate(0deg);
}

.mockup-header {
    background: rgba(30, 41, 59, 0.5);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 6px;
}

.mockup-header .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-title {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    margin-left: 8px;
}

.mockup-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Digital Ads Visual specifics */
.ads-mockup-window {
    width: 90%;
    height: 90%;
    margin-left: auto;
    margin-right: -10px;
    margin-bottom: -15px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lotius-bento-card:hover .ads-mockup-window {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.ads-opts-badges {
    position: absolute;
    bottom: 25%;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.opt-badge.ads-roas-badge {
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.opt-badge.ads-cpa-badge {
    border-color: rgba(83, 205, 255, 0.3);
    color: #53cdff;
}

.ads-platforms {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.platform-badge {
    font-size: 8px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge.fb {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.platform-badge.gg {
    background: rgba(234, 67, 53, 0.15);
    color: #ea4335;
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.platform-badge.tk {
    background: rgba(0, 242, 234, 0.15);
    color: #00f2ea;
    border: 1px solid rgba(0, 242, 234, 0.3);
}

.ads-funnel-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ads-detailed-chart {
    width: 100%;
    height: auto;
    overflow: visible;
}

.chart-line-detailed {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLineDetailed 2.5s ease-out forwards;
}

@keyframes drawLineDetailed {
    to {
        stroke-dashoffset: 0;
    }
}

.campaigns-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.campaign-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 9px;
    justify-content: space-between;
}

.campaign-status {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.campaign-status.active {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.campaign-name {
    color: #cbd5e1;
    font-family: monospace;
    flex: 1;
    margin-left: 8px;
    text-align: left;
}

.campaign-metric {
    color: #ffffff;
}

.campaign-metric b {
    color: #10b981;
}

/* Web & AI Visual specifics */
.web-mockup-window {
    width: 90%;
    height: 90%;
    margin-left: auto;
    margin-right: -10px;
    margin-bottom: -15px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lotius-bento-card:hover .web-mockup-window {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.web-mockup-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.web-preview-ui {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 25px;
}

.ui-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.ui-logo {
    font-size: 8px;
    font-weight: 900;
    color: #53cdff;
}

.ui-nav-links {
    display: flex;
    gap: 4px;
}

.ui-link {
    width: 12px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 99px;
}

.ui-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 6px;
    text-align: center;
}

.ui-headline {
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
}

.ui-text-lines {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ui-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

.ui-line.short {
    width: 60%;
}

.ui-cta-glow {
    font-size: 7px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.web-opts-badges {
    position: absolute;
    bottom: 25%;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.opt-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 8px;
    font-weight: 700;
    color: #ffffff;
    width: fit-content;
    white-space: nowrap;
}

.opt-icon-svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.opt-badge.score-badge {
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.opt-badge.seo-badge {
    border-color: rgba(83, 205, 255, 0.3);
    color: #53cdff;
}

.opt-badge.ai-badge {
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.opt-badge.maps-top-badge {
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.opt-badge.maps-entity-badge {
    border-color: rgba(83, 205, 255, 0.3);
    color: #53cdff;
}

/* Card 33% Visual specifics (tilted / corner absolute) */
.card-33 .lotius-bento-visual {
    overflow: visible;
}

/* Social features list */
.social-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.social-features-list li {
    font-size: 12px;
    line-height: 1.5;
    color: #cbd5e1;
}

.social-features-list li span {
    font-weight: 700;
    color: #ffffff;
}

.social-features-list li .badge {
    display: inline-block;
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 4px;
    text-transform: uppercase;
    vertical-align: middle;
}

.social-features-list li .badge.sale {
    background: #ef4444;
    color: #ffffff;
}

.social-features-list li .badge.new {
    background: #53cdff;
    color: #16213e;
}

/* Social visual */
.social-mockup-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
}

.float-stats-card {
    position: absolute;
    left: -15px;
    top: 15px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: rotate(-6deg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-stats-card.engagement {
    top: 72px;
    left: -22px;
    transform: rotate(4deg);
}

.lotius-bento-card:hover .float-stats-card {
    transform: rotate(-2deg) scale(1.05);
}

.lotius-bento-card:hover .float-stats-card.engagement {
    transform: rotate(1deg) scale(1.05);
}

.stats-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-num {
    font-size: 11px;
    font-weight: 900;
    color: #10b981;
}

.stats-lbl {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.social-phone {
    position: absolute;
    right: -10px;
    bottom: -50px;
    width: 65%;
    height: 120%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: rotate(12deg) translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lotius-bento-card:hover .social-phone {
    transform: rotate(5deg) translateY(0);
}

.phone-header {
    display: flex;
    justify-content: center;
    padding-bottom: 8px;
}

.phone-speaker {
    width: 30px;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.2);
}

.social-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.post-header .avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3b82f6;
}

.post-header .name {
    font-size: 8px;
    font-weight: 700;
    color: #ffffff;
}

.post-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    margin-bottom: 4px;
}

.post-line.short {
    width: 60%;
}

.seeding-comments {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.comment-bubble {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px;
    align-items: flex-start;
    text-align: left;
}

.comment-avatar {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-avatar-svg {
    width: 12px;
    height: 12px;
    color: #3b82f6;
}

.stats-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-icon-svg {
    width: 16px;
    height: 16px;
}

.comment-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.comment-name {
    font-size: 7px;
    font-weight: 700;
    color: #ffffff;
}

.comment-txt {
    font-size: 8px;
    color: #cbd5e1;
    line-height: 1.2;
}

/* PR Visual */
.news-mockup-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
}

.news-paper-back {
    position: absolute;
    right: 15px;
    bottom: -25px;
    width: 75%;
    height: 85%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-6deg) translateY(5px);
    z-index: 1;
}

.news-paper-front {
    position: absolute;
    right: 25px;
    bottom: -30px;
    width: 75%;
    height: 90%;
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: rotate(-10deg) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #1e293b;
    text-align: left;
    z-index: 2;
}

.lotius-bento-card:hover .news-paper-front {
    transform: rotate(-3deg) translateY(0);
}

.lotius-bento-card:hover .news-paper-back {
    transform: rotate(-1deg) translateY(0);
}

.float-news-badge {
    position: absolute;
    left: -10px;
    top: 15px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: rotate(4deg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lotius-bento-card:hover .float-news-badge {
    transform: rotate(0deg) scale(1.05);
}

.float-news-badge span {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
}

.news-verified-svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.paper-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.paper-brand {
    font-size: 8px;
    font-weight: 900;
    color: #ef4444;
    letter-spacing: 0.5px;
}

.paper-date {
    font-size: 6px;
    color: #94a3b8;
}

.paper-title {
    font-size: 11px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 8px;
}

.news-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.channel-tag {
    font-size: 7px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
}

.channel-tag.vnexpress {
    background: #f8fafc;
    color: #7c2d12;
    border: 1px solid #fed7aa;
}

.channel-tag.cafef {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.channel-tag.dantri {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.paper-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.paper-line {
    height: 3px;
    background: #cbd5e1;
    border-radius: 99px;
}

.paper-line.short {
    width: 60%;
}

/* Maps Visual (Advanced Google Maps 3D Mockup) */
.maps-opts-badges {
    position: absolute;
    left: 10px;
    bottom: 25%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.maps-mockup {
    position: absolute;
    right: 15px;
    bottom: -30px;
    width: 80%;
    height: 90%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: rotate(8deg) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.lotius-bento-card:hover .maps-mockup {
    transform: rotate(3deg) translateY(0);
}

.map-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.map-pins-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-pin.gray-pin {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.main-pin-wrapper {
    position: absolute;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin.red-pin {
    background: #ef4444;
    border: 2px solid #ffffff;
    box-shadow: 0 0 15px #ef4444;
    z-index: 3;
    width: 12px;
    height: 12px;
}

.pulse-ring {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.4);
    animation: mapPulse 2s infinite ease-out;
    z-index: 1;
}

.pulse-ring.delay-1 {
    animation-delay: 0.8s;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.maps-rank-card {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.maps-rank-card .rank-badge {
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    padding: 3px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.maps-rank-card .rank-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.maps-rank-card .rank-name-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.maps-rank-card .rank-title {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.maps-rank-card .verified-icon {
    width: 10px;
    height: 10px;
}

.maps-rank-card .rank-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.maps-rank-card .stars {
    font-size: 10px;
    color: #fbbf24;
    letter-spacing: -0.5px;
}

.maps-rank-card .rating-val {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================================
   SECTION 2: SERVICE ECOSYSTEM
   ========================================================================== */
.section-brand {
    z-index: 2;
}

.section-brand::before {
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-service {
    background: var(--gradient-navy);
    padding: 4rem 0;
}

.section-service__header {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.section-service__heading {
    font-weight: 700;
    width: 70%;
    font-size: 4rem;
    color: var(--text-color-white);
    text-transform: uppercase;
    line-height: 1.25;
}

.section-service__desc {
    margin-top: 1.8rem;
    max-width: 65%;
    font-weight: 400;
    font-size: 2rem;
    color: #cbd5e1;
    line-height: 1.4;
}


/* ==========================================================================
   SECTION 3: COMPARISON (AGENCY VS LOTIUS)
   ========================================================================== */
.comp-header {
    text-align: center;
    margin-bottom: 70px;
}

.comp-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
}

.comp-header h2 span {
    color: #16213e;
    background: linear-gradient(90deg, #16213e, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comp-header p {
    font-size: 17px;
    color: #4b5563;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.comp-header p b {
    color: #111827;
}


.get-project-card {
    /* margin-top: 5rem; */
}


/* ==========================================================================
   SECTION 5: FORM
   ========================================================================== */
.section-contact {
    padding-bottom: 0 !important;
}

.section-contact__wrapper {
    column-gap: 80px !important;
}

.section-contact__form {
    width: 70%;
}

.section-contact__form form {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(22, 33, 62, 0.08);
}

.section-contact__form form .elementor-form-fields-wrapper {
    row-gap: 1.2rem;
}

.section-contact__form input,
.section-contact__form select {
    width: 100% !important;
    background-color: #F8FAFC !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    font-size: 1.5rem !important;
    color: #16213e !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
}

.section-contact__form input:focus,
.section-contact__form select:focus {
    outline: none !important;
    border-color: var(--accent-blue) !important;
}

.section-contact__form label {
    margin-bottom: 0.8rem !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.section-contact__form .elementor-button {
    margin-top: 1.8rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 600 !important;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary-brand);
    transition: all .3s ease;
}

.section-contact__form .elementor-button:hover {
    background: var(--primary-brand);
    transform: translateY(-2px);
    filter: brightness(1.05);
    opacity: 0.8;
}

.section-contact__form .privacy-form {
    display: block;
    text-align: center;
    font-size: 1.4rem;
}

.section-contact__form .privacy-form a {
    color: var(--accent-blue);
    transition: all .3s ease;
}

.section-contact__form .privacy-form a:hover {
    color: var(--primary-brand);
}

/* Form Submission Alert Messages (Success/Error) */
.section-contact__form .elementor-message {
    margin-top: 1.8rem !important;
    padding: 1.4rem 1.8rem !important;
    border-radius: 8px !important;
    font-size: 1.45rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
    animation: contact-msg-in 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@keyframes contact-msg-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-contact__form .elementor-message-success {
    background-color: #f0fdf4 !important;
    border: 1px solid rgba(74, 222, 128, 0.4) !important;
    color: #15803d !important;
}

.section-contact__form .elementor-message-danger,
.section-contact__form .elementor-message-error {
    background-color: #fef2f2 !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
    color: #b91c1c !important;
}

/* Style SVG icon alignments inside Elementor alerts */
.section-contact__form .elementor-message svg {
    width: 1.8rem !important;
    height: 1.8rem !important;
    flex-shrink: 0 !important;
}

.section-contact__form .elementor-message-success svg {
    fill: #15803d !important;
}

.section-contact__form .elementor-message-danger svg,
.section-contact__form .elementor-message-error svg {
    fill: #b91c1c !important;
}

/* End form */
.section-contact__imgs {
    position: relative;
}

.section-contact__imgs::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: .4;
}

.section-contact__img img {
    display: block !important;
    position: relative;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 25px 35px rgba(0, 0, 0, 0.12));
    z-index: 5;
}

.stat-contact-widget {
    position: absolute !important;
    width: 300px;
    height: auto;
}

.stat-contact-widget__two {
    right: 0;
    bottom: 166px;
    width: 195px !important;
    z-index: 6;
}

.stat-contact-widget__one {
    left: 0;
    bottom: 166px;
    width: 195px !important;
    z-index: 6;
}

.stat-contact-widget>.elementor-widget-container {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.stat-contact__card {
    background: rgba(22, 33, 62, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.6rem;
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    height: 100%;
    box-shadow: 0 1.5rem 3.5rem rgba(22, 33, 62, 0.15);
}

.stat-contact__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/2026/05/favicon-logo-svg.svg");
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: 110% 110%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Hover effects */
.stat-contact__card:hover {
    transform: translateY(-0.6rem);
    border-color: rgba(83, 205, 255, 0.25);
    box-shadow: 0 2.0rem 4.0rem rgba(83, 205, 255, 0.25);
}

/* Badge block */
.stat-contact__badge {
    align-self: flex-start;
    background-color: rgba(11, 17, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.6rem;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
}

.stat-contact__dot {
    width: 0.6rem;
    height: 0.6rem;
    background-color: #007aff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0.6rem #007aff;
}

.stat-contact__dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007aff;
    border-radius: 50%;
    animation: stat-ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes stat-ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.stat-contact__badge-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* Big number */
.stat-contact__number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 30%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.8rem 0 0 0;
    z-index: 1;
    letter-spacing: -0.1rem;
}

.stat-contact__card--right .stat-contact__number {
    background: linear-gradient(135deg, #ffffff 30%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title */
.stat-contact__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    z-index: 1;
}

/* Description */
.stat-contact__desc {
    font-size: 1.2rem;
    line-height: 1.45;
    color: #94a3b8;
    margin: 0;
    z-index: 1;
}

/* --- Mobile / Tablet responsive --- */
@media screen and (max-width: 767px) {
    .stat-contact__card {
        padding: 1.8rem;
        gap: 0.8rem;
        border-radius: 1.2rem;
    }

    .stat-contact__number {
        font-size: 4.2rem;
    }

    .stat-contact__title {
        font-size: 1.6rem;
    }

    .stat-contact__desc {
        font-size: 1.3rem;
    }
}


/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

/* --- Tablet viewport (min-width: 768px) and (max-width: 1023px) - Small iPads, iPad Air/Mini --- */
@media screen and (min-width: 768px) and (max-width: 1023px) {

    /* Section 1: Bento Grid Overrides */
    .lotius-bento-container {
        margin-top: 2rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 20px;
        gap: 16px;
        padding-top: 2rem;
    }

    .lotius-bento-container::-webkit-scrollbar {
        display: none;
    }

    .card-50,
    .card-33 {
        min-width: 80%;
        width: 80%;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 30px 24px;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        min-height: 420px;
    }

    .card-50 .lotius-bento-content,
    .card-33 .lotius-bento-content {
        width: 100%;
        height: auto;
    }

    .card-50 .lotius-bento-visual,
    .card-33 .lotius-bento-visual {
        position: relative;
        width: 100%;
        height: 200px;
        max-height: 200px;
        margin-top: 20px;
        right: auto;
        bottom: auto;
        left: auto;
        top: auto;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-50 .mockup-window,
    .card-33 .phone-mockup,
    .card-33 .maps-mockup {
        width: 100%;
        height: 100%;
        transform: none !important;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 12px;
    }

    .ads-mockup-window,
    .web-mockup-window {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        transform: none !important;
    }

    .ads-opts-badges,
    .web-opts-badges,
    .maps-opts-badges {
        flex-direction: row !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.9) !important;
        width: max-content;
        gap: 8px !important;
        z-index: 20 !important;
    }

    .social-mockup-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .visual-social .float-stats-card {
        transform: scale(0.8) !important;
    }

    .visual-social .float-stats-card:not(.engagement) {
        left: -10px !important;
        top: 10px !important;
    }

    .visual-social .float-stats-card.engagement {
        right: -10px !important;
        top: 10px !important;
        left: auto !important;
    }

    .social-phone {
        width: 70% !important;
        height: 160px !important;
        bottom: 0 !important;
        right: auto !important;
        transform: none !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .news-mockup-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news-paper-back {
        width: 80% !important;
        height: 85% !important;
        right: auto !important;
        bottom: 0 !important;
        transform: rotate(-3deg) !important;
    }

    .news-paper-front {
        width: 80% !important;
        height: 90% !important;
        right: auto !important;
        bottom: 0 !important;
        transform: rotate(-6deg) !important;
    }

    .float-news-badge {
        transform: scale(0.8) !important;
        left: 0px !important;
        top: 5px !important;
    }

    .lotius-bento-card p {
        margin-bottom: 15px;
    }

    .lotius-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    /* Section 2: Service Ecosystem Overrides */
    .section-service {
        padding: 3rem 1.5rem !important;
    }

    .section-service__heading {
        width: 90%;
        font-size: 3rem;
    }

    .section-service__desc {
        max-width: 90%;
        font-size: 1.7rem;
    }



    .comp-header {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3.5rem;
    }

    .comp-header h2 {
        font-size: 3rem;
    }

    .comp-header p {
        font-size: 16px;
    }

    .get-project-card {
        /* margin-top: 5rem; */
    }

    /* ==========================================================================
   SECTION 5: FORM
   ========================================================================== */
    .section-contact {
        padding-bottom: 0 !important;
    }

    .section-contact__wrapper {
        column-gap: 15px !important;
    }

    .section-contact__form {
        width: 100%;
    }

    .section-contact__form form {
        padding: 2.5rem 1.6rem;
    }

    .section-contact__form form .elementor-form-fields-wrapper {
        row-gap: 1.2rem;
    }

    .section-contact__form input,
    .section-contact__form select {
        width: 100%;
        background-color: #F8FAFC !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 14px 16px;
        font-size: 1.5rem !important;
        color: #16213e;
        transition: all 0.3s ease;
        font-family: inherit;
    }



    .section-contact__form input:focus,
    .section-contact__form select:focus {
        outline: none !important;
        border-color: var(--accent-blue) !important;
    }

    .section-contact__form label {
        margin-bottom: 1rem !important;
        font-size: 1.4rem;
        line-height: 1.35;
    }

    .section-contact__form .elementor-button {
        margin-top: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
        font-size: 1.6rem;
        text-transform: uppercase;
        font-weight: 600 !important;
        border-radius: 8px;
        color: #ffffff;
        background: var(--primary-brand);
        transition: all .3s ease;
    }

    .section-contact__form .privacy-form {
        display: block;
        text-align: center;
        font-size: 1.4rem;
    }

    /* End form */


    .section-contact__imgs {
        align-self: flex-end !important;
    }

    .stat-contact-widget {
        position: absolute !important;
        width: 300px;
        height: auto;
    }

    .stat-contact__card {
        padding: 12px;
    }

    .stat-contact-widget__two {
        right: 0;
        bottom: 90px;
        width: 175px !important;
        z-index: 6;
    }

    .stat-contact-widget__one {
        left: 0;
        bottom: 90px;
        width: 175px !important;
        z-index: 6;
    }

    .stat-contact__number {
        font-size: 2.4rem;
    }

    .stat-contact__title {
        font-size: 1.4rem;
    }


}

/* --- Mobile viewport (max-width: 767px) - Mobile phones and small devices --- */
@media screen and (max-width: 767px) {

    /* Section 1: Bento Grid Overrides */
    .lotius-bento-container {
        margin-top: 2rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 20px;
        gap: 16px;
        padding-top: 2rem;
    }

    .lotius-bento-container::-webkit-scrollbar {
        display: none;
    }

    .card-50,
    .card-33 {
        min-width: 85%;
        width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 24px 20px;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        min-height: 420px;
    }

    .card-50 .lotius-bento-content,
    .card-33 .lotius-bento-content {
        width: 100%;
        height: auto;
    }

    .card-50 .lotius-bento-visual,
    .card-33 .lotius-bento-visual {
        position: relative;
        width: 100%;
        height: 180px;
        max-height: 180px;
        margin-top: 20px;
        right: auto;
        bottom: auto;
        left: auto;
        top: auto;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-50 .mockup-window,
    .card-33 .phone-mockup,
    .card-33 .maps-mockup {
        width: 100%;
        height: 100%;
        transform: none !important;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 12px;
    }

    .ads-mockup-window,
    .web-mockup-window {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        transform: none !important;
    }

    .ads-opts-badges,
    .web-opts-badges,
    .maps-opts-badges {
        flex-direction: row !important;
        /* bottom: 10px !important; */
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.8) !important;
        width: max-content;
        gap: 6px !important;
        z-index: 20 !important;
    }

    .social-mockup-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .visual-social .float-stats-card {
        transform: scale(0.7) !important;
    }

    .visual-social .float-stats-card:not(.engagement) {
        left: -15px !important;
        top: 5px !important;
    }

    .visual-social .float-stats-card.engagement {
        right: -15px !important;
        top: 5px !important;
        left: auto !important;
    }

    .social-phone {
        width: 70% !important;
        height: 140px !important;
        bottom: 0 !important;
        right: auto !important;
        transform: none !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .news-mockup-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news-paper-back {
        width: 80% !important;
        height: 85% !important;
        right: auto !important;
        bottom: 0 !important;
        transform: rotate(-3deg) !important;
    }

    .news-paper-front {
        width: 80% !important;
        height: 90% !important;
        right: auto !important;
        bottom: 0 !important;
        transform: rotate(-6deg) !important;
    }

    .float-news-badge {
        transform: scale(0.75) !important;
        left: -5px !important;
        top: 0px !important;
    }

    .lotius-bento-card p {
        margin-bottom: 15px;
    }

    .lotius-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    .lotius-cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Section 2: Service Ecosystem Overrides */
    .section-service {
        padding: 4rem 1rem;
    }

    .section-service__heading {
        width: 100%;
        font-size: 2.2rem;
        line-height: 1.3;
        margin: 0;
    }

    .section-service__desc {
        max-width: 100%;
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0;
    }



    .comp-header {
        margin-bottom: 1rem;
    }

    .comp-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .comp-header p {
        font-size: 1.4rem;
    }

    .get-project-card {
        /* margin-top: 3rem; */
    }



    /* ==========================================================================
   SECTION 5: FORM
   ========================================================================== */
    .section-contact {
        padding-bottom: 0 !important;
    }

    .section-contact__wrapper {
        margin-top: 40px;
        flex-direction: column-reverse !important;
        column-gap: 15px !important;
    }

    .section-contact__form {
        width: 100%;
    }

    .section-contact__form form {
        padding: 2.5rem 1.6rem;
    }

    .section-contact__form form .elementor-form-fields-wrapper {
        row-gap: 1.2rem;
    }

    .section-contact__form input,
    .section-contact__form select {
        width: 100%;
        background-color: #F8FAFC !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 14px 16px;
        font-size: 1.5rem !important;
        color: #16213e;
        transition: all 0.3s ease;
        font-family: inherit;
    }



    .section-contact__form input:focus,
    .section-contact__form select:focus {
        outline: none !important;
        border-color: var(--accent-blue) !important;
    }

    .section-contact__form label {
        margin-bottom: 1rem !important;
        font-size: 1.4rem;
        line-height: 1.35;
    }

    .section-contact__form .elementor-button {
        margin-top: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
        font-size: 1.6rem;
        text-transform: uppercase;
        font-weight: 600 !important;
        border-radius: 8px;
        color: #ffffff;
        background: var(--primary-brand);
        transition: all .3s ease;
    }

    .section-contact__form .privacy-form {
        display: block;
        text-align: center;
        font-size: 1.4rem;
    }

    /* End form */


    .section-contact__imgs {
        margin-top: 30px !important;
        align-self: flex-end !important;
    }

    .stat-contact-widget {
        position: absolute !important;
        width: 300px;
        height: auto;
    }

    .stat-contact__card {
        padding: 12px;
    }

    .stat-contact-widget__two {
        right: 0;
        bottom: 90px;
        width: fit-content !important;
        z-index: 6;
    }

    .stat-contact-widget__one {
        left: 0;
        bottom: 90px;
        width: fit-content !important;
        z-index: 6;
    }

    .stat-contact__number {
        font-size: 2.4rem;
    }

    .stat-contact__title {
        font-size: 1.4rem;
    }

    .stat-contact__desc {
        display: none;
    }

}

/* ==========================================================================
   SECTION: COMPARISON LOOP SLIDE BACKGROUND
   ========================================================================== */
.comparison-section__bg {
    position: relative;
    background-color: #f8fafc;
    z-index: 1;
}

.comparison-section__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2026/06/bg-slide-loop-item.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .comparison-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 767px) {
    .comparison-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}




.section-contact {
    position: relative;
    z-index: 1;
}

.section-contact::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("/wp-content/uploads/2026/06/bg-section-contact-02.webp");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
    background-position: center center;
    filter: blur(5px);
}