html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   FLOATING NAVBAR
========================= */
.floating-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 26px 42px;
    pointer-events: none;
}

.floating-navbar .nav-left,
.floating-navbar .nav-right {
    pointer-events: auto;
}

.logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.logo-wrap::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle, rgba(18, 122, 44, 0.18), transparent 60%),
        radial-gradient(circle, rgba(255, 128, 0, 0.12), transparent 70%);
    filter: blur(18px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.site-logo {
    width: 180px;
    height: auto;
    object-fit: contain;

    /* subtle base visibility */
    filter:
        brightness(1.08)
        contrast(1.05)
        drop-shadow(0 0 6px rgba(18, 122, 44, 0.35))
        drop-shadow(0 0 10px rgba(255, 128, 0, 0.18));

    transition: all 0.4s ease;
}

.logo-wrap:hover .site-logo {
    filter:
        brightness(1.15)
        contrast(1.08)
        drop-shadow(0 0 10px rgba(18, 122, 44, 0.55))
        drop-shadow(0 0 18px rgba(255, 140, 0, 0.35));

    transform: scale(1.03);
}
/* =========================
   MENU BUTTON
========================= */
.menu-toggle-btn {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

.menu-toggle-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18, 103, 46, 0.18), rgba(255, 115, 0, 0.14));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.menu-toggle-btn:hover::before {
    opacity: 1;
}

.menu-toggle-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 136, 0, 0.45);
    box-shadow:
        0 0 18px rgba(255, 128, 0, 0.18),
        0 0 24px rgba(19, 122, 44, 0.12),
        0 16px 40px rgba(0,0,0,0.45);
}

.menu-text,
.menu-icon {
    position: relative;
    z-index: 2;
}

.menu-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-icon {
    width: 26px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.35s ease;
}

.menu-toggle-btn:hover .menu-icon span:nth-child(1) {
    width: 70%;
    background: #ff9a1f;
}

.menu-toggle-btn:hover .menu-icon span:nth-child(2) {
    width: 100%;
    background: #ffffff;
}

.menu-toggle-btn:hover .menu-icon span:nth-child(3) {
    width: 80%;
    align-self: flex-end;
    background: #1c9c46;
}

/* =========================
   SIDEBAR OVERLAY
========================= */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1090;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   SIDEBAR MENU
========================= */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 92%;
    height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255, 136, 0, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(23, 134, 59, 0.14), transparent 35%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    z-index: 1100;
    padding: 28px 28px 40px;
    transition: right 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
}

.sidebar-menu.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 5;
}

/* hover effect */
.close-btn:hover {
    color: #ff8c1a;
    border-color: rgba(255,140,26,0.5);
    transform: rotate(90deg) scale(1.1);
    box-shadow:
        0 0 12px rgba(255,140,26,0.25),
        0 0 18px rgba(28,156,70,0.15);
}

/* =========================
   SIDEBAR LINKS
========================= */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 80px;
}

.sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 20px 16px 24px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.015);
    transition: all 0.35s ease;
    letter-spacing: 0.02em;
    isolation: isolate;
    z-index: 1;
}

/* subtle animated shining border feel */
.sidebar-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.04) 0%,
        rgba(28,156,70,0.18) 20%,
        rgba(255,140,26,0.16) 40%,
        rgba(255,255,255,0.05) 60%,
        rgba(28,156,70,0.14) 80%,
        rgba(255,255,255,0.04) 100%
    );
    background-size: 220% 220%;
    animation: subtleBorderShift 6s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

/* background glow on hover */
.sidebar-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(18, 122, 44, 0.18),
        rgba(255, 128, 0, 0.14)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

/* this is now the left accent line, not across the text */
.sidebar-link span.link-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.35s ease;
}

.sidebar-link .link-accent {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1da64a, #ff8c1a);
    transform: translateY(-50%);
    transition: width 0.35s ease;
    z-index: 1;
}

.sidebar-link:hover {
    color: #ffffff;
    padding-left: 34px;
    transform: translateX(-6px);
    border-color: rgba(255, 136, 0, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 10px 20px rgba(0,0,0,0.28);
}

.sidebar-link:hover::after {
    opacity: 1;
}

.sidebar-link:hover .link-accent {
    width: 30px;
}

.sidebar-link:hover span.link-text {
    transform: translateX(18px);
}

@keyframes subtleBorderShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.sidebar-bottom-glow {
    width: 100%;
    height: 120px;
    margin-top: 40px;
    background:
        radial-gradient(circle at center, rgba(255, 140, 26, 0.2), transparent 40%),
        radial-gradient(circle at center, rgba(29, 166, 74, 0.15), transparent 60%);
    filter: blur(20px);
    opacity: 0.8;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55)),
        rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 120px 20px 60px;
}

.hero-title {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    white-space: nowrap;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
}

