@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;
}

:root {
    --header-height: 80px;
}

body {
    background: #000000;
    color: #f5f5f5;
}


html,
body {
    width: 100%;
    overflow-x: clip;
}

/* ============================================================================================================================== */
.video-hero {
    position: relative;
    width: 100%;
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Video */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.552);
}

/* Content */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(25px, 4vw, 60px);
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.151), 0 1px 3px rgba(0, 0, 0, 0.129);
    opacity: 0;
    transform: translateY(48px);
    animation: heroTitleRise 1s ease-out 0.2s forwards;
}

/* Gradient word */

.hero-content span {
    background: #41866e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

@keyframes heroTitleRise {
    from {
        opacity: 0;
        transform: translateY(48px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width:992px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .video-hero {
        height: calc(420px - var(--header-height));
        min-height: 300px;
    }

}

/* Mobile */

@media (max-width:600px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .video-hero {
        height: calc(340px - var(--header-height));
        min-height: 250px;
    }

}

/* ================================================================================================================================== */


/* Lock info section — neutral black / charcoal (smart-curtains page only) */
.lock-info-section {
    padding: clamp(72px, 10vw, 110px) clamp(20px, 5vw, 48px);
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 48%, #101010 100%);
    color: #ececec;
    font-family: 'Poppins', sans-serif;
}

.lock-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
    align-items: center;
    gap: clamp(32px, 4.5vw, 56px);
}

.lock-left {
    min-width: 0;
    max-width: none;
    text-align: left;
}

.lock-info-heading {
    margin: 0 0 clamp(20px, 3vw, 28px);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.lock-info-heading-line {
    display: block;
}

.lock-info-heading-line--sub {
    margin-top: 0.12em;
    font-weight: 600;
    font-size: 0.92em;
    color: #a3a3a3;
}

.lock-accent {
    background: linear-gradient(90deg, #2d6a4f, #41866e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lock-intro {
    margin-bottom: clamp(22px, 3vw, 32px);
    max-width: none;
    width: 100%;
}

.lock-intro p {
    margin: 0 0 0.85rem;
    font-size: 15px;
    line-height: 1.65;
    color: #b5b5b5;
}

.lock-intro p:last-child {
    margin-bottom: 0;
}

.lock-right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    justify-self: center;
    width: 100%;
    max-width: 420px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.lock-info-section .lock-right.lock-right--glow .circle {
    box-shadow: 0 20px 48px rgba(65, 134, 110, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lock-info-section .circle {
    width: 100%;
    max-width: min(380px, 100%);
    aspect-ratio: 1;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
    background: linear-gradient(180deg, #2c2c2c, #141414);
    transition: box-shadow 0.35s ease;
}

.lock-info-section .circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.lock-info-section .circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.lock-info-interactive {
    margin-top: 8px;
}

.lock-info-interactive-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7dd3b0;
}

.lock-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.lock-chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    color: #ebebeb;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.lock-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(110, 184, 154, 0.45);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.lock-chip:focus-visible {
    outline: 2px solid #41866e;
    outline-offset: 3px;
}

.lock-chip.active {
    background: linear-gradient(135deg, #3d7a5c, #41866e);
    border-color: #41866e;
    color: #fff;
    box-shadow: 0 12px 28px rgba(65, 134, 110, 0.28);
}

.lock-info-detail {
    position: relative;
    background: linear-gradient(165deg, rgba(38, 38, 38, 0.92) 0%, rgba(12, 12, 12, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 20px 22px 22px;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lock-info-detail.is-updating {
    animation: lockDetailPulse 0.45s ease;
}

@keyframes lockDetailPulse {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.88;
    }

    100% {
        opacity: 1;
    }
}

.lock-detail-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d1fae5;
    background: rgba(0, 0, 0, 0.26);
}

.lock-info-detail h3 {
    margin: 0 0 12px;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.3;
    color: #f8fafc;
    letter-spacing: -0.01em;
}

.lock-info-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #c8c8c8;
    margin: 0;
}

@media (max-width: 992px) {
    .lock-container {
        grid-template-columns: 1fr;
        align-items: stretch;
        text-align: center;
        gap: 40px;
    }

    .lock-left {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .lock-right {
        max-width: none;
        justify-self: center;
        width: auto;
    }

    .lock-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .lock-info-interactive-label {
        text-align: center;
    }

    .lock-info-chips {
        justify-content: center;
    }

    .lock-info-detail {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .lock-right .circle {
        width: min(320px, 85vw);
        max-width: 320px;
        aspect-ratio: 1;
        height: auto;
    }
}

@media (max-width: 576px) {
    .lock-info-heading {
        font-size: 26px;
    }

    .lock-intro p {
        font-size: 13px;
        line-height: 1.62;
    }

    .lock-chip {
        padding: 10px 14px;
        font-size: 12px;
    }

    .lock-info-section .circle {
        width: min(280px, 88vw);
        max-width: 280px;
        aspect-ratio: 1;
        height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lock-chip,
    .lock-info-detail,
    .lock-right {
        transition: none;
    }

    .lock-info-detail.is-updating {
        animation: none;
    }

    .lock-chip:hover {
        transform: none;
    }
}

/* ============================================================================================================================= */

.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 (pf-*) — matches touch-switches.php cascade (elevated card + icon tiles + interactive states) */

.product-feature-section {
  padding: 70px 6%;
  background: #fff;
}

.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: #f5f5f5;
  border-radius: 24px;
  padding: 30px;
}

.pf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pf-left .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: 620px;
}

.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);
}

.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);
}

.pf-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.pf-feature-item p {
  margin-top: 10px;
  color: #111827;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 992px) {
  .pf-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Overrides below mirror second block in touch-switches.css (later cascade = same rendered layout on touch page) */

.product-feature-section {
  padding: 80px 6%;
  background: #f6f6f6;
}

.pf-main-heading {
  font-weight: 600;
  margin-bottom: 50px;
  color: #111;
}

.pf-card {
  background: #fff;
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pf-top {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.pf-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.pf-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.pf-btn {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
}

.pf-btn:hover {
  background: #b5b3b3;
  color: #000;
}

.pf-features {
  gap: 40px;
}

.pf-feature-item {
  text-align: center;
}

.pf-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: #f2f2f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.345);
  margin-bottom: 15px;
}

.pf-icon img {
  width: 35px;
  height: auto;
  opacity: 0.7;
}

.pf-feature-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

@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: left;
  }

  .pf-btn {
    display: inline-block;
    margin-left: 30px;
  }

  .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;
  }
}

/* =========================================================================================================================== */
/* Curtain motion gallery — premium, interactive, responsive */

.curtain-story-section {
    position: relative;
    padding: clamp(72px, 11vw, 120px) clamp(18px, 5vw, 6%);
    overflow: hidden;
    background: linear-gradient(165deg, #fafbfb 0%, #eef2f0 42%, #f4f6f5 100%);
    color: #111827;
}

.curtain-story-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 55% at 50% -8%, rgba(65, 134, 110, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 60%, rgba(45, 106, 79, 0.06), transparent 50%);
}

.curtain-story-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

.curtain-story-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto clamp(40px, 6vw, 56px);
}

.curtain-story-kicker {
    font-size: 12px;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    color: #41866e;
    margin: 0 0 10px;
}

.curtain-story-meta {
    margin: 0 0 14px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.curtain-story-meta span {
    color: #374151;
    font-weight: 600;
}

.curtain-story-head h2 {
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #0f172a;
}

.curtain-story-head h2 span {
    background: linear-gradient(90deg, #2d6a4f, #41866e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.curtain-story-lead {
    margin: 0;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.65;
    color: #4b5563;
}

/* Scroll strip: carousel on small screens, static grid on large */
.curtain-story-scroll-wrap {
    position: relative;
}

.curtain-story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 26px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.curtain-story-item {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(65, 134, 110, 0.14);
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease,
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(32px);
    outline: none;
}

.curtain-story-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .curtain-story-item.is-visible:hover,
    .curtain-story-item.is-visible:focus-within {
        transform: translateY(-10px);
        border-color: rgba(65, 134, 110, 0.35);
        box-shadow:
            0 12px 24px rgba(65, 134, 110, 0.12),
            0 28px 56px rgba(15, 23, 42, 0.1);
    }
}

.curtain-story-item:focus-visible {
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 5px #41866e,
        0 18px 40px rgba(15, 23, 42, 0.08);
}

.story-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eeeb, #f4f6f5);
}

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, transparent 42%);
    pointer-events: none;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.curtain-story-item:is(:hover, :focus-within) .story-image::after {
    transform: translateX(120%);
}

