/* ============================================================
   ECLITE THEME – MAIN CSS
   Dark Premium Design | CLC Block Construction Brand
============================================================ */

/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(76,175,80,0.15);
    height: var(--topbar-height);
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    padding-top: 13px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--spacing-4);
}

.topbar-announcement {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    flex: 1;
}

.topbar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.topbar-text {
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    color: var(--color-gray-300);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    flex-shrink: 0;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--fs-xs);
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.topbar-link:hover { color: var(--color-green); }

.topbar-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .topbar-contact { display: none; }
    .topbar-text { font-size: 11px; }
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: transparent;
    transition: background var(--transition-slow), border-color var(--transition-slow), backdrop-filter var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.site-header.topbar-visible {
    top: var(--topbar-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--spacing-8);
}

/* Logo */
.site-logo-text {
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: var(--fw-black);
    letter-spacing: -0.04em;
    line-height: 1;
}

.logo-ec { color: var(--color-white); }

.logo-icon {
    display: flex;
    align-items: center;
    transform: translateY(-1px);
}

.logo-lite { color: var(--color-white); }

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 44px;
    width: auto;
}

/* Primary Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
    list-style: none;
}

.nav-menu > li > a {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-green);
    transition: width var(--transition-base);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    color: var(--color-white);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
    width: 100%;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.header-cta {
    padding: 0.625rem 1.5rem;
    font-size: var(--fs-xs);
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.toggle-bar {
    display: block;
    height: 1.5px;
    background: var(--color-white);
    transition: all var(--transition-base);
    transform-origin: center;
}

.menu-open .toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.menu-open .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-open .toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay menu */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-6);
    padding: var(--spacing-12);
    text-align: center;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.mobile-nav-menu li a {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: var(--fw-black);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    transition: color var(--transition-fast);
    line-height: 1;
}

.mobile-nav-menu li a:hover {
    color: var(--color-green);
}

.mobile-cta {
    margin-top: var(--spacing-4);
}

.mobile-social {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-4);
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    transition: border-color var(--transition-fast), color var(--transition-fast);
    color: var(--color-gray-500);
}

.mobile-social a:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.social-icon { width: 18px; height: 18px; }

@media (max-width: 1024px) {
    .main-navigation { display: none; }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero-section {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--topbar-height) + 2rem);
    padding-bottom: var(--spacing-20);
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
}

.hero-spotlight--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: var(--color-green);
}

.hero-spotlight--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: rgba(107,196,74,0.5);
    opacity: 0.05;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(107,196,74,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,196,74,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Hero content layout */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero content */
.hero-content {
    max-width: 620px;
}

.hero-label {
    margin-bottom: var(--spacing-6);
}

.hero-heading {
    font-size: clamp(3rem, 7vw, var(--fs-5xl));
    font-weight: var(--fw-black);
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero-line {
    display: block;
}

.hero-line-inner {
    display: block;
}

.hero-line-inner--green {
    color: var(--color-white);
}

.hero-subtext {
    font-size: var(--fs-lg);
    font-weight: var(--fw-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    margin: 0;
}

.hero-subtext em {
    font-style: normal;
    color: var(--color-green);
    font-weight: var(--fw-semibold);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    margin-top: var(--spacing-8);
}

.hero-badges {
    display: flex;
    gap: 0;
    margin-top: var(--spacing-10);
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-6);
}

.hero-badge {
    padding-right: var(--spacing-6);
    margin-right: var(--spacing-6);
    border-right: 1px solid var(--color-border);
}

.hero-badge:last-child {
    border-right: none;
    margin-right: 0;
}

.hero-badge__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.hero-badge--green .hero-badge__label {
    color: var(--color-green);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.hero-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(107,196,74,0.12);
    box-shadow: 0 0 80px rgba(107,196,74,0.06) inset;
    pointer-events: none;
}

.hero-product-img {
    position: relative;
    z-index: 2;
}

.hero-block-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.hero-block-placeholder {
    position: relative;
    width: 100%;
}

.hero-block-svg {
    width: 100%;
    height: auto;
}

/* Floating pills */
.hero-float-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: 0.5rem 0.875rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(76,175,80,0.2);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    z-index: 3;
}

.pill-icon { width: 16px; height: 16px; }

.hero-float-pill--1 { top: 10%; right: -10%; }
.hero-float-pill--2 { top: 35%; left: -12%; }
.hero-float-pill--3 { bottom: 35%; right: -8%; }
.hero-float-pill--4 { bottom: 10%; left: -5%; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-green);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -8px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 65px; opacity: 0; }
}