/* tablet */
@media (max-width: 991px) {
    .hero-inner {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: clamp(2.1rem, 6vw, 3.6rem);
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* mobile */
@media (max-width: 575px) {
    .hero-section {
        min-height: 100vh;
        padding: 0 16px;
    }

    .hero-inner {
        padding: 110px 10px 50px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        line-height: 1.08;
        white-space: normal;
    }

    .hero-subtitle {
        margin-top: 14px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .floating-navbar {
        padding: 20px 18px;
        align-items: center;
    }

    .site-logo {
        width: 140px;
    }

    .menu-toggle-btn {
        padding: 12px 16px;
        gap: 10px;
    }

    .menu-text {
        font-size: 0.85rem;
    }

    .sidebar-menu {
        width: 360px;
        padding: 24px 20px 32px;
    }

    .sidebar-link {
        font-size: 1.02rem;
        padding: 14px 16px;
    }

    .hero-section {
        padding-top: 130px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 4rem);
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 575px) {
    .floating-navbar {
        padding: 18px 14px;
    }

    .site-logo {
        width: 120px;
    }

    .menu-text {
        display: inline-block;
        font-size: 0.78rem;
    }

    .menu-toggle-btn {
        padding: 11px 14px;
        border-radius: 999px;
    }

    .menu-icon {
        width: 22px;
        height: 16px;
    }

    .sidebar-menu {
        width: 100%;
        max-width: 100%;
        right: -100%;
        border-left: 0;
    }

    .sidebar-link {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 90vh;
        padding: 120px 0 70px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .hero-kicker {
        font-size: 0.76rem;
        letter-spacing: 0.14em;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* =========================
   ABOUT SECTION 1
   SHARP / NAVBAR-ALIGNED STYLE
========================= */
.about-profiles-section {
    padding: 72px 0 48px;
    background:
        linear-gradient(180deg, #030303 0%, #070707 100%);
    position: relative;
}

.about-profiles-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 300px;
    height: 260px;
    background: radial-gradient(circle, rgba(18, 122, 44, 0.10), transparent 68%);
    filter: blur(28px);
    pointer-events: none;
}

.about-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 280px));
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}


.about-profile-item {
    padding: 24px 16px 20px;
}

.about-profile-item {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px 16px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    min-height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-profile-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
    transition: width 0.35s ease;
}

.about-profile-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 0, 0.28);
    box-shadow:
        0 14px 34px rgba(0,0,0,0.34),
        inset 0 0 0 1px rgba(255,255,255,0.02);
}

.about-profile-item:hover::before {
    width: 86px;
}

.about-profile-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.about-profile-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    color: #ff9a1f;
    display: flex;
    align-items: center;
    justify-content: center;
    filter:
        drop-shadow(0 0 8px rgba(255, 140, 0, 0.14))
        drop-shadow(0 0 8px rgba(18, 122, 44, 0.10));
}

.about-profile-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.about-profile-text {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 280px;
}

/* =========================
   ABOUT SECTION 2
   CENTERED INDUSTRIAL FEATURE PANEL
========================= */
.about-manual-section {
    padding: 26px 0 90px;
    background: #070707;
}

.about-manual-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.about-manual-book {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    background:
        linear-gradient(180deg, #0c0c0c 0%, #111111 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(0,0,0,0.34),
        inset 0 0 0 1px rgba(255,255,255,0.02);
    min-height: 520px;
}

.about-manual-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
}

.about-manual-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.35) 100%);
}

.about-manual-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.08);
}

.about-manual-content {
    padding: 48px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
}

.about-manual-kicker-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.about-manual-line {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
    flex-shrink: 0;
}

.about-manual-kicker {
    margin: 0;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
}

.about-manual-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 480px;
}

.about-manual-text {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 470px;
}

.about-manual-text:last-child {
    margin-bottom: 0;
}

/* tablet */
@media (max-width: 991px) {
    .about-profiles-section {
        padding: 64px 0 38px;
    }

    .about-profiles-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        gap: 14px;
    }

    .about-profile-item {
        max-width: 680px;
        padding: 24px 20px;
    }

    .about-profile-text {
        max-width: 100%;
    }

    .about-manual-section {
        padding: 18px 0 72px;
    }

    .about-manual-book {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-manual-image {
        min-height: 340px;
    }

    .about-manual-content {
        max-width: 100%;
        padding: 38px 28px;
    }

    .about-manual-title,
    .about-manual-text {
        max-width: 100%;
    }
}

/* mobile */
@media (max-width: 575px) {
    .about-profiles-section {
        padding: 56px 0 30px;
    }

    .about-profile-item {
        padding: 22px 16px 20px;
    }

    .about-profile-title {
        font-size: 1.05rem;
    }

    .about-profile-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .about-profile-text {
        font-size: 0.88rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .about-manual-section {
        padding: 14px 0 62px;
    }

    .about-manual-image {
        min-height: 260px;
    }

    .about-manual-content {
        padding: 28px 18px;
    }

    .about-manual-kicker {
        font-size: 0.66rem;
        letter-spacing: 0.11em;
    }

    .about-manual-line {
        width: 30px;
    }

    .about-manual-title {
        font-size: 1.45rem;
        margin-bottom: 14px;
    }

    .about-manual-text {
        font-size: 0.9rem;
        line-height: 1.62;
        margin-bottom: 12px;
    }
}

/* =========================
   PRODUCT / WHY CHOOSE US
========================= */
.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-visual-frame {
    position: relative;
    width: 100%;
    height: 320px; /* adjust if needed */
    overflow: hidden;
    background: #000;
}

.product-innovation-section {
    position: relative;
    padding: 60px 0 110px;
    background:
        radial-gradient(circle at top left, rgba(20, 122, 50, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 136, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #050505 0%, #090909 100%);
    overflow: hidden;
}

.product-innovation-section::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.10), transparent 65%);
    filter: blur(28px);
    pointer-events: none;
}

.product-innovation-heading {
    max-width: 900px;
    margin: 0 auto 54px;
}

.product-innovation-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.product-innovation-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.06;
    font-weight: 800;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.product-innovation-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

.product-innovation-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 18px;
    align-items: stretch;
}

.product-panel {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    padding: 34px 30px 30px;
    overflow: hidden;
    box-shadow:
        0 18px 45px rgba(0,0,0,0.28),
        inset 0 0 0 1px rgba(255,255,255,0.015);
}

