@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1c1c1c;
    color: #fff;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* =========================================================================================================================== */



/* HERO SECTION */
.product-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('/assets/images/banners/mood-switch.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Black Transparent Layer */
.product-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background:linear-gradient(to right, rgba(0, 0, 0, 0.825), rgba(0, 0, 0, 0.523));
    z-index: 1;
}

/* Content on Image */
.product-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.product-hero .hero-content h1 {
    font-size: clamp(25px, 4vw, 60px);
    /* responsive text */
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.325);

}

.hero-content span {
    background: #41866e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Optional: subtle premium glow */
.product-hero .hero-content h1 span {
    color: #00ff88;
    /* green accent if needed */
}

/* Mobile Fine-tuning */
@media (max-width: 768px) {
    .product-hero {
        background-position: center top;
    }
}


/* ================================================================================================================= */

.lock-info-section {
    padding: 100px 20px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.lock-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.lock-left {
    flex: 1;
}

.lock-left h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111827;
}

.lock-left h2 span {
    background: #41866e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lock-info-section .desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    max-width: 570px;
}

.lock-info-interactive {
    margin-top: 16px;
    max-width: 620px;
}

.lock-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.lock-chip {
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #fff;
    color: #111827;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lock-chip:hover {
    border-color: rgba(65, 134, 110, 0.5);
    transform: translateY(-1px);
}

.lock-chip.active {
    background: #41866e;
    border-color: #41866e;
    color: #fff;
    box-shadow: 0 10px 24px rgba(65, 134, 110, 0.25);
}

.lock-info-detail {
    background: #f6f7f8;
    border: 1px solid rgba(65, 134, 110, 0.25);
    border-radius: 16px;
    padding: 14px 16px;
}

.lock-info-detail h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 6px;
    font-weight: 800;
}

.lock-info-detail p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.lock-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.lock-info-section .circle {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.lock-info-section .circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lock-info-section .circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(65, 134, 110, .25);
}

.lock-right.lock-right--glow .circle {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 12px rgba(65, 134, 110, 0.14);
}

@media (max-width: 992px) {
    .lock-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .lock-info-section .desc {
        margin: auto;
    }

    .lock-info-interactive {
        margin: 16px auto 0;
    }

    .lock-info-chips {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lock-left h2 {
        font-size: 30px;
    }

    .lock-info-section .circle {
        width: 280px;
        height: 280px;
    }

    .lock-info-section .desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
}


/* =================================================================================================== */
.smart-appliance-section {
  padding: 80px 6%;
  background: #f5f5f5;
  text-align: center;
}

.smart-title {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  margin-bottom: 60px;
  line-height: 1.3;
}

.smart-title span {
  background: #41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  max-width: min(640px, 100%);
  margin: 0 auto;
  justify-items: center;
  align-items: start;
}

.appliance-item {
  background: #efefef;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.appliance-item img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.appliance-item:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 134, 110, 0.35);
  background: rgba(65, 134, 110, 0.08);
  box-shadow: 0 16px 40px rgba(65, 134, 110, 0.18);
}

.appliance-item:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 3px;
}

.appliance-item--active {
  background: rgba(65, 134, 110, 0.14);
  border-color: rgba(65, 134, 110, 0.55);
  box-shadow: 0 18px 50px rgba(65, 134, 110, 0.22);
}

.appliance-detail {
  max-width: 900px;
  margin: 28px auto 0;
  background: #f6f7f8;
  border: 1px solid rgba(65, 134, 110, 0.25);
  border-radius: 18px;
  padding: 18px 18px;
}

.appliance-detail h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 800;
}

.appliance-detail p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .appliance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(520px, 100%);
  }
}

@media (max-width: 576px) {
  .smart-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .appliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .appliance-detail {
    margin-top: 18px;
    padding: 16px 14px;
  }
}

/* ==================================================================================================================== */

.product-feature-section {
    padding: 70px 6%;
    background: #f5f5f5;
}

.pf-container {
    max-width: 1200px;
    margin: auto;
}

.pf-main-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.pf-main-heading span {
    background: #41866e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
}

.pf-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.pf-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.pf-desc {
    color: #4b5563;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 520px;
}

.pf-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.pf-btn:hover {
    background: #41866e;
}

.pf-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.pf-feature-item {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pf-icon {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    border-radius: 0;
    display: block;
    box-shadow: none;
}

.pf-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 1;
}