.scroll-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-700);
}

/* Hero responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-12);
    }
    .hero-visual { order: -1; }
    .hero-float-pill--2,
    .hero-float-pill--4 { left: 0; }
    .hero-float-pill--1,
    .hero-float-pill--3 { right: 0; }
}

@media (max-width: 640px) {
    .hero-float-pill { display: none; }
    .hero-badges { gap: var(--spacing-4); }
    .hero-badge { padding-right: var(--spacing-4); margin-right: var(--spacing-4); }
}

/* ── PRODUCT OVERVIEW ─────────────────────────────────────── */
.product-overview {
    background: var(--color-bg-2);
    position: relative;
    overflow: hidden;
}

.product-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107,196,74,0.3), transparent);
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.product-overview__img-wrap {
    position: relative;
}

.product-overview__img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-3);
    border: 1px solid var(--color-border);
}

.product-overview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-overview__img-placeholder {
    width: 100%;
    aspect-ratio: 5/6;
}

.product-overview__img-placeholder svg {
    width: 100%;
    height: 100%;
}

.overview-stat-badge {
    position: absolute;
    bottom: var(--spacing-6);
    right: var(--spacing-6);
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(76,175,80,0.25);
    border-radius: var(--radius-md);
    padding: var(--spacing-4) var(--spacing-6);
    backdrop-filter: blur(10px);
    text-align: center;
}

.overview-stat-badge__num {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: var(--fw-black);
    color: var(--color-green);
    line-height: 1;
}

.overview-stat-badge__label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-gray-500);
    letter-spacing: 0.06em;
    margin-top: var(--spacing-1);
}

/* Content side */
.section-heading {
    font-size: clamp(2rem, 4vw, var(--fs-5xl));
    font-weight: var(--fw-black);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-4);
    text-transform: uppercase;
}

.section-heading em {
    font-style: normal;
}

.body-text {
    font-size: var(--fs-base);
    line-height: 1.8;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-8);
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-8);
}

.overview-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    font-size: var(--fs-sm);
    color: var(--color-gray-300);
    line-height: 1.5;
}

.highlight-icon {
    color: var(--color-green);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    flex-shrink: 0;
    margin-top: 1px;
}

.overview-cta {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
    }
    .product-overview__visual {
        order: -1;
    }
}

/* ── FEATURES SECTION ─────────────────────────────────────── */
.features-section {
    background: var(--color-bg);
    position: relative;
    /* overflow: visible – needed so GSAP pin spacer doesn't clip content */
}

.features-bg-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107,196,74,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Generic section utilities (used across multiple sections) */
.section-header {
    margin-bottom: var(--spacing-16);
}

.section-description {
    font-size: var(--fs-lg);
    color: var(--color-gray-500);
    max-width: 600px;
    margin: var(--spacing-4) auto 0;
}

/* ── Features heading ─ */
.features-main-heading {
    margin-bottom: var(--spacing-12);
}

.features-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: var(--fw-black);
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
    margin: var(--spacing-4) 0;
}

.features-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-gray-500);
    max-width: 560px;
    margin: var(--spacing-4) auto 0;
    line-height: 1.6;
}

/* ── Pin wrapper (GSAP pins this element) ─ */
.features-pin-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-12) 0 var(--spacing-6);
    position: relative;
}

/* ── 3-column orbit system: [left cards | orbit ring | right cards] ─ */
.features-orbit-system {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-8);
    padding: 0 var(--spacing-6);
    flex: 1;
}

/* ── Center ring column ─ */
.orbit-ring-area {
    flex: 0 0 auto;
    width: min(560px, 58vh);
    aspect-ratio: 1;
    position: relative;
}

/* Square wrap – SVG and node divs all position relative to this */
.features-orbit-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

/* ── Side card columns (3 cards on left, 2 on right) ─ */
.orbit-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    max-width: 250px;
    min-width: 0;
}

/* ── Feature cards ─ */
.orbit-fcard {
    background: var(--color-bg-2);
    border: 1px solid rgba(107,196,74,0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3) var(--spacing-4);
    opacity: 0;           /* GSAP sets + reveals */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.orbit-fcard.fcard-lit {
    border-color: rgba(107,196,74,0.3);
    box-shadow: 0 0 24px rgba(107,196,74,0.07), var(--shadow-card);
}

.orbit-fcard__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-2);
}