.product-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(18,122,44,0.04), transparent 34%, transparent 68%, rgba(255,136,0,0.04));
    pointer-events: none;
}

.product-panel-topline {
    width: 78px;
    height: 2px;
    background: linear-gradient(90deg, #1d9d48, #ff8c1a);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.product-panel-label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.product-panel-label-line {
    width: 26px;
    height: 2px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

.product-panel-label {
    margin: 0;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-panel-title {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 560px;
}

.product-panel-text {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.78);
    font-size: 0.97rem;
    line-height: 1.75;
    max-width: 640px;
}

.product-panel-text:last-child {
    margin-bottom: 0;
}

.product-feature-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.product-feature-box {
    padding: 16px 14px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-feature-value {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-feature-name {
    color: rgba(255,255,255,0.64);
    font-size: 0.82rem;
    line-height: 1.45;
}

.product-feature-row {
    margin: 24px 0 26px;
}

.product-visual-wrap {
    margin-bottom: 26px;
}

.product-panel-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-choose-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.why-choose-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.why-choose-item:first-child {
    border-top: 0;
    padding-top: 4px;
}

.why-choose-number {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.30);
    text-stroke: 1px rgba(255,255,255,0.30);
}

.why-choose-content h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.why-choose-content p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* tablet */
@media (max-width: 991px) {
    .product-innovation-section {
        padding: 90px 0 90px;
    }

    .product-innovation-heading {
        margin-bottom: 42px;
    }

    .product-innovation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-panel {
        padding: 30px 24px 24px;
    }

    .product-panel-title {
        max-width: 100%;
    }

    .product-panel-text {
        max-width: 100%;
    }

    .product-feature-row {
        grid-template-columns: 1fr;
    }
}

/* mobile */
@media (max-width: 575px) {
    .product-innovation-section {
        padding: 72px 0 72px;
    }

    .product-innovation-heading {
        margin-bottom: 34px;
    }

    .product-innovation-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .product-innovation-title {
        font-size: 1.75rem;
        line-height: 1.12;
    }

    .product-innovation-intro {
        font-size: 0.93rem;
        line-height: 1.7;
    }

    .product-panel {
        padding: 24px 18px 20px;
    }

    .product-panel-topline {
        width: 60px;
        margin-bottom: 14px;
    }

    .product-panel-title {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .product-panel-text {
        font-size: 0.9rem;
        line-height: 1.68;
        margin-bottom: 12px;
    }

    .why-choose-item {
        grid-template-columns: 42px 1fr;
        gap: 10px;
        padding: 14px 0;
    }

    .why-choose-number {
        font-size: 1rem;
    }

    .why-choose-content h4 {
        font-size: 0.95rem;
    }

    .why-choose-content p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .product-feature-box {
        min-height: auto;
        padding: 14px 12px;
    }
}

.product-visual-wrap {
    position: relative;
    z-index: 1;
    margin: 26px 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-visual-frame {
    position: relative;
    width: min(100%, 520px);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 65%),
        linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.008) 100%);
    overflow: hidden;
}

.product-visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(28,156,70,0.10), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(255,140,26,0.10), transparent 35%);
    pointer-events: none;
}

.product-visual-frame img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 18px 34px rgba(0,0,0,0.35))
        drop-shadow(0 0 18px rgba(255,140,26,0.08));
}

.why-choose-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.why-choose-item:first-child {
    border-top: 0;
    padding-top: 4px;
}

.why-choose-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9a1f;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.018);
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.01),
        0 8px 20px rgba(0,0,0,0.18);
}

.why-choose-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

@media (max-width: 575px) {
    .product-visual-wrap {
        margin: 22px 0 18px;
    }

    .product-visual-frame {
        min-height: 220px;
        padding: 16px 12px;
    }

    .product-visual-frame img {
        max-height: 220px;
    }

    .why-choose-item {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .why-choose-icon {
        width: 34px;
        height: 34px;
    }

    .why-choose-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* =========================
   ECOSTOVE DISCOVERY SECTION
========================= */
.ecostove-discovery-section {
    position: relative;
    padding: 60px 0 110px;
    background:
        radial-gradient(circle at left top, rgba(18, 122, 44, 0.08), transparent 28%),
        radial-gradient(circle at right bottom, rgba(255, 136, 0, 0.08), transparent 26%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    overflow: hidden;
}

.ecostove-showcase-header {
    max-width: 900px;
    margin: 0 auto 56px;
}

.ecostove-showcase-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.ecostove-showcase-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.06;
    font-weight: 800;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.ecostove-showcase-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

.ecostove-discovery-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.ecostove-discovery-content {
    position: relative;
    max-width: 520px;
}

.ecostove-discovery-line {
    width: 68px;
    height: 2px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
}

.ecostove-discovery-label {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.76);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ecostove-discovery-heading {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.08;
    font-weight: 800;
}

.ecostove-discovery-text {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.76);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 500px;
}

.ecostove-learn-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    background: linear-gradient(135deg, #ff9800, #ff7a00);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    transition: all 0.35s ease;
    box-shadow:
        0 12px 28px rgba(255, 128, 0, 0.22),
        0 0 0 1px rgba(255,255,255,0.02);
}

.ecostove-learn-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 34px rgba(255, 128, 0, 0.28),
        0 0 18px rgba(28,156,70,0.12);
}

.ecostove-learn-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* =========================
   RIGHT VISUAL - VIDEO VERSION
========================= */
.ecostove-discovery-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 430px;
    padding: 0;
}