.pf-feature-item p {
    margin-top: 10px;
    color: #111827;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.product-feature-section .pf-feature-item {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
    will-change: transform;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.product-feature-section .pf-feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(65, 134, 110, 0.35);
    box-shadow: 0 16px 40px rgba(65, 134, 110, 0.18);
}

.product-feature-section .pf-feature-item:focus-visible {
    outline: 2px solid #41866e;
    outline-offset: 3px;
}

.product-feature-section .pf-feature-item--active {
    border-color: rgba(65, 134, 110, 0.6);
    box-shadow: 0 18px 55px rgba(65, 134, 110, 0.22);
    background: rgba(65, 134, 110, 0.10);
}


/* Smooth hover lift */
.pf-feature-item {
  transition: all 0.4s ease;
  cursor: pointer;
}

.pf-feature-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Active glow effect */
.pf-feature-item--active {
  border: 1px solid #9effc7;
  box-shadow: 0 0 25px rgba(158,255,199,0.25);
}

/* Icon animation */
.pf-icon img {
  transition: transform 0.4s ease;
}

.pf-feature-item:hover .pf-icon img {
  transform: scale(1.15) rotate(3deg);
}

/* Button premium hover */
.pf-btn {
  transition: all 0.3s ease;
}

.pf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(158,255,199,0.3);
}

/* Heading highlight glow */
.pf-main-heading span {
  color: #9effc7;
  text-shadow: 0 0 20px rgba(158,255,199,0.4);
}

@media (max-width: 992px) {
    .pf-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .pf-right {
        width: 100%;
        text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .pf-main-heading {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .pf-card {
        padding: 30px 20px;
    }

    .pf-features {
        grid-template-columns: 1fr;
    }

    .pf-main-heading {
        font-size: 24px;
    }
}

/* ========================================================================================================================== */


/* ========================================================================================================================= */

/* SECTION */

.mood-bg-section{
    position:relative;
    width:100%;
    min-height:100vh;
    background-image:url("/assets/images/banners/curtain-control.png");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    padding:100px 6%;
    overflow:hidden;
}

/* DARK OVERLAY */

.mood-bg-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* CONTENT */

.mood-bg-content{
    position:relative;
    max-width:750px;
    color:#fff;
    z-index:2;

    opacity:0;
    transform:translateY(80px);
}

/* HEADING */

.mood-bg-content h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    text-shadow:0 6px 20px rgba(0,0,0,0.6);
    line-height: 1.2;
}

/* PARAGRAPH */

.mood-bg-content p{
    font-size:17px;
    line-height:1.7;
    color:#e6e6e6;
    text-shadow:0 4px 15px rgba(0,0,0,0.6);
}

/* ================= */
/* TABLET */
/* ================= */

@media (max-width:992px){

.mood-bg-section{
    min-height:420px;
}

.mood-bg-content h2{
    font-size:36px;
}

.mood-bg-content p{
    font-size:16px;
}

}

/* ================= */
/* MOBILE */
/* ================= */

@media (max-width:600px){

.mood-bg-section{
    padding:70px 20px;
    min-height:350px;
}

.mood-bg-content{
    max-width:100%;
}

.mood-bg-content h2{
    font-size:28px;
}

.mood-bg-content p{
    font-size:15px;
}

}

/* =============================================================================================================================== */

/* FEATURES SECTION */

.mood-features-section {
    position: relative;
    width: 100%;
    padding: clamp(74px, 8vw, 110px) clamp(16px, 5vw, 70px);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
    color: #0f172a;
    overflow: hidden;
    isolation: isolate;
}

.mood-features-ambient {
    position: absolute;
    inset: -20% -10% auto;
    height: min(66vh, 560px);
    background:
        radial-gradient(ellipse 62% 46% at 16% 16%, rgba(65, 134, 110, 0.14), transparent 70%),
        radial-gradient(ellipse 50% 40% at 84% 24%, rgba(61, 214, 140, 0.08), transparent 68%),
        radial-gradient(ellipse 44% 32% at 52% 84%, rgba(22, 163, 74, 0.06), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.mood-features-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
    pointer-events: none;
    z-index: 0;
}

.mood-features-container {
    position: relative;
    z-index: 1;
    max-width: 1260px;
    margin: auto;
}

.mood-features-head {
    text-align: center;
    margin: 0 auto clamp(34px, 5vw, 52px);
    max-width: 860px;
}

.mood-features-eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(65, 134, 110, 0.9);
}

.mood-features-title {
    text-align: center;
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.mood-features-title span {
    background: linear-gradient(135deg, #2f6f59, #41866e 52%, #61b38e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.mood-features-lead {
    margin: 14px auto 0;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.72;
    color: #475569;
}

.mood-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.3vw, 28px);
}

.mood-feature-card {
    position: relative;
    min-height: 260px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 248, 0.96));
    padding: clamp(24px, 2.8vw, 34px) clamp(18px, 2.4vw, 26px);
    border-radius: clamp(16px, 2vw, 22px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(65, 134, 110, 0.24);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.76) inset;
    overflow: hidden;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, border-color 0.3s ease;
    isolation: isolate;
}