.story-step-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #fff;
    padding: 7px 11px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.95), rgba(65, 134, 110, 0.92));
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.35);
    backdrop-filter: blur(8px);
}

.story-image-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.story-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.curtain-story-item:is(:hover, :focus-within) .story-image-frame img {
    transform: scale(1.06);
}

.story-content {
    padding: clamp(20px, 3vw, 26px);
    position: relative;
}

.story-content h3 {
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 700;
    margin: 0 0 10px;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.story-content p {
    font-size: 14px;
    line-height: 1.62;
    color: #4b5563;
    margin: 0 0 16px;
}

.story-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-features li {
    position: relative;
    padding: 10px 12px 10px 38px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    color: #374151;
    background: rgba(65, 134, 110, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(65, 134, 110, 0.1);
}

.story-features li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d7a5c, #41866e);
    box-shadow: 0 2px 8px rgba(65, 134, 110, 0.35);
}

.story-features li::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-60%) rotate(45deg);
}

/* Pagination + swipe hint (mobile carousel) */
.curtain-story-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.curtain-story-dots:not([hidden]) {
    display: flex;
}

.curtain-story-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(65, 134, 110, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.curtain-story-dot:hover,
.curtain-story-dot:focus-visible {
    background: rgba(65, 134, 110, 0.55);
    transform: scale(1.15);
    outline: none;
}

.curtain-story-dot.is-active {
    width: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2d6a4f, #41866e);
    box-shadow: 0 4px 12px rgba(65, 134, 110, 0.35);
}

.curtain-story-swipe-hint {
    text-align: center;
    margin: 12px 0 0;
    font-size: 13px;
    color: #6b7280;
    letter-spacing: 0.02em;
}

.curtain-story-swipe-hint:not([hidden]) {
    display: block;
}

.curtain-story-swipe-hint[hidden] {
    display: none;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .curtain-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Phone: horizontal snap carousel */
@media (max-width: 768px) {
    .curtain-story-section {
        padding-bottom: clamp(56px, 12vw, 80px);
    }

    .curtain-story-scroll-wrap {
        margin-inline: calc(-1 * clamp(16px, 4vw, 24px));
        padding-inline: clamp(16px, 4vw, 24px);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: clamp(16px, 4vw, 24px);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        scrollbar-width: thin;
        scrollbar-color: rgba(65, 134, 110, 0.4) transparent;
    }

    .curtain-story-scroll-wrap::-webkit-scrollbar {
        height: 6px;
    }

    .curtain-story-scroll-wrap::-webkit-scrollbar-thumb {
        background: rgba(65, 134, 110, 0.35);
        border-radius: 999px;
    }

    .curtain-story-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
        min-width: min(100%, 100vw);
    }

    .curtain-story-item {
        flex: 0 0 min(320px, 86vw);
        max-width: 340px;
        scroll-snap-align: center;
    }

    @media (hover: none) {
        .curtain-story-item.is-visible:hover {
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .curtain-story-meta {
        font-size: 13px;
    }

    .curtain-story-item {
        flex-basis: min(300px, 88vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .curtain-story-item {
        transition: opacity 0.35s ease;
        transform: none !important;
    }

    .curtain-story-item.is-visible {
        transform: none;
    }

    .story-image::after {
        display: none;
    }

    .story-image-frame img {
        transition: none;
    }

    .curtain-story-item:is(:hover, :focus-within) .story-image-frame img {
        transform: none;
    }
}

/* ============================================================================================================================= */
/* Smart curtain control — premium layout, nav + scroll-spy, responsive */

.comfort-section {
    position: relative;
    padding: clamp(72px, 10vw, 110px) clamp(18px, 5vw, 6%);
    overflow: hidden;
    background: linear-gradient(180deg, #f4f6f5 0%, #eef2f0 50%, #f8faf9 100%);
    color: #111827;
}

.comfort-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 0% 30%, rgba(65, 134, 110, 0.1), transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 70%, rgba(45, 106, 79, 0.08), transparent 50%);
}

.comfort-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.comfort-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

.comfort-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    color: #41866e;
    margin: 0 0 10px;
}

.comfort-meta {
    margin: 0 0 14px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.comfort-meta span {
    color: #374151;
    font-weight: 600;
}

.comfort-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #0f172a;
}

.comfort-head h2 span {
    background: linear-gradient(90deg, #2d6a4f, #41866e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comfort-lead {
    margin: 0;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
    color: #4b5563;
}

/* Sticky jump nav */
.comfort-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(28px, 4vw, 40px);
    position: sticky;
    top: calc(var(--header-height, 80px) + 10px);
    z-index: 5;
    padding: 10px 12px;
    margin-inline: auto;
    max-width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(65, 134, 110, 0.18);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.comfort-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #374151;
    background: transparent;
    cursor: pointer;
    transition:
        background 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.comfort-nav-btn i {
    font-size: 18px;
    color: #41866e;
    opacity: 0.85;
}

.comfort-nav-btn:hover,
.comfort-nav-btn:focus-visible {
    background: rgba(65, 134, 110, 0.12);
    color: #1b4332;
    outline: none;
}

.comfort-nav-btn:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #41866e;
}

.comfort-nav-btn.is-active {
    background: linear-gradient(135deg, #3d7a5c, #41866e);
    color: #fff;
    box-shadow: 0 8px 22px rgba(65, 134, 110, 0.35);
}

.comfort-nav-btn.is-active i {
    color: #fff;
    opacity: 1;
}

.comfort-cards {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 3.5vw, 32px);
}

.comfort-card {
    position: relative;
    scroll-margin-top: calc(var(--header-height, 80px) + 88px);
    border-radius: 24px;
    padding: clamp(6px, 1.2vw, 10px);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(65, 134, 110, 0.14);
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 20px 48px rgba(15, 23, 42, 0.07);
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
}

.comfort-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.comfort-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(65, 134, 110, 0.2), transparent 45%, transparent);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 0;
}

.comfort-card:is(:hover, :focus-within) .comfort-card-glow {
    opacity: 1;
}

.comfort-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(24px, 3.5vw, 40px) clamp(22px, 3vw, 44px);
}