/* wrapper carries the glow */
.ecostove-video-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* natural glow behind video */
.ecostove-video-wrap::before {
    content: "";
    position: absolute;
    inset: -55px -45px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 24% 35%, rgba(28, 156, 70, 0.34), transparent 46%),
        radial-gradient(ellipse at 78% 68%, rgba(255, 140, 26, 0.32), transparent 48%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.08), transparent 55%);
    filter: blur(42px);
    opacity: 1;
}

/* card stays clean */
.ecostove-video-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 22px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 38px rgba(0,0,0,0.30),
        0 0 0 1px rgba(255,255,255,0.02);
}

.ecostove-feature-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .ecostove-discovery-visual {
        min-height: 390px;
    }

    .ecostove-video-wrap {
        max-width: 500px;
    }

    .ecostove-video-wrap::before {
        inset: -42px -30px;
        filter: blur(32px);
        background:
            radial-gradient(ellipse at 24% 35%, rgba(28, 156, 70, 0.28), transparent 46%),
            radial-gradient(ellipse at 78% 68%, rgba(255, 140, 26, 0.26), transparent 48%),
            radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.06), transparent 55%);
    }

    .ecostove-video-card {
        max-width: 460px;
        border-radius: 20px;
    }

    .ecostove-feature-video {
        height: 290px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 575px) {
    .ecostove-discovery-visual {
        min-height: auto;
        margin-top: 18px;
    }

    .ecostove-video-wrap {
        max-width: 100%;
    }

    .ecostove-video-wrap::before {
        inset: -24px -16px;
        filter: blur(20px);
        background:
            radial-gradient(ellipse at 24% 35%, rgba(28, 156, 70, 0.22), transparent 46%),
            radial-gradient(ellipse at 78% 68%, rgba(255, 140, 26, 0.20), transparent 48%);
    }

    .ecostove-video-card {
        max-width: 100%;
        border-radius: 16px;
    }

    .ecostove-feature-video {
        height: 220px;
    }
}

/* tablet */
@media (max-width: 991px) {
    .ecostove-discovery-section {
        padding: 90px 0 90px;
    }

    .ecostove-showcase-header {
        margin-bottom: 40px;
    }

    .ecostove-discovery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ecostove-discovery-content {
        max-width: 100%;
    }

    .ecostove-discovery-text {
        max-width: 100%;
    }

    .ecostove-discovery-visual {
        min-height: 560px;
    }

    .ecostove-visual-orbit {
        width: 560px;
        height: 540px;
        margin: 0 auto;
    }

    .ecostove-main-circle {
        width: 420px;
        height: 420px;
        left: 70px;
        top: 52px;
    }

    .ecostove-photo-top {
        width: 235px;
        height: 250px;
        top: 88px;
        left: 180px;
    }

    .ecostove-photo-bottom {
        width: 220px;
        height: 210px;
        left: 185px;
        bottom: 40px;
    }

    .ecostove-photo-side {
        width: 220px;
        height: 220px;
        right: 0;
        top: 220px;
    }

    .ecostove-accent-ring {
        width: 480px;
        height: 480px;
        left: 38px;
        top: 22px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .ecostove-discovery-section {
        padding: 72px 0 72px;
    }

    .ecostove-showcase-header {
        margin-bottom: 28px;
    }

    .ecostove-showcase-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.13em;
    }

    .ecostove-showcase-title {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .ecostove-showcase-intro {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .ecostove-discovery-heading {
        font-size: 1.42rem;
    }

    .ecostove-discovery-text {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .ecostove-learn-btn {
        padding: 13px 18px;
        font-size: 0.9rem;
    }

    .ecostove-discovery-visual {
        min-height: 420px;
    }

    .ecostove-visual-orbit {
        width: 100%;
        height: 400px;
    }

    .ecostove-main-circle {
        width: 290px;
        height: 290px;
        left: 50%;
        top: 40px;
        transform: translateX(-50%);
    }

    .ecostove-photo-top {
        width: 150px;
        height: 165px;
        top: 62px;
        left: 50%;
        transform: translateX(-14%);
    }

    .ecostove-photo-bottom {
        width: 150px;
        height: 145px;
        left: 50%;
        bottom: 32px;
        transform: translateX(-48%);
        border-width: 5px;
    }

    .ecostove-photo-side {
        width: 145px;
        height: 145px;
        right: 8px;
        top: 165px;
        border-left-width: 4px;
        border-radius: 0 90px 90px 0;
    }

    .ecostove-accent-ring {
        width: 330px;
        height: 330px;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }

    .ecostove-accent-glow-green {
        width: 90px;
        height: 90px;
        left: 24px;
        top: 30px;
    }

    .ecostove-accent-glow-orange {
        width: 110px;
        height: 110px;
        right: 0;
        bottom: 10px;
    }
}

/* =========================
   HOW IT WORKS - VIDEO SERIES
========================= */
.how-it-works-video-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at top left, rgba(18, 122, 44, 0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255, 136, 0, 0.08), transparent 24%),
        linear-gradient(180deg, #040404 0%, #090909 100%);
    overflow: hidden;
}

.how-it-works-header {
    max-width: 900px;
    margin: 0 auto 52px;
}

.how-it-works-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.how-it-works-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.06;
    font-weight: 800;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

.how-it-works-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    justify-content: center;
    gap: 18px;
    align-items: stretch;
}

.how-video-card {
    width: 360px;
    display: flex;  
    flex-direction: column;     
    height: 100%; 
    text-decoration: none;
    color: inherit;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow:
        0 18px 40px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.01);
}

.how-video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.30);
    box-shadow:
        0 24px 48px rgba(0,0,0,0.3),
        0 0 18px rgba(28,156,70,0.08);
}