.mood-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 88% 58% at 86% -12%, rgba(65, 134, 110, 0.12), transparent 74%);
    pointer-events: none;
    z-index: -1;
}

.mood-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 70%;
    height: 100%;
    transform: skewX(-20deg);
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .mood-feature-card:hover {
        transform: translateY(-8px);
        border-color: rgba(65, 134, 110, 0.45);
        box-shadow:
            0 28px 60px rgba(15, 23, 42, 0.13),
            0 0 0 1px rgba(65, 134, 110, 0.14) inset;
    }

    .mood-feature-card:hover::after {
        left: 140%;
    }
}

.mood-feature-card:focus-visible {
    outline: 2px solid #41866e;
    outline-offset: 3px;
}

.mood-feature-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 16px;
    color: #f5fffb;
    background: linear-gradient(135deg, #2f6f59, #41866e 55%, #5db391);
    box-shadow: 0 14px 28px rgba(65, 134, 110, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .mood-feature-card:hover .mood-feature-icon {
        transform: scale(1.06) rotate(-3deg);
        box-shadow: 0 18px 34px rgba(65, 134, 110, 0.36);
    }
}

.mood-feature-card h3 {
    font-size: clamp(20px, 1.6vw, 24px);
    margin: 0 0 10px;
    line-height: 1.3;
    color: #0f172a;
}

.mood-feature-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.72;
    margin:  0 auto;
    max-width: 44ch;
    text-align: center;
}

@media (max-width: 1024px) {
    .mood-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mood-features-section {
        padding: clamp(62px, 9vw, 84px) clamp(14px, 4.5vw, 26px);
    }

    .mood-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mood-feature-card {
        min-height: 0;
        border-radius: 16px;
    }
}

@media (max-width: 520px) {
    .mood-features-title {
        font-size: clamp(26px, 8vw, 32px);
    }

    .mood-features-lead {
        font-size: 14px;
        line-height: 1.66;
    }

    .mood-feature-card {
        padding: 20px 14px 18px;
    }

    .mood-feature-icon {
        width: 58px;
        height: 58px;
        font-size: 30px;
        border-radius: 14px;
    }

    .mood-feature-card h3 {
        font-size: 20px;
    }

    .mood-feature-card p {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mood-feature-card,
    .mood-feature-card::after,
    .mood-feature-icon {
        transition: none !important;
    }

    .mood-feature-card:hover {
        transform: none;
    }
}

/* =========================================================================================================================== */

/* SECTION */

.mood-work-section {
    position: relative;
    width: 100%;
    padding: clamp(76px, 8vw, 112px) clamp(16px, 5vw, 70px);
    background: radial-gradient(circle at 8% 8%, rgba(65, 134, 110, 0.10), transparent 34%), #ffffff;
    color: #0f172a;
    overflow: hidden;
    isolation: isolate;
}

.mood-work-ambient {
    position: absolute;
    inset: -18% -10% auto;
    height: min(70vh, 640px);
    background:
        radial-gradient(ellipse 72% 54% at 16% 16%, rgba(65, 134, 110, 0.14), transparent 65%),
        radial-gradient(ellipse 60% 45% at 86% 22%, rgba(61, 214, 140, 0.10), transparent 68%),
        radial-gradient(ellipse 48% 36% at 52% 82%, rgba(2, 132, 199, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mood-work-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 6, 23, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 6, 23, 0.028) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 72%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.mood-work-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.mood-work-head {
    text-align: center;
    margin: 0 auto clamp(36px, 5vw, 54px);
    max-width: 860px;
}

.mood-work-eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(65, 134, 110, 0.92);
}

.mood-work-title {
    margin:  0 auto;
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.18;
    font-weight: 700;
    color: #0f172a;
}

.mood-work-lead {
    margin: 14px auto 0;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.72;
    color: #4b5563;
}

.mood-work-track {
    display: grid;
    gap: clamp(18px, 2.8vw, 26px);
}

.mood-work-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 1.02fr) minmax(0, 1fr);
    align-items: stretch;
    height: clamp(360px, 32vw, 450px);
    gap: 0;
    border-radius: clamp(18px, 2.4vw, 26px);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 248, 0.95));
    border: 1px solid rgba(65, 134, 110, 0.20);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
    will-change: transform;
}