.orbit-fcard__icon-wrap {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(107,196,74,0.07);
    border: 1px solid rgba(107,196,74,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-fcard-icon {
    width: 18px;
    height: 18px;
}

.orbit-fcard__stat {
    font-size: 9px;
    font-weight: var(--fw-bold);
    color: var(--color-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.orbit-fcard__title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin: 0;
}

.orbit-fcard__desc {
    font-size: 11px;
    color: var(--color-gray-500);
    line-height: 1.65;
}

/* ── Animated drawing line (initial state – GSAP overrides immediately) ─ */
.orbit-draw-line {
    stroke-dashoffset: 1759.3;
    opacity: 0;
}

/* ── Bottom card row (Sound feature, after pin releases) ─ */
.features-bottom-row {
    display: flex;
    justify-content: center;
    padding: var(--spacing-10) 0 var(--spacing-10);
}

.orbit-fcard--bottom {
    max-width: 420px;
    width: 100%;
}

/* SVG covers the entire wrap */
.orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Ring: always visible – dashed decoration */
.orbit-ring-path {
    opacity: 1;
}

/* ── Center product image ─ */
.orbit-center-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(107,196,74,0.35);
    box-shadow: 0 0 0 8px rgba(107,196,74,0.04),
                0 0 40px rgba(107,196,74,0.14);
    z-index: 1;
}

.orbit-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88) contrast(1.08) saturate(0.9);
    transition: filter 0.4s ease;
}

.orbit-center-image:hover img {
    filter: brightness(0.96) contrast(1.05) saturate(1);
}

.orbit-center-image__glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(107,196,74,0.2) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* ── Icon nodes ─ */
.orbit-node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0; /* GSAP reveals */
}

.orbit-node__inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(76,175,80,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.orbit-node__inner:hover {
    border-color: rgba(107,196,74,0.75);
    box-shadow: 0 0 22px rgba(107,196,74,0.22);
}

.orbit-icon {
    width: 28px;
    height: 28px;
}

/* ── Text labels ─ */
.orbit-label {
    position: absolute;
    z-index: 3;
    opacity: 0; /* GSAP reveals */
    line-height: 1.3;
    pointer-events: none;
}

.orbit-label__title {
    display: block;
    font-size: 11px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.orbit-label__stat {
    display: block;
    font-size: 10px;
    color: var(--color-green);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    margin-top: 3px;
    white-space: nowrap;
}

/* Label positions – clockwise from top */

/* Lightweight – top center, above the node */
.orbit-label--top {
    left: 50%;
    top: 4%;
    transform: translateX(-50%);
    text-align: center;
}

/* Thermal – right side, vertically centered on node */
.orbit-label--right {
    right: 0;
    top: 39.25%;
    transform: translateY(-50%);
    text-align: left;
    padding-left: 6px;
}

/* Sustainability – below the btm-right node, centered */
.orbit-label--btm-right {
    left: 70.625%;
    top: 88%;
    transform: translateX(-50%);
    text-align: center;
}

/* Fire – below the btm-left node, centered */
.orbit-label--btm-left {
    left: 29.375%;
    top: 88%;
    transform: translateX(-50%);
    text-align: center;
}

/* Sound – left side, vertically centered on node */
.orbit-label--left {
    left: 0;
    top: 39.25%;
    transform: translateY(-50%);
    text-align: right;
    padding-right: 6px;
}

/* ── Accessible fallback list (hidden visually, visible to screen readers) ─ */
.features-a11y-list {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
    list-style: none;
}

/* ── Bottom banner ─ */
.features-banner {
    text-align: center;
    padding: var(--spacing-12) var(--spacing-8);
    border: 1px solid rgba(107,196,74,0.12);
    border-radius: var(--radius-xl);
    background: rgba(107,196,74,0.03);
}

.features-banner__text {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--fw-black);
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-4);
    display: block;
}

.features-banner__sub {
    max-width: 600px;
    margin: 0 auto var(--spacing-6);
    color: var(--color-gray-500);
    font-size: var(--fs-base);
    line-height: 1.75;
}

.features-banner__footer {
    font-size: var(--fs-xs);
    letter-spacing: 0.2em;
}