.how-video-thumb {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.how-video-real {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    padding: 0;
}

.how-video-real video {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    background: #000;
}

.how-video-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 7px 12px;
    background: rgba(0,0,0,0.56);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
}

.how-video-body {
    padding: 18px 16px 16px;
    display: flex;              /* FIX */
    flex-direction: column;     /* FIX */
    flex-grow: 1; 
}

.how-video-body h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.how-video-body p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.65;
}

.how-it-works-footer {
    margin-top: 34px;
}

.how-it-works-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    background: linear-gradient(135deg, #ff9800, #ff7a00);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.35s ease;
    box-shadow:
        0 12px 28px rgba(255, 128, 0, 0.22),
        0 0 0 1px rgba(255,255,255,0.02);
}

.how-it-works-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 34px rgba(255, 128, 0, 0.28),
        0 0 18px rgba(28,156,70,0.12);
}

.how-it-works-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 991px) {
    .how-it-works-video-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px 16px;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .how-it-works-video-grid::-webkit-scrollbar {
        display: none;
    }

    .how-video-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px);
        min-width: calc(100vw - 32px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin: 0;
    }

    .how-video-real video {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }
}
/* =========================
   MOBILE SWIPE - VIDEOS
========================= */
@media (max-width: 575px) {
    .how-it-works-video-section {
        padding: 72px 0;
    }

    .how-it-works-header {
        margin-bottom: 32px;
    }

    .how-it-works-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .how-it-works-title {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .how-it-works-intro {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .how-it-works-video-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px;
        margin: 0 -16px;
        scrollbar-width: none;
    }

    .how-it-works-video-grid::-webkit-scrollbar {
        display: none;
    }

    .how-video-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px);
        min-width: calc(100vw - 32px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin: 0;
    }

    .how-video-real video {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .how-video-body {
        padding: 16px 14px 14px;
    }

    .how-video-body h3 {
        font-size: 0.95rem;
    }

    .how-video-body p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
}

/* =========================
   ECOPAY STAGE SECTION
========================= */
.ecopay-stage-section {
    position: relative;
    padding: 60px 0 100px;
    background:
        radial-gradient(circle at top right, rgba(28,156,70,0.08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255,140,26,0.08), transparent 26%),
        linear-gradient(180deg, #040404 0%, #090909 100%);
    overflow: hidden;
}

.ecopay-stage-header {
    max-width: 860px;
    margin: 0 auto 46px;
}

.ecopay-stage-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.ecopay-stage-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
}

.ecopay-stage-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

.ecopay-stage-panel {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    padding: 34px 28px 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 46px rgba(0,0,0,0.28),
        inset 0 0 0 1px rgba(255,255,255,0.015);
    overflow: hidden;
}

.ecopay-stage-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(18,122,44,0.04), transparent 35%, transparent 70%, rgba(255,136,0,0.04));
    pointer-events: none;
}

.ecopay-stage-panel-line {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 2px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
}

.ecopay-stage-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.ecopay-stage-copy p {
    margin: 0 0 12px;
    color: rgba(255,255,255,0.73);
    font-size: 0.96rem;
    line-height: 1.8;
}

.ecopay-stage-copy p:last-child {
    margin-bottom: 0;
}

/* stage area */
.ecopay-ui-stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.ecopay-ui-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;  
    padding: 14px 14px 16px;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.96) 0%, rgba(16,16,16,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 16px 30px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.015);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ecopay-ui-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,140,26,0.22);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        0 0 20px rgba(28,156,70,0.06);
}

.ecopay-ui-shot {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
}

.ecopay-ui-shot::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 54px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    z-index: 3;
}

.ecopay-ui-shot::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 72px;
    width: 22px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    z-index: 3;
}

.ecopay-ui-shot img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.45s ease, filter 0.45s ease;
    background: #0b0b0b;
}

.ecopay-ui-card:hover .ecopay-ui-shot img {
    transform: scale(1.03);
    filter: brightness(1.03);
}

.ecopay-ui-glow {
    position: absolute;
    inset: auto 18px 14px 18px;
    height: 70px;
    background:
        linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0));
    pointer-events: none;
}

.ecopay-ui-meta {
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.ecopay-ui-meta h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
}

.ecopay-ui-meta p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* LIGHTBOX */
.ecopay-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ecopay-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.ecopay-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ecopay-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 1120px);
    margin: 5vh auto 0;
    background:
        linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.48),
        inset 0 0 0 1px rgba(255,255,255,0.015);
    overflow: hidden;
}

.ecopay-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ecopay-lightbox-close:hover {
    color: #ffb15a;
    border-color: rgba(255,140,26,0.35);
    transform: rotate(90deg);
}

.ecopay-lightbox-image-wrap {
    background: #070707;
    padding: 24px 24px 12px;
}

.ecopay-lightbox-image-wrap img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: #090909;
}

.ecopay-lightbox-info {
    padding: 10px 24px 24px;
}

.ecopay-lightbox-info h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.ecopay-lightbox-info p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.94rem;
    line-height: 1.7;
}