.mood-work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.42) 50%, transparent 68%);
    transform: translateX(-130%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.mood-work-card.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.02fr);
}

.mood-work-card.reverse .mood-work-image {
    order: 2;
}

.mood-work-card.reverse .mood-work-text {
    order: 1;
}

@media (hover: hover) and (pointer: fine) {
    .mood-work-card:hover {
        transform: translateY(-8px);
        border-color: rgba(65, 134, 110, 0.45);
        box-shadow:
            0 26px 58px rgba(15, 23, 42, 0.16),
            0 0 0 1px rgba(65, 134, 110, 0.16) inset;
    }

    .mood-work-card:hover::after {
        transform: translateX(130%);
    }

    .mood-work-card:hover .mood-work-image img {
        transform: scale(1.06);
    }
}

.mood-work-card:focus-visible {
    outline: 2px solid #41866e;
    outline-offset: 3px;
}

.mood-work-image {
    position: relative;
    height: 100%;
    min-height: clamp(240px, 28vw, 340px);
    overflow: hidden;
    background: #0b1119;
}

.mood-work-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(0, 0, 0, 0.10) 10%, rgba(0, 0, 0, 0.48) 100%);
    z-index: 1;
    pointer-events: none;
}

.mood-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.mood-work-step-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #f8fffc;
    background: linear-gradient(135deg, #41866e, #2d5f4f);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 26px rgba(30, 64, 53, 0.4);
}

.mood-work-text {
    position: relative;
    height: 100%;
    padding: clamp(22px, 3.2vw, 38px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mood-work-kicker {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(65, 134, 110, 0.88);
}

.mood-work-text h3 {
    margin: 0 0 12px;
    font-size: clamp(21px, 2.1vw, 29px);
    line-height: 1.3;
    color: #0f172a;
}

.mood-work-text p {
    margin: 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    max-width: 62ch;
}

@media (max-width: 1100px) {
    .mood-work-card,
    .mood-work-card.reverse {
        grid-template-columns: minmax(290px, 0.95fr) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .mood-work-section {
        padding: clamp(64px, 8vw, 86px) clamp(14px, 4.5vw, 34px);
    }

    .mood-work-card,
    .mood-work-card.reverse {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mood-work-card.reverse .mood-work-image,
    .mood-work-card.reverse .mood-work-text {
        order: initial;
    }

    .mood-work-image {
        min-height: clamp(220px, 46vw, 320px);
    }

    .mood-work-text {
        padding: clamp(20px, 4vw, 30px);
    }
}

@media (max-width: 640px) {
    .mood-work-title {
        font-size: clamp(28px, 8vw, 34px);
    }

    .mood-work-lead {
        font-size: 14px;
        line-height: 1.66;
    }

    .mood-work-card {
        border-radius: 16px;
    }

    .mood-work-image {
        min-height: clamp(200px, 54vw, 250px);
    }

    .mood-work-text h3 {
        font-size: 21px;
    }

    .mood-work-text p {
        font-size: 14px;
        line-height: 1.68;
    }
}

@media (max-width: 480px) {
    .mood-work-section {
        padding: 56px 14px 62px;
    }

    .mood-work-eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .mood-work-track {
        gap: 16px;
    }

    .mood-work-text {
        padding: 18px 14px 20px;
    }

    .mood-work-step-badge {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mood-work-card,
    .mood-work-card::after,
    .mood-work-image img {
        transition: none !important;
    }

    .mood-work-card:hover {
        transform: none;
    }
}

* {
    scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
    will-change: transform, opacity;
}