/* ── Responsive ─ */
@media (max-width: 1200px) {
    .orbit-ring-area       { width: min(480px, 50vh); }
    .orbit-side            { max-width: 220px; }
    .orbit-fcard__desc     { font-size: 10px; }
    .features-orbit-system { gap: var(--spacing-5); }
}

/* Tablet: hide descriptions, shrink orbit */
@media (max-width: 960px) {
    .orbit-ring-area   { width: min(380px, 44vh); }
    .orbit-fcard__desc { display: none; }
    .orbit-side        { max-width: 180px; }
}

/* Mobile: disable pin, stack vertically */
@media (max-width: 768px) {
    .features-pin-wrap {
        min-height: auto;
        padding: var(--spacing-8) 0;
    }
    .features-orbit-system {
        flex-direction: column;
        gap: var(--spacing-6);
        padding: 0;
    }
    .orbit-ring-area {
        width: min(320px, 80vw);
        margin: 0 auto;
    }
    .orbit-side {
        flex-direction: row;
        max-width: 100%;
        width: 100%;
        gap: var(--spacing-3);
    }
    .orbit-fcard {
        flex: 1;
        min-width: 0;
        opacity: 1; /* always visible on mobile (no GSAP scrub) */
    }
    .orbit-fcard__desc { display: none; }
    .orbit-node { display: none; } /* too small to see on mobile */
    .orbit-label { display: none; }
    .features-main-title { font-size: clamp(2.5rem, 9vw, 4rem); }
}

@media (max-width: 500px) {
    .orbit-side { flex-direction: column; }
    .orbit-fcard { opacity: 1; }
}

/* ── PRODUCT EXPERIENCE ───────────────────────────────────── */
.experience-section {
    padding-top: var(--spacing-32);
    padding-bottom: var(--spacing-32);
    overflow: hidden;
}

.experience-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

/* Split screen */
.experience-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 70vh;
    position: relative;
}

.experience-panel {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.panel-bg {
    position: absolute;
    inset: 0;
}

.panel-bg--outside {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.panel-bg--outside::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,165,0,0.05) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.panel-bg--inside {
    background: linear-gradient(135deg, #0f0f0a 0%, #1a1a10 50%, #0d0d08 100%);
}

.panel-bg--inside::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(107,196,74,0.08) 0%, transparent 60%),
        linear-gradient(180deg, transparent 50%, rgba(107,196,74,0.04) 100%);
}

.panel-overlay {
    position: absolute;
    inset: 0;
}

.panel-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-16) var(--spacing-10);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.panel-content--right {
    align-items: flex-end;
    text-align: right;
}

.panel-label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-gray-500);
}

.panel-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--fw-black);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-white);
    max-width: 300px;
}

.sound-wave {
    margin-top: var(--spacing-4);
    width: 200px;
    opacity: 0.6;
}

/* Divider */
.experience-divider {
    width: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.experience-block-divider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.divider-block-svg {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
}

.divider-green-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 80px;
    background: var(--color-green);
    box-shadow: 0 0 20px var(--color-green);
}

/* Floating stat card on divider */
.divider-stat-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(60px);
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(76,175,80,0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-4) var(--spacing-5);
    text-align: center;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    z-index: 4;
    width: 200px;
    margin-left: -100px;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    padding: 20px 0px;
}

.stat-card__icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-2);
}

.stat-card-icon { width: 24px; height: 24px; }

.stat-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-card__label {
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--color-gray-500);
    text-transform: uppercase;
}

.stat-card__value {
    font-size: var(--fs-xl);
    font-weight: var(--fw-black);
    color: var(--color-white);
    line-height: 1;
}

.stat-card__sub {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--color-green);
    text-transform: uppercase;
}

/* Experience caption */
.experience-caption {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: var(--spacing-8);
}

.experience-caption p {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .experience-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .experience-divider {
        width: 100%;
        height: 120px;
    }
    .divider-block-svg {
        width: 100%;
        height: 120px;
    }
    .divider-stat-card {
        transform: translateX(-50%) translateY(20px);
    }
    .panel-title { max-width: 100%; }
    .panel-content--right {
        align-items: flex-start;
        text-align: left;
    }
    .experience-caption {
        flex-direction: column;
        gap: var(--spacing-4);
    }
}

/* ── STATISTICS SECTION ───────────────────────────────────── */
.stats-section {
    background: var(--color-bg-2);
    position: relative;
    overflow: hidden;
}

.stats-bg { position: absolute; inset: 0; pointer-events: none; }