.comfort-card--reverse .comfort-body {
    flex-direction: row-reverse;
}

.comfort-text {
    flex: 1;
    min-width: 0;
}

.comfort-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1b4332;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(65, 134, 110, 0.14);
    margin-bottom: 14px;
}

.comfort-chip i {
    font-size: 16px;
    color: #41866e;
}

.comfort-text h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    margin: 0 0 12px;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.comfort-dek {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.62;
    color: #4b5563;
}

.comfort-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comfort-features li {
    position: relative;
    padding: 11px 14px 11px 40px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color: #374151;
    background: rgba(65, 134, 110, 0.07);
    border-radius: 14px;
    border: 1px solid rgba(65, 134, 110, 0.12);
}

.comfort-features li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d7a5c, #41866e);
    box-shadow: 0 2px 8px rgba(65, 134, 110, 0.35);
}

.comfort-features li::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-60%) rotate(45deg);
}

.comfort-media {
    flex: 1;
    min-width: 0;
    max-width: 480px;
    margin-inline: auto;
}

.comfort-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #e8eeeb, #dfe8e4);
    box-shadow: inset 0 0 0 1px rgba(65, 134, 110, 0.12);
}

.comfort-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.comfort-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.comfort-card:is(:hover, :focus-within) .comfort-image-frame img {
    transform: scale(1.05);
}