/* tablet */
@media (max-width: 991px) {
    .ecopay-stage-section {
        padding: 90px 0 80px;
    }

    .ecopay-stage-panel {
        padding: 28px 20px 24px;
    }

    .ecopay-ui-stage {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 700px;
        margin: 0 auto;
    }

    .ecopay-ui-shot img {
        height: 280px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .ecopay-stage-section {
        padding: 72px 0 64px;
    }

    .ecopay-stage-header {
        margin-bottom: 32px;
    }

    .ecopay-stage-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .ecopay-stage-title {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .ecopay-stage-intro {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .ecopay-stage-panel {
        padding: 22px 14px 18px;
    }

    .ecopay-stage-copy p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .ecopay-ui-shot img {
        height: 210px;
    }

    .ecopay-ui-meta h3 {
        font-size: 0.95rem;
    }

    .ecopay-ui-meta p {
        font-size: 0.86rem;
        line-height: 1.62;
    }

    .ecopay-lightbox-dialog {
        width: min(94vw, 1120px);
        margin-top: 7vh;
    }

    .ecopay-lightbox-image-wrap {
        padding: 18px 18px 10px;
    }

    .ecopay-lightbox-info {
        padding: 8px 18px 18px;
    }

    .ecopay-lightbox-close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }
}

/* =========================
   PARTNERS SECTION
========================= */
.partners-section {
    position: relative;
    padding: 60px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(255,122,0,0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(28,156,70,0.10), transparent 24%),
        linear-gradient(180deg, #030303 0%, #000000 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.partners-section::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,140,26,0.16), transparent 62%);
    filter: blur(42px);
    z-index: 0;
    pointer-events: none;
}

.partners-section::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(28,156,70,0.12), transparent 62%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

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

.partners-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.partners-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
}

.partners-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.8;
}

/* Logos grid */
.partners-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* Each logo */
.partner-item {
    position: relative;
    min-height: 150px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.018) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.partner-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(28,156,70,0.06), transparent 40%, transparent 65%, rgba(255,140,26,0.07));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.partner-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
    transition: width 0.35s ease;
}

.partner-item img {
    max-width: 170px;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 0.96;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

/* Hover effect */
.partner-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,26,0.22);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.025) 100%);
    box-shadow:
        0 18px 38px rgba(0,0,0,0.28),
        0 0 18px rgba(255,140,26,0.08),
        0 0 20px rgba(28,156,70,0.05);
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-item:hover::after {
    width: 86px;
}

.partner-item:hover img {
    transform: scale(1.08);
    opacity: 1;
    filter:
        drop-shadow(0 8px 16px rgba(0,0,0,0.2))
        drop-shadow(0 0 10px rgba(255,255,255,0.04));
}

/* Tablet */
@media (max-width: 991px) {
    .partners-section {
        padding: 72px 0 72px;
    }

    .partners-intro {
        margin-bottom: 34px;
    }

    .partners-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .partner-item {
        min-height: 130px;
        padding: 18px 16px;
    }

    .partner-item img {
        max-width: 150px;
        max-height: 72px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .partners-section {
        padding: 62px 0 62px;
    }

    .partners-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .partners-title {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .partners-intro {
        font-size: 0.92rem;
        line-height: 1.72;
        margin-bottom: 28px;
    }

    .partners-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .partner-item {
        min-height: 110px;
        padding: 14px 12px;
    }

    .partner-item img {
        max-width: 125px;
        max-height: 60px;
    }
}

/* =========================
   COMPLETED PROJECTS
========================= */
.completed-projects-section {
    position: relative;
    padding: 110px 0 110px;
    background:
        radial-gradient(circle at top left, rgba(18,122,44,0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255,136,0,0.08), transparent 24%),
        linear-gradient(180deg, #040404 0%, #090909 100%);
    overflow: hidden;
}

.completed-projects-section::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,140,26,0.12), transparent 65%);
    filter: blur(34px);
    pointer-events: none;
}

.completed-projects-header {
    max-width: 900px;
    margin: 0 auto 52px;
}

.completed-projects-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.completed-projects-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
}

.completed-projects-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

.completed-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.completed-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow:
        0 16px 36px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.01);
}

.completed-project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 2px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
    transition: width 0.35s ease;
    z-index: 2;
}

.completed-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,26,0.24);
    box-shadow:
        0 24px 48px rgba(0,0,0,0.3),
        0 0 18px rgba(28,156,70,0.06);
}

.completed-project-card:hover::before {
    width: 94px;
}

.completed-project-image {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.completed-project-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.completed-project-card:hover .completed-project-image img {
    transform: scale(1.05);
    filter: brightness(1.04);
}

.completed-project-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px 18px 18px;
}

.completed-project-body h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 700;
    min-height: 48px;
}

.completed-project-body p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.68;
    min-height: 74px;
}

/* tablet */
@media (max-width: 1199px) {
    .completed-projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .completed-projects-section {
        padding: 90px 0 90px;
    }

    .completed-projects-header {
        margin-bottom: 40px;
    }

    .completed-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .completed-project-image img {
        height: 220px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .completed-projects-section {
        padding: 72px 0 72px;
    }

    .completed-projects-header {
        margin-bottom: 30px;
    }

    .completed-projects-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .completed-projects-title {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .completed-projects-intro {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .completed-projects-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .completed-project-image img {
        height: 210px;
    }

    .completed-project-body {
        padding: 18px 16px 16px;
    }

    .completed-project-body h3 {
        font-size: 0.98rem;
        min-height: auto;
    }

    .completed-project-body p {
        font-size: 0.88rem;
        line-height: 1.62;
        min-height: auto;
    }
}

/* =========================
   BLOGS + FUTURE VISION
========================= */
.insights-vision-section {
    position: relative;
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(18,122,44,0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255,136,0,0.08), transparent 24%),
        linear-gradient(180deg, #040404 0%, #090909 100%);
    overflow: hidden;
}

.insights-vision-header {
    max-width: 900px;
    margin: 0 auto 48px;
}

.insights-vision-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.insights-vision-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 800;
}

.insights-vision-intro {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

.insights-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.insight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow:
        0 16px 36px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.01);
    isolation: isolate;
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(28,156,70,0.07), transparent 35%, transparent 65%, rgba(255,140,26,0.07));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.insight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,140,26,0.24);
    box-shadow:
        0 24px 48px rgba(0,0,0,0.3),
        0 0 20px rgba(255,140,26,0.08),
        0 0 18px rgba(28,156,70,0.05);
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card-line {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 2px;
    background: linear-gradient(90deg, #1c9c46, #ff8c1a);
    transition: width 0.35s ease;
    margin: 0 0 22px;
}

.insight-card:hover .insight-card-line {
    width: 94px;
}

.insight-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 26px 24px 24px;
}