.stats-glow-line {
    position: absolute;
    height: 1px;
    width: 100%;
}

.stats-glow-line--1 {
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(107,196,74,0.4), transparent);
}

.stats-glow-line--2 {
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(107,196,74,0.2), transparent);
}

.stats-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-6);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-6) var(--spacing-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-3);
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.stat-item:hover {
    border-color: rgba(107,196,74,0.3);
    box-shadow: var(--shadow-green);
}

.stat-item__icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-3);
}

.stat-feature-icon { width: 40px; height: 40px; }

.stat-item__number {
    margin-bottom: var(--spacing-2);
}

.stat-num {
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    font-weight: var(--fw-black);
    color: var(--color-green);
    letter-spacing: 0.02em;
    line-height: 1.2;
    display: block;
    text-transform: uppercase;
    word-break: break-word;
}

.stat-item__label {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-4);
}

.stat-item__bar {
    height: 2px;
    background: rgba(107,196,74,0.1);
    border-radius: 1px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--color-green);
    width: 0;
    transition: width 1.5s ease;
    box-shadow: 0 0 8px var(--color-green);
}

@media (max-width: 960px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--spacing-4); }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-3); }
}
@media (max-width: 400px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section {
    background: var(--color-bg);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.about-heading {
    font-size: clamp(2rem, 4.5vw, var(--fs-5xl));
    font-weight: var(--fw-black);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: var(--spacing-4);
}

.about-subheading {
    font-size: var(--fs-xl);
    color: var(--color-gray-300);
    font-weight: var(--fw-light);
    margin-bottom: var(--spacing-4);
}

/* Timeline */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-8);
    padding-left: var(--spacing-4);
    border-left: 1px solid var(--color-border);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-4);
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: calc(-1 * var(--spacing-4) - 4px);
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 8px var(--color-green);
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
}

.timeline-year {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-content p {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-placeholder {
    width: 100%;
}

.about-img-placeholder svg {
    width: 100%;
    height: auto;
}

.about-tagline-overlay {
    position: absolute;
    bottom: var(--spacing-8);
    left: var(--spacing-6);
}

.about-tagline-line {
    font-size: var(--fs-xl);
    font-weight: var(--fw-black);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
}

.about-tagline-line--green {
    color: var(--color-green);
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
}

/* ── FIRE SAFETY SECTION ──────────────────────────────────── */
.fire-section {
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
    padding: var(--spacing-32) 0;
    border-top: 1px solid rgba(255, 106, 0, 0.06);
    border-bottom: 1px solid rgba(255, 106, 0, 0.06);
}

/* Ambient background glow */
.fire-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.fire-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.fire-bg__glow--1 {
    /* Main fire ball – right-center */
    width: 55%;
    height: 90%;
    right: -8%;
    top: 5%;
    background: radial-gradient(ellipse, rgba(255, 70, 0, 0.22) 0%, rgba(255, 130, 0, 0.10) 45%, transparent 72%);
    animation: fire-breathe 4s ease-in-out infinite alternate;
}

.fire-bg__glow--2 {
    /* Secondary amber pool – bottom-right */
    width: 38%;
    height: 55%;
    right: 10%;
    bottom: -5%;
    background: radial-gradient(ellipse, rgba(255, 160, 0, 0.14) 0%, transparent 70%);
    animation: fire-breathe 3.2s ease-in-out infinite alternate-reverse;
}

.fire-bg__glow--3 {
    /* Faint green counterbalance – left */
    width: 28%;
    height: 50%;
    left: -4%;
    top: 25%;
    background: radial-gradient(ellipse, rgba(107, 196, 74, 0.05) 0%, transparent 70%);
}

.fire-bg__scanline {
    /* Subtle horizontal scanline texture */
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.04) 3px,
        rgba(0, 0, 0, 0.04) 4px
    );
    pointer-events: none;
}

@keyframes fire-breathe {
    0%   { opacity: 0.65; transform: scale(0.96); }
    100% { opacity: 1;    transform: scale(1.06); }
}

/* Ember particles */
.fire-embers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.fire-ember {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ff6a00;
    box-shadow: 0 0 5px 2px rgba(255, 106, 0, 0.55);
    opacity: 0;
    bottom: -6px;
    /* GSAP controls position + animation */
}

/* Layout */
.fire-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── LEFT: Content ── */
.fire-content {
    max-width: 540px;
}