@media (hover: hover) and (pointer: fine) {
    .comfort-card.is-visible:hover {
        border-color: rgba(65, 134, 110, 0.28);
        box-shadow:
            0 12px 28px rgba(65, 134, 110, 0.12),
            0 28px 56px rgba(15, 23, 42, 0.1);
    }
}

@media (max-width: 900px) {
    .comfort-body,
    .comfort-card--reverse .comfort-body {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .comfort-media {
        max-width: none;
        order: -1;
    }

    .comfort-card {
        scroll-margin-top: calc(var(--header-height, 80px) + 72px);
    }
}

@media (max-width: 600px) {
    .comfort-nav {
        width: 100%;
        max-width: none;
        justify-content: center;
        border-radius: 18px;
        padding: 10px;
        gap: 8px;
    }

    .comfort-nav-btn {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
    }

    .comfort-nav-btn span {
        display: none;
    }

    .comfort-nav-btn i {
        font-size: 22px;
    }

    .comfort-chip {
        font-size: 11px;
        letter-spacing: 0.04em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .comfort-card {
        transition: opacity 0.35s ease;
        transform: none !important;
    }

    .comfort-card.is-visible {
        transform: none;
    }

    .comfort-image-frame img {
        transition: none;
    }

    .comfort-card:is(:hover, :focus-within) .comfort-image-frame img {
        transform: none;
    }

    .comfort-nav-btn {
        transition: background 0.2s ease, color 0.2s ease;
    }
}


/* ========================================================================================================================== */
/* Curtain hero — premium CTA band, theme-aligned, scroll reveal + subtle motion */

.curtain-hero {
    position: relative;
    padding-top: clamp(72px, 11vw, 120px);
    padding-bottom: calc(clamp(72px, 11vw, 120px) + env(safe-area-inset-bottom, 0px));
    padding-inline: max(clamp(12px, 2.5vw, 3%), env(safe-area-inset-left, 0px))
        max(clamp(12px, 2.5vw, 3%), env(safe-area-inset-right, 0px));
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff 0%, #f0f4f2 45%, #e8eeeb 100%);
    color: #111827;
}

.curtain-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 15% 40%, rgba(65, 134, 110, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 40% at 92% 65%, rgba(45, 106, 79, 0.1), transparent 50%);
}

.curtain-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1240px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
}