.insight-card-tag {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.insight-card-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 700;
    min-height: 58px;
}

.insight-card-content > p:not(.insight-card-tag) {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.72);
    font-size: 0.93rem;
    line-height: 1.75;
    flex-grow: 1;
}

.insight-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.insight-card-link svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-card-link {
    color: #ffb15a;
    transform: translateX(2px);
}

.insight-card:hover .insight-card-link svg {
    transform: translateX(4px);
}

.insight-card-image {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.insight-card-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.05);
    filter: brightness(1.04);
}

/* =========================
   MOBILE SWIPE - BLOGS
========================= */
@media (max-width: 575px) {
    .insights-vision-section {
        padding: 72px 0 64px;
    }

    .insights-vision-header {
        margin-bottom: 28px;
    }

    .insights-vision-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .insights-vision-title {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .insights-vision-intro {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .insights-vision-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px;
        margin: 0 -16px;
        scrollbar-width: none;
    }

    .insights-vision-grid::-webkit-scrollbar {
        display: none;
    }

    .insight-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        min-width: calc(100vw - 32px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin: 0;
    }

    .insight-card-image img {
        height: 220px;
    }

    .insight-card-content {
        padding: 22px 18px 20px;
    }

    .insight-card-content h3 {
        font-size: 1rem;
        min-height: auto;
    }

    .insight-card-content > p:not(.insight-card-tag) {
        font-size: 0.88rem;
        line-height: 1.65;
    }
}

@media (max-width: 991px) {
    .insights-vision-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px 16px;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .insights-vision-grid::-webkit-scrollbar {
        display: none;
    }

    .insight-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        min-width: calc(100vw - 32px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin: 0;
    }
}

/* =========================
   CTA
========================= */
.final-cta-section {
    position: relative;
    padding: 30px 0 0;
    background: linear-gradient(180deg, #090909 0%, #050505 100%);
    overflow: hidden;
}

/* make section truly edge-to-edge */
.final-cta-section .container {
    max-width: 100% !important;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* make the CTA itself full width */
.final-cta-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 56px 34px 70px;
    background:
        linear-gradient(135deg, rgba(14,14,14,0.96), rgba(22,22,22,0.98));
    border: none;
    box-shadow: none;
    overflow: hidden;
    isolation: isolate;
}

.final-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(28,156,70,0.05), transparent 35%, transparent 65%, rgba(255,140,26,0.06));
    pointer-events: none;
    z-index: 0;
}

.final-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(34px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.final-cta-glow-green {
    width: 180px;
    height: 180px;
    top: -40px;
    left: -30px;
    background: rgba(28,156,70,0.18);
}

.final-cta-glow-orange {
    width: 220px;
    height: 220px;
    right: -50px;
    bottom: -60px;
    background: rgba(255,140,26,0.18);
}

.final-cta-kicker,
.final-cta-title,
.final-cta-text,
.final-cta-actions {
    position: relative;
    z-index: 1;
}

.final-cta-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.final-cta-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.06;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.final-cta-text {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 22px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    transition: all 0.35s ease;
}

.final-cta-btn-primary {
    background: linear-gradient(135deg, #ff9800, #ff7a00);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(255,128,0,0.22);
}

.final-cta-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow:
        0 18px 34px rgba(255,128,0,0.28),
        0 0 18px rgba(28,156,70,0.1);
}

.final-cta-btn-secondary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
}