/* Badge */
.fire-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-2) var(--spacing-4) var(--spacing-2) var(--spacing-3);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 106, 0, 0.06);
    backdrop-filter: blur(8px);
    margin-bottom: var(--spacing-8);
    position: relative;
    will-change: transform, opacity;
}

.fire-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6a00;
    flex-shrink: 0;
    box-shadow: 0 0 6px 2px rgba(255, 106, 0, 0.5);
    animation: ember-pulse 2s ease-in-out infinite;
}

@keyframes ember-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

.fire-badge__svg { width: 18px; height: 18px; flex-shrink: 0; }

.fire-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.fire-badge__label {
    font-size: 0.65rem;
    color: #ff8c3a;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fire-badge__value {
    font-size: var(--fs-sm);
    color: var(--color-white);
    font-weight: var(--fw-bold);
}

/* Masked heading */
.fire-heading {
    font-size: clamp(3.8rem, 7.5vw, 7rem);
    font-weight: var(--fw-black);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-8);
    color: var(--color-white);
}

.fire-heading__clip {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em; /* prevent descender clipping */
}

.fire-heading__word {
    display: block;
    will-change: transform;
    /* GSAP sets translateY(110%) → 0 */
}

/* Sub heading */
.fire-sub {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.9;
    margin-bottom: var(--spacing-6);
    will-change: transform, opacity;
}

.fire-sub strong {
    color: var(--color-white);
    font-weight: var(--fw-bold);
}

/* Description */
.fire-desc {
    font-size: var(--fs-base);
    color: var(--color-gray-500);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: var(--spacing-10);
    will-change: transform, opacity;
}

/* Feature mini-icons */
.fire-features {
    display: flex;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    flex-wrap: wrap;
}

.fire-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    will-change: transform, opacity;
}

.fire-feat__icon { width: 26px; height: 26px; }

.fire-feat__label {
    font-size: 0.58rem;
    color: var(--color-gray-500);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
    max-width: 60px;
    line-height: 1.35;
}

/* Tagline */
.fire-tagline-wrap {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    will-change: transform, opacity;
}

.fire-tagline__bar {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--color-green);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--color-green);
}

.fire-tagline {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    line-height: 1.4;
}

/* ── RIGHT: Visual ── */
.fire-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

/* Floating badge */
.fire-float-badge {
    position: absolute;
    top: -12px;
    right: -16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    will-change: transform, opacity;
}

.fire-float-badge__pulse {
    position: absolute;
    inset: -5px;
    border-radius: calc(var(--radius-lg) + 5px);
    border: 1px solid rgba(255, 106, 0, 0.2);
    animation: float-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50%       { opacity: 0.2; transform: scale(1.05); }
}

.fire-float-badge__svg { width: 34px; height: 34px; flex-shrink: 0; }

.fire-float-badge__body {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.fire-float-badge__body span {
    font-size: 0.62rem;
    color: var(--color-gray-500);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fire-float-badge__body strong {
    font-size: var(--fs-sm);
    color: var(--color-white);
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
}

/* Image frame */
.fire-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    /* GSAP animates clip-path */
    clip-path: inset(100% 0 0 0 round 16px);
    will-change: clip-path, transform;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 106, 0, 0.1),
        0 0 60px rgba(255, 80, 0, 0.12);
}

.fire-image-ring {
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    /* background: conic-gradient(
        from 180deg,
        rgba(255, 106, 0, 0.5) 0deg,
        rgba(255, 200, 0, 0.3) 90deg,
        transparent 160deg,
        transparent 200deg,
        rgba(107, 196, 74, 0.3) 270deg,
        rgba(255, 106, 0, 0.5) 360deg
    ); */
    z-index: 0;
    animation: ring-spin 8s linear infinite;
    filter: blur(3px);
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Flame base layers */
.fire-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

.fire-base__layer {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    filter: blur(22px);
    animation: flame-flicker 3s ease-in-out infinite;
}

.fire-base__layer--1 {
    width: 70%;
    height: 100%;
    left: 15%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 60, 0, 0.85) 0%, rgba(255, 120, 0, 0.4) 45%, transparent 75%);
    animation-duration: 3.5s;
}

.fire-base__layer--2 {
    width: 45%;
    height: 80%;
    left: 5%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 130, 0, 0.6) 0%, transparent 70%);
    animation-duration: 2.8s;
    animation-delay: -1.2s;
}