.curtain-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1.02fr);
    align-items: center;
    gap: clamp(20px, 3.5vw, 48px);
    width: 100%;
    min-width: 0;
}

/* Media column — nudged left so copy column gains breathing room */
.curtain-hero-media {
    min-width: 0;
    --hero-media-nudge: clamp(16px, 3vw, 42px);
    opacity: 0;
    transform: translateX(calc(-1 * var(--hero-media-nudge) - 24px));
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.curtain-hero-media.is-visible {
    opacity: 1;
    transform: translateX(calc(-1 * var(--hero-media-nudge)));
}

.curtain-hero-frame {
    position: relative;
    border-radius: clamp(20px, 3vw, 32px);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: min(760px, 90vh);
    min-height: min(440px, 58vh);
    width: 100%;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.06),
        0 24px 48px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(65, 134, 110, 0.15);
    background: linear-gradient(145deg, #dfe8e4, #c5d4cd);
}

.curtain-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.curtain-hero-media.is-visible:hover .curtain-hero-frame img,
.curtain-hero-media.is-visible:focus-within .curtain-hero-frame img {
    transform: scale(1.06);
}

.curtain-hero-frame-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 65%);
    transform: translateX(-100%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.curtain-hero-media.is-visible:is(:hover, :focus-within) .curtain-hero-frame-shine {
    transform: translateX(100%);
}

.curtain-hero-badge {
    position: absolute;
    left: clamp(14px, 2.5vw, 22px);
    bottom: clamp(14px, 2.5vw, 22px);
    z-index: 2;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.92), rgba(65, 134, 110, 0.9));
    box-shadow: 0 10px 28px rgba(27, 67, 50, 0.35);
    backdrop-filter: blur(10px);
}

.curtain-hero-badge i {
    font-size: 20px;
    opacity: 0.95;
}

/* Copy column */
.curtain-hero-copy {
    min-width: 0;
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.curtain-hero-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.curtain-hero-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    color: #41866e;
    margin: 0 0 12px;
}