.final-cta-btn-secondary:hover {
    color: #ffffff;
    transform: translateY(-4px);
    border-color: rgba(255,140,26,0.3);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 16px 30px rgba(0,0,0,0.24);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    position: relative;
    padding: 80px 0 22px;
    background:
        radial-gradient(circle at top left, rgba(28,156,70,0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(255,140,26,0.12), transparent 24%),
        linear-gradient(135deg, #040404 0%, #0a0a0a 45%, #111111 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -90px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(28,156,70,0.10), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,140,26,0.12), transparent 65%);
    filter: blur(42px);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 1.2fr 0.9fr;
    gap: 30px;
    align-items: start;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-column {
    min-width: 0;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-link {
    display: inline-block;
    width: fit-content;
}

.footer-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 10px;
}

.footer-brand-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.footer-brand-links a:hover {
    color: #ffb15a;
}

.footer-brand-divider {
    color: rgba(255,255,255,0.32);
    font-size: 0.95rem;
    line-height: 1;
}

.footer-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 0.96rem;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffb15a;
    transform: translateX(4px);
}

.footer-contact-block {
    margin-bottom: 18px;
}

.footer-contact-block:last-child {
    margin-bottom: 0;
}

.footer-contact-label {
    margin: 0 0 7px;
    color: #ffb15a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-text {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 0.96rem;
    line-height: 1.75;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: #ffb15a;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social-link {
    width: 40px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    transition: all 0.35s ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    color: #ffb15a;
    border-color: rgba(255,140,26,0.26);
    box-shadow:
        0 16px 28px rgba(0,0,0,0.26),
        0 0 18px rgba(28,156,70,0.08);
}

.site-footer-bottom {
    padding-top: 18px;
    text-align: center;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem;
    line-height: 1.7;
}

.site-footer-bottom a {
    color: #ffb15a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-bottom a:hover {
    color: #ffffff;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .site-footer {
        padding: 70px 0 22px;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
    }

    .footer-logo {
        width: 170px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 575px) {
    .site-footer {
        padding: 58px 0 20px;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
        padding-bottom: 26px;
    }

    .footer-logo {
        width: 145px;
    }

    .footer-brand-links {
        column-gap: 8px;
        row-gap: 6px;
    }

    .footer-brand-links a {
        font-size: 0.88rem;
    }

    .footer-brand-divider {
        font-size: 0.84rem;
    }

    .footer-title {
        font-size: 0.96rem;
        margin-bottom: 14px;
    }

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a,
    .footer-contact-text {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .footer-contact-label {
        font-size: 0.72rem;
        margin-bottom: 6px;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .site-footer-bottom p {
        font-size: 0.84rem;
        line-height: 1.65;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c9c46, #ff8c1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(28, 156, 70, 0.28);
    z-index: 5000;
    text-decoration: none;
    transition: all 0.35s ease;
    animation: whatsappPulse 2.4s infinite;
}

.floating-whatsapp i {
    font-size: 26px;
    line-height: 1;
}

.floating-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 22px 38px rgba(0, 0, 0, 0.3),
        0 0 22px rgba(255, 140, 26, 0.28);
}

@keyframes whatsappPulse {
    0% {
        box-shadow:
            0 16px 32px rgba(0, 0, 0, 0.25),
            0 0 0 0 rgba(28, 156, 70, 0.26);
    }
    70% {
        box-shadow:
            0 16px 32px rgba(0, 0, 0, 0.25),
            0 0 0 14px rgba(28, 156, 70, 0);
    }
    100% {
        box-shadow:
            0 16px 32px rgba(0, 0, 0, 0.25),
            0 0 0 0 rgba(28, 156, 70, 0);
    }
}

@media (max-width: 767px) {
    .floating-whatsapp {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 16px;
    }

    .floating-whatsapp i {
        font-size: 22px;
    }
}

/* =========================
   BLOG PAGE
========================= */
.blog-page-section {
    position: relative;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(28,156,70,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255,140,26,0.08), transparent 24%),
        linear-gradient(180deg, #040404 0%, #0a0a0a 100%);
    overflow: hidden;
}

.blog-page-section::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255,140,26,0.12), transparent 65%);
    filter: blur(34px);
    pointer-events: none;
}

.blog-page-shell {
    position: relative;
    z-index: 1;
}

.blog-page-hero {
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
}

.blog-page-kicker {
    margin: 0 0 12px;
    color: #ffb15a;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-page-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-page-intro {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 340px;
    gap: 26px;
    align-items: start;
}

.blog-page-main {
    min-width: 0;
}

.blog-page-article {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.24),
        inset 0 0 0 1px rgba(255,255,255,0.01);
    overflow: hidden;
}

.blog-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    padding: 18px 24px 0;
}

.blog-page-meta-item {
    color: rgba(255,255,255,0.62);
    font-size: 0.84rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.blog-page-meta-item strong {
    color: #ffffff;
    font-weight: 600;
}

.blog-page-featured-image {
    overflow: hidden;
    margin: 18px 24px 0;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 36px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.01);
}

.blog-page-featured-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.blog-page-content {
    padding: 26px 24px 28px;
}

.blog-page-content h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
}

.blog-page-content p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.76);
    font-size: 1rem;
    line-height: 1.92;
}

.blog-page-highlight {
    margin: 26px 0;
    padding: 22px 20px;
    background:
        linear-gradient(135deg, rgba(28,156,70,0.08), rgba(255,140,26,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.015);
}

.blog-page-highlight p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 600;
}

.blog-page-highlight strong {
    color: #ffb15a;
}

.blog-page-sidebar {
    position: sticky;
    top: 100px;
}

.blog-side-card {
    padding: 22px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.01);
}

.blog-side-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.blog-side-card p {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.7;
}

.blog-side-link,
.blog-back-link {
    display: block;
    padding: 12px 0;
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    font-size: 0.94rem;
    line-height: 1.55;
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-side-link:hover,
.blog-back-link:hover {
    color: #ffb15a;
    transform: translateX(4px);
}

.blog-back-link {
    color: #ffffff;
    font-weight: 700;
}

.blog-side-mini {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-side-mini span {
    display: block;
    margin-bottom: 8px;
    color: #ffb15a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-side-mini p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* tablet */
@media (max-width: 991px) {
    .blog-page-section {
        padding: 96px 0 78px;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-page-sidebar {
        position: static;
    }

    .blog-page-featured-image img {
        height: 360px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .blog-page-section {
        padding: 82px 0 62px;
    }

    .blog-page-hero {
        margin-bottom: 24px;
    }

    .blog-page-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .blog-page-title {
        font-size: 1.8rem;
        line-height: 1.12;
    }

    .blog-page-intro {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .blog-page-meta {
        padding: 16px 16px 0;
        gap: 8px 14px;
    }

    .blog-page-featured-image {
        margin: 16px 16px 0;
    }

    .blog-page-featured-image img {
        height: 240px;
    }

    .blog-page-content {
        padding: 20px 16px 22px;
    }

    .blog-page-content h2 {
        font-size: 1.15rem;
    }

    .blog-page-content p {
        font-size: 0.94rem;
        line-height: 1.82;
    }

    .blog-page-highlight {
        padding: 18px 16px;
    }

    .blog-page-highlight p {
        font-size: 0.94rem;
    }

    .blog-side-card {
        padding: 18px 16px;
    }
}