.fire-base__layer--3 {
    width: 45%;
    height: 80%;
    right: 5%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 130, 0, 0.6) 0%, transparent 70%);
    animation-duration: 3.2s;
    animation-delay: -0.7s;
}

@keyframes flame-flicker {
    0%,100% { opacity: 0.55; transform: scaleX(1)   scaleY(1); }
    30%      { opacity: 0.75; transform: scaleX(1.04) scaleY(1.07); }
    65%      { opacity: 0.45; transform: scaleX(0.97) scaleY(0.94); }
}

/* Product image */
.fire-image {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    display: block;
}

/* Glow overlays on top of image */
.fire-image-glow {
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.fire-image-glow--bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 60, 0, 0.35) 0%, transparent 100%);
    mix-blend-mode: screen;
}

.fire-image-glow--rim {
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: inset 0 -30px 60px rgba(255, 80, 0, 0.18),
                inset 0  30px 60px rgba(0, 0, 0, 0.3);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .fire-inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-12);
    }
    .fire-visual { order: -1; }
    .fire-float-badge { top: 12px; right: 8px; }
    .fire-content { max-width: 100%; }
    .fire-desc { max-width: 100%; }
}

@media (max-width: 600px) {
    .fire-heading { font-size: clamp(3rem, 12vw, 4.5rem); }
    .fire-features { gap: var(--spacing-6); }
    .fire-section { padding: var(--spacing-20) 0; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
    background: var(--color-bg-2);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107,196,74,0.2), transparent);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--spacing-6);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--color-bg-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(107,196,74,0.2);
    transform: translateY(-4px);
}

.testimonial-card__quote {
    font-size: 5rem;
    line-height: 0.8;
    color: rgba(107,196,74,0.12);
    font-family: Georgia, serif;
    margin-bottom: var(--spacing-4);
    font-weight: var(--fw-black);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-4);
}

.star {
    font-size: 1rem;
    color: rgba(255,255,255,0.15);
}

.star--filled {
    color: var(--color-green);
}

.testimonial-card__content {
    font-size: var(--fs-sm);
    color: var(--color-gray-300);
    line-height: 1.8;
    margin-bottom: var(--spacing-6);
    font-style: normal;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding-top: var(--spacing-4);
    border-top: 1px solid var(--color-border);
}

.testimonial-card__photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(107,196,74,0.2);
}

.testimonial-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__photo--initials {
    background: var(--color-green-glow);
    border: 1px solid var(--color-border-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card__photo--initials span {
    font-size: var(--fs-lg);
    font-weight: var(--fw-black);
    color: var(--color-green);
}

.testimonial-card__name {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
}

.testimonial-card__role {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-gray-500);
    letter-spacing: 0.04em;
}

/* Slider controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.testimonial-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-btn:hover {
    border-color: var(--color-green);
    color: var(--color-green);
    background: rgba(107,196,74,0.06);
}

.testimonials-dots {
    display: flex;
    gap: var(--spacing-2);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
    border: none;
}

.testimonial-dot.active {
    background: var(--color-green);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
    .testimonial-card { flex: 0 0 100%; }
}

/* ── FAQ SECTION ──────────────────────────────────────────── */
.faq-section {
    background: var(--color-bg);
    position: relative;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-16);
    align-items: start;
}

.faq-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: var(--fw-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: var(--spacing-4);
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-6) 0;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: var(--spacing-4);
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-green);
}

.faq-question[aria-expanded="true"] {
    color: var(--color-green);
}

.faq-question__text {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-question__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity var(--transition-fast), transform var(--transition-base);
}

.faq-icon--plus { opacity: 1; }
.faq-icon--minus { opacity: 0; }