.curtain-hero-copy h2 {
    font-size: clamp(1.345rem, 3.5vw + 0.3rem, 2.45rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 18px;
    text-wrap: balance;
}

.curtain-hero-copy h2 span {
    background: linear-gradient(90deg, #2d6a4f, #41866e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.curtain-hero-lead {
    font-size: clamp(0.9375rem, 1.4vw + 0.65rem, 1.0625rem);
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 22px;
    max-width: min(34em, 100%);
}

.curtain-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.curtain-hero-highlights::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.curtain-hero-highlights li {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1b4332;
    background: rgba(65, 134, 110, 0.12);
    border: 1px solid rgba(65, 134, 110, 0.2);
    border-radius: 999px;
}

.curtain-hero-highlights i {
    font-size: 17px;
    color: #41866e;
}

.curtain-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.curtain-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2d4a3e, #1a1a1a 48%, #1a1a1a);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(65, 134, 110, 0.35);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.curtain-btn:hover {
    background: linear-gradient(135deg, #3d7a5c, #41866e);
    border-color: #41866e;
    box-shadow: 0 16px 40px rgba(65, 134, 110, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.curtain-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px #41866e, 0 12px 32px rgba(15, 23, 42, 0.2);
}

/* Large screens: comfortable reading width */
@media (min-width: 1400px) {
    .curtain-hero-inner {
        max-width: min(1280px, 100%);
    }
}

/* Tablet / small laptop — shorter min-height so two columns fit */
@media (max-width: 1199px) {
    .curtain-hero-frame {
        min-height: min(360px, 46vh);
        max-height: min(640px, 72vh);
    }
}

@media (max-width: 1024px) {
    .curtain-hero-layout {
        gap: clamp(18px, 3vw, 36px);
    }

    .curtain-hero-frame {
        max-height: min(580px, 68vh);
        min-height: min(300px, 44vh);
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 900px) {
    .curtain-hero {
        padding-top: clamp(48px, 9vw, 88px);
        padding-bottom: calc(clamp(48px, 9vw, 88px) + env(safe-area-inset-bottom, 0px));
    }

    .curtain-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: clamp(20px, 5vw, 32px);
    }

    .curtain-hero-media {
        transform: translateY(24px);
        order: -1;
        width: 100%;
        max-width: min(560px, 100%);
        margin-inline: auto;
    }

    .curtain-hero-media.is-visible {
        transform: translateY(0);
    }

    .curtain-hero-frame {
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 10;
        width: 100%;
    }

    .curtain-hero-copy {
        width: 100%;
        max-width: 40rem;
        margin-inline: auto;
    }

    .curtain-hero-highlights {
        justify-content: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-inline: 2px;
    }

    .curtain-hero-actions {
        justify-content: center;
    }

    .curtain-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .curtain-hero-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: clamp(12px, 3vw, 18px);
        max-width: calc(100% - 28px);
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: clamp(11px, 2.8vw, 13px);
        padding: 8px 14px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .curtain-hero {
        padding-inline: max(10px, env(safe-area-inset-left, 0px))
            max(10px, env(safe-area-inset-right, 0px));
    }

    .curtain-hero-kicker {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .curtain-hero-frame {
        border-radius: clamp(16px, 4vw, 22px);
        aspect-ratio: 4 / 3;
    }

    .curtain-hero-highlights li {
        font-size: 11px;
        padding: 7px 10px;
        gap: 4px;
    }

    .curtain-hero-highlights i {
        font-size: 15px;
    }

    .curtain-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Very narrow */
@media (max-width: 360px) {
    .curtain-hero-copy h2 {
        font-size: 1.35rem;
    }

    .curtain-hero-badge span {
        display: block;
        width: 100%;
    }
}

/* Landscape phones & short viewports */
@media (max-height: 520px) and (orientation: landscape) {
    .curtain-hero {
        padding-top: clamp(20px, 4vh, 40px);
        padding-bottom: calc(clamp(20px, 4vh, 40px) + env(safe-area-inset-bottom, 0px));
    }

    .curtain-hero-frame {
        max-height: min(42vh, 240px);
        aspect-ratio: 21 / 9;
        min-height: 0;
    }

    .curtain-hero-media {
        max-width: min(92vw, 640px);
    }
}

@media (max-height: 520px) and (orientation: landscape) and (max-width: 900px) {
    .curtain-hero-layout {
        gap: 14px;
    }

    .curtain-hero-copy h2 {
        margin-bottom: 10px;
    }

    .curtain-hero-lead {
        margin-bottom: 14px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .curtain-hero-highlights {
        margin-bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .curtain-hero-media,
    .curtain-hero-copy {
        transition: opacity 0.4s ease;
        transform: none !important;
    }

    .curtain-hero-media.is-visible,
    .curtain-hero-copy.is-visible {
        transform: none;
    }

    .curtain-hero-frame img {
        transform: none !important;
        transition: none;
    }

    .curtain-hero-frame-shine {
        display: none;
    }

    .curtain-btn {
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .curtain-btn:hover {
        transform: none;
    }
}



* {
    scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
    will-change: transform, opacity;
}