.faq-question[aria-expanded="true"] .faq-icon--plus { opacity: 0; transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon--minus { opacity: 1; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer--open {
    max-height: 400px;
}

.faq-answer__inner {
    padding-bottom: var(--spacing-6);
}

.faq-answer__inner p {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-header { position: sticky; top: 0; }
}

/* ── FINAL CTA SECTION ────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: var(--spacing-32) 0;
    overflow: hidden;
    background: var(--color-bg-2);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(107,196,74,0.08) 0%, transparent 70%);
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(107,196,74,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,196,74,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.cta-block-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    opacity: 0.5;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: 0.5rem 1.25rem;
    background: rgba(107,196,74,0.08);
    border: 1px solid rgba(107,196,74,0.2);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: var(--spacing-8);
}

.cta-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    animation: pulse-dot 2s infinite;
}

.cta-heading {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: var(--fw-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: var(--spacing-6);
}

.cta-description {
    font-size: var(--fs-lg);
    color: var(--color-gray-500);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto var(--spacing-10);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-10);
}

.cta-btn-primary {
    padding: 1rem 2.5rem;
    font-size: var(--fs-base);
}

.cta-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-700);
    margin-top: var(--spacing-8);
    padding-top: var(--spacing-8);
    border-top: 1px solid var(--color-border);
}

.cta-tagline-dot {
    font-size: 0.5rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    background: var(--color-bg-2);
    border-top: 1px solid var(--color-border);
}

.footer-main {
    padding: var(--spacing-20) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-12);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 1.25rem;
    font-weight: var(--fw-black);
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-4);
    color: var(--color-white);
    text-decoration: none;
    line-height: 1;
}

.footer-tagline {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: var(--spacing-3);
}

.footer-desc {
    font-size: var(--fs-sm);
    color: var(--color-gray-700);
    line-height: 1.75;
    margin-bottom: var(--spacing-6);
    max-width: 320px;
}

/* Social */
.footer-social {
    display: flex;
    gap: var(--spacing-3);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--color-gray-700);
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.footer-social-link:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

/* Footer columns */
.footer-col-title {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--spacing-6);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.footer-menu li a {
    font-size: var(--fs-sm);
    color: var(--color-gray-700);
    transition: color var(--transition-fast);
    display: block;
    padding: 2px 0;
}

.footer-menu li a:hover {
    color: var(--color-green);
}

/* Contact list */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    font-size: var(--fs-sm);
    color: var(--color-gray-700);
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-green);
}

.footer-contact a:hover {
    color: var(--color-green);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: var(--spacing-6) 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.copyright {
    font-size: var(--fs-xs);
    color: var(--color-gray-700);
    letter-spacing: 0.04em;
}

.footer-bottom-badges {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.badge {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-700);
}

.badge--green { color: var(--color-green); }

.badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gray-900);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-desc { max-width: 100%; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── INNER PAGE STYLES ────────────────────────────────────── */
.inner-page {
    padding-top: calc(var(--header-height) + var(--topbar-height) + var(--spacing-16));
    padding-bottom: var(--spacing-20);
    min-height: 70vh;
}

.inner-page-header {
    margin-bottom: var(--spacing-12);
}

.page-title {
    font-size: clamp(2rem, 5vw, var(--fs-5xl));
    font-weight: var(--fw-black);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
}

.post-card {
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.post-card:hover {
    border-color: rgba(107,196,74,0.2);
    transform: translateY(-4px);
}

.post-card__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card__body {
    padding: var(--spacing-6);
}

.post-card__meta {
    font-size: var(--fs-xs);
    color: var(--color-gray-700);
    margin-bottom: var(--spacing-3);
}

.post-card__title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--spacing-3);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.post-card__title a:hover { color: var(--color-green); }

.post-card__excerpt {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: var(--spacing-4);
}

.no-results {
    text-align: center;
    padding: var(--spacing-20) 0;
    color: var(--color-gray-500);
}

@media (max-width: 900px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }

/* ── ANIMATION STATES ─────────────────────────────────────── */

/* Elements start hidden for GSAP to animate in */
[data-gsap="fade-up"],
[data-gsap="text-reveal"],
[data-gsap="heading-reveal"],
[data-gsap="list-reveal"] {
    opacity: 0;
    transform: translateY(40px);
}

/* section-header: the wrapper stays visible; children slide up individually */
[data-gsap="section-header"] > * {
    opacity: 0;
    transform: translateY(20px);
}

[data-gsap="image-reveal"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-gsap="badge-pop"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-gsap="feature-card"] {
    opacity: 0;
    transform: translateY(40px);
}

[data-gsap="counter"] {
    opacity: 0;
    transform: translateY(20px);
}

[data-gsap="cta-reveal"] {
    opacity: 0;
    transform: translateY(60px);
}

[data-gsap="stagger-reveal"] > * {
    opacity: 0;
    transform: translateY(30px);
}

/* Reduce motion override */
@media (prefers-reduced-motion: reduce) {
    [data-gsap] {
        opacity: 1 !important;
        transform: none !important;
    }
    [data-gsap="stagger-reveal"] > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── ADMIN CSS PLACEHOLDER ─────────────────────────────────── */
