
/* =========================================================
   PURE LIVING CO.
   MAIN WEBSITE STYLESHEET
   ========================================================= */

/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --primary: #087fca;
    --primary-dark: #056aa8;
    --primary-light: #e7f5fc;

    --navy: #111111;
    --navy-light: #1d1d1d;

    --white: #ffffff;
    --off-white: #f7fbff;
    --soft-white: #edf7fc;

    --text: #151515;
    --text-light: #566b78;
    --muted: #7b8b95;

    --border: #d7e6ee;
    --border-light: #e7f0f5;

    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.14);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --transition: 0.35s ease;
    --container: 1240px;
}


/* =========================================================
   02. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-height: 100vh;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "DM Sans", sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

video {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}

.section-padding {
    padding: 110px 0;
}


/* =========================================================
   04. GLOBAL TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(48px, 6vw, 82px);
}

h2 {
    font-size: clamp(38px, 4vw, 60px);
}

h3 {
    font-size: 23px;
}

p {
    font-size: 15px;
    color: var(--text-light);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--primary);
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.section-intro {
    max-width: 720px;
}

.section-intro h2 {
    margin-bottom: 24px;
}

.section-intro p {
    max-width: 650px;
}

.centered-intro {
    margin: 0 auto 60px;
    text-align: center;
}

.centered-intro .section-label {
    justify-content: center;
}

.centered-intro p {
    margin: 0 auto;
}


/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px);
}

.navbar {
    width: min(1380px, calc(100% - 50px));
    min-height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.brand-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-logo img,
.footer-logo img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.brand-logo span,
.footer-logo span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-logo strong,
.footer-logo strong {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    letter-spacing: 0.07em;
    color: var(--navy);
}

.brand-logo small,
.footer-logo small {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.30em;
    color: var(--primary);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 45px;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link i {
    font-size: 10px;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    border-radius: 20px;
    background: var(--primary);
}

.home-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    min-width: 185px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--soft-white);
    transition: var(--transition);
}

.nav-icon-btn:hover {
    color: var(--white);
    background: var(--primary);
    transform: rotate(8deg);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    color: var(--white);
    background: var(--primary);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.header-cta i {
    font-size: 12px;
    transition: transform var(--transition);
}

.header-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 127, 202, 0.22);
}

.header-cta:hover i {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    color: var(--navy);
    background: var(--soft-white);
    font-size: 19px;
}


/* =========================================================
   06. BUTTONS
   ========================================================= */

.primary-btn,
.secondary-btn,
.outline-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 23px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.primary-btn {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(8, 127, 202, 0.20);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(8, 127, 202, 0.28);
}

.primary-btn i,
.secondary-btn i,
.outline-btn i {
    transition: transform var(--transition);
}

.primary-btn:hover i,
.secondary-btn:hover i,
.outline-btn:hover i {
    transform: translateX(4px);
}

.secondary-btn {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.95);
}

.secondary-btn:hover {
    color: var(--white);
    background: var(--navy);
    transform: translateY(-4px);
}

.outline-btn {
    border: 1px solid var(--border);
    color: var(--navy);
    background: var(--white);
}

.outline-btn:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}

.text-link i {
    transition: transform var(--transition);
}

.text-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   07. HERO
   ========================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-home-one {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video,
.hero-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    z-index: -4;
}

.hero-image {
    z-index: -3;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.50) 48%,
            rgba(0, 0, 0, 0.66) 100%
        );
}

.hero-content {
    width: min(900px, calc(100% - 50px));
    margin: 0 auto;
    padding-top: 75px;
    text-align: center;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.20em;
    color: #e7f5ff;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.hero-content h1 {
    margin-bottom: 28px;
    color: var(--white);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    width: min(680px, 100%);
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
}

.hero-scroll-indicator i {
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   08. SCROLL REVEAL ANIMATION
   ========================================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   09. AIR AWARENESS
   ========================================================= */

.air-awareness-section {
    background: var(--off-white);
}

.awareness-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 90px;
    margin-top: 65px;
}

.awareness-visual {
    position: relative;
    min-height: 540px;
}

.awareness-visual > img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.air-status-card {
    position: absolute;
    right: -30px;
    bottom: 35px;
    min-width: 255px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    animation: floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.status-dot {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 7px rgba(8, 127, 202, 0.10);
}

.air-status-card div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.air-status-card small {
    font-size: 15px;
    color: var(--muted);
}

.air-status-card strong {
    font-size: 15px;
    color: var(--navy);
}

.air-status-card > i {
    color: var(--primary);
    font-size: 20px;
}

.awareness-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.awareness-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid var(--border);
}

.awareness-point:first-child {
    border-top: 1px solid var(--border);
}

.awareness-point > span {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    
}

.awareness-point:hover > span {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: rotate(10deg);
}

.awareness-point h3 {
    margin-bottom: 7px;
    font-size: 21px;
}

.awareness-point p {
    max-width: 470px;
}


/* =========================================================
   10. AIR EXPERIENCE
   ========================================================= */

.air-experience-section {
    padding: 120px 0;
    overflow: hidden;
    background: var(--navy);
}

.experience-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.experience-copy .section-label {
    color: #087fca;
}

.experience-copy .section-label::before {
    background: #087fca;
}

.experience-copy h2 {
    color: var(--white);
}

.experience-copy h2 span {
    color: #087fca;
}

.experience-copy > p {
    max-width: 520px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    text-align: justify;
}

.experience-copy .text-link {
    color: #087fca;
}

.experience-visual {
    position: relative;
    min-height: 570px;
}

.experience-visual > img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    opacity: 0.92;
}

.experience-visual::before {
    content: "";
    position: absolute;
    top: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(8, 127, 202, 0.30);
    border-radius: 50%;
    animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.floating-air-card {
    position: absolute;
    left: -35px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 275px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    animation: floatingCard 4.5s ease-in-out infinite;
}

.floating-air-card > i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--primary);
    background: var(--primary-light);
}

.floating-air-card div {
    display: flex;
    flex-direction: column;
}

.floating-air-card strong {
    color: var(--navy);
    font-size: 15px;
}

.floating-air-card span {
    color: var(--text-light);
    font-size: 15px;
}


/* =========================================================
   11. FEATURED PRODUCTS
   ========================================================= */

.featured-products-section {
    background: var(--white);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.875fr 0.875fr;
    gap: 22px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--soft-white);
}

.product-card-large .product-image {
    height: 475px;
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(0, 0, 0, 0.20)
    );
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-tag {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 7px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.90);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-arrow {
    opacity: 1;
    transform: translateY(0);
}

.product-arrow:hover {
    color: var(--white);
    background: var(--primary);
    transform: rotate(45deg);
}

.product-info {
    padding: 20px 20px 0;
}

.product-info > span {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

.product-info h3 {
    margin: 7px 0 8px;
}

.product-info p {
    max-width: 340px;
}


/* =========================================================
   12. TECHNOLOGY
   ========================================================= */

.technology-section {
    background: var(--soft-white);
}

.technology-header {
    max-width: 750px;
    margin-bottom: 58px;
}

.technology-header h2 {
    margin-bottom: 22px;
}

.technology-header p {
    max-width: 630px;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.technology-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.technology-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.technology-card > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.technology-card:hover > img {
    transform: scale(1.07);
}

.technology-number {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 800;
}

.technology-content {
    padding: 28px;
}

.technology-content > span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.technology-content h3 {
    margin: 9px 0 10px;
    font-size: 25px;
}

.technology-content p {
    font-size: 15px;
}

.technology-link {
    margin-top: 45px;
    text-align: center;
}


/* =========================================================
   13. ROOM SOLUTIONS
   ========================================================= */

.room-solutions-section {
    background: var(--white);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.room-card {
    position: relative;
    height: 470px;
    overflow: hidden;
    border-radius: 22px;
}

.room-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.76) 100%
    );
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.room-card:hover img {
    transform: scale(1.09);
}

.room-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: var(--white);
}

.room-overlay span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #087fca;
}

.room-overlay h3 {
    margin: 7px 0 6px;
    color: var(--white);
    font-size: 27px;
}

.room-overlay p {
    color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   14. SMART CHOICE
   ========================================================= */

.smart-choice-section {
    background: var(--off-white);
}

.smart-choice-layout {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 85px;
}

.smart-choice-visual {
    position: relative;
}

.smart-choice-visual > img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.quality-badge {
    position: absolute;
    right: -28px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 270px;
    padding: 17px 20px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    border-radius: 13px;
    color: var(--primary);
    background: var(--primary-light);
    font-size: 19px;
}

.quality-badge div:last-child {
    display: flex;
    flex-direction: column;
}

.quality-badge strong {
    color: var(--navy);
    font-size: 15px;
}

.quality-badge span {
    color: var(--text-light);
    font-size: 15px;
}

.smart-choice-content h2 {
    margin-bottom: 23px;
}

.smart-choice-content h2 span {
    color: var(--primary);
}

.smart-choice-content > p {
    max-width: 570px;
    margin-bottom: 30px;
}

.choice-list {
    margin-bottom: 35px;
}

.choice-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.choice-item > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-light);
    transition: var(--transition);
}

.choice-item:hover > i {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-8deg);
}

.choice-item h3 {
    margin-bottom: 3px;
    font-size: 18px;
}

.choice-item p {
    font-size: 15px;
}


/* =========================================================
   15. AMC / MAINTENANCE
   ========================================================= */

.maintenance-section {
    background: var(--white);
}

.maintenance-banner {
    position: relative;
    min-height: 530px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border-radius: 28px;
    background: var(--navy);
}

.maintenance-content {
    align-self: center;
    padding: 65px;
}

.maintenance-content .section-label {
    color: #087fca;
}

.maintenance-content .section-label::before {
    background: #087fca;
}

.maintenance-content h2 {
    color: var(--white);
    margin-bottom: 22px;
}

.maintenance-content > p {
    max-width: 480px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.70);
    text-align: justify;
}

.maintenance-visual {
    position: relative;
    min-height: 530px;
    overflow: hidden;
}

.maintenance-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.maintenance-banner:hover .maintenance-visual img {
    transform: scale(1.06);
}

.maintenance-icon {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    font-size: 20px;
}


/* =========================================================
   16. FINAL CTA
   ========================================================= */

.final-cta-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.final-cta-image {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.final-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 13s ease-in-out infinite alternate;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(0, 0, 0, 0.68);
}

.final-cta-content {
    width: min(850px, calc(100% - 50px));
    text-align: center;
}

.final-cta-content .hero-eyebrow {
    margin-bottom: 22px;
}

.final-cta-content h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(42px, 5vw, 68px);
}

.final-cta-content > p {
    max-width: 620px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
}


/* =========================================================
   17. FOOTER
   ========================================================= */

.site-footer {
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.70);
    background: #090909;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 65px;
}

.footer-brand .footer-logo strong {
    color: var(--primary);
}

.footer-brand .footer-logo small {
    color: #087fca;
}

.footer-brand > p {
    max-width: 330px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.63);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-links a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 11px;
    color: var(--white);
    font-size: 17px;
    letter-spacing: 0;
}

.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    transition: var(--transition);
}

.footer-column a:hover {
    color: #087fca;
    transform: translateX(4px);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.50);
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 15px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 15px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #087fca;
}


/* =========================================================
   18. TABLET — 1024px
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 50px, var(--container));
    }

    .navbar {
        width: calc(100% - 30px);
    }

    .nav-wrapper {
        gap: 10px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 0 8px;
        font-size: 15px;
    }

    .nav-link.active::after {
        left: 8px;
        right: 8px;
    }

    .header-cta {
        padding: 0 13px;
    }

    .awareness-grid,
    .experience-layout,
    .smart-choice-layout {
        gap: 55px;
    }

    .product-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-card-large {
        grid-column: span 2;
    }

    .technology-grid {
        gap: 15px;
    }

    .footer-main {
        gap: 35px;
    }
}


/* =========================================================
   19. TABLET / MOBILE NAVIGATION — 900px
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        padding: 10px 0;
    }

    .navbar {
        min-height: 65px;
        padding: 0 15px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        order: 3;
    }

    .nav-wrapper {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: calc(100% - 30px);
        max-height: calc(100vh - 100px);
        margin: 0 auto;
        padding: 16px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(18px);
        transition: var(--transition);
    }

    .nav-wrapper.menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 0 13px;
        border-radius: 9px;
    }

    .nav-link:hover {
        background: var(--primary-light);
    }

    .nav-link.active::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        display: none;
        margin: 3px 0 5px;
        padding: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--soft-white);
    }

    .home-dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .home-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-actions {
        width: 100%;
        padding-top: 13px;
        border-top: 1px solid var(--border);
    }

    .header-cta {
        flex: 1;
    }

    .section-padding {
        padding: 85px 0;
    }

    .awareness-grid,
    .experience-layout,
    .smart-choice-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .awareness-visual {
        min-height: auto;
    }

    .experience-layout {
        display: flex;
        flex-direction: column;
    }

    .experience-copy {
        width: 100%;
    }

    .technology-grid,
    .room-grid {
        grid-template-columns: 1fr 1fr;
    }

    .technology-card:last-child {
        grid-column: span 2;
    }

    .maintenance-banner {
        grid-template-columns: 1fr;
    }

    .maintenance-visual {
        min-height: 420px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   20. MOBILE — 650px
   ========================================================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 36px);
    }

    .section-padding {
        padding: 70px 0;
    }

    h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    h2 {
        font-size: clamp(34px, 9vw, 45px);
    }

    h3 {
        font-size: 21px;
    }

    .navbar {
        width: calc(100% - 20px);
    }

    .brand-logo img {
        width: 39px;
        height: 39px;
    }

    .brand-logo strong {
        font-size: 14px;
    }

    .brand-logo small {
        font-size: 9px;
    }

    .hero-section {
        min-height: 760px;
    }

    .hero-content {
        width: calc(100% - 35px);
        padding-top: 40px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        width: min(300px, 100%);
    }

    .hero-scroll-indicator {
        bottom: 20px;
        font-size: 15px;
    }

    .awareness-grid {
        margin-top: 45px;
    }

    .awareness-visual > img {
        height: 390px;
        border-radius: 22px;
    }

    .air-status-card {
        right: 15px;
        bottom: 20px;
        min-width: 225px;
    }

    .awareness-point {
        grid-template-columns: 40px 1fr;
        gap: 14px;
        padding: 22px 0;
    }

    .awareness-point > span {
        width: 38px;
        height: 38px;
    }

    .air-experience-section {
        padding: 75px 0;
    }

    .experience-visual {
        min-height: 420px;
    }

    .experience-visual > img {
        height: 420px;
        border-radius: 22px;
    }

    .floating-air-card {
        left: 15px;
        bottom: 20px;
        min-width: 230px;
        padding: 15px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .product-card-large {
        grid-column: auto;
    }

    .product-image,
    .product-card-large .product-image {
        height: 360px;
    }

    .technology-grid,
    .room-grid {
        grid-template-columns: 1fr;
    }

    .technology-card:last-child {
        grid-column: auto;
    }

    .technology-card {
        min-height: auto;
    }

    .technology-card > img {
        height: 270px;
    }

    .room-card {
        height: 400px;
    }

    .smart-choice-visual > img {
        height: 480px;
        border-radius: 22px;
    }

    .quality-badge {
        right: 15px;
        bottom: 20px;
        min-width: 240px;
    }

    .maintenance-content {
        padding: 42px 28px;
    }

    .maintenance-visual {
        min-height: 330px;
    }

    .maintenance-banner {
        border-radius: 22px;
    }

    .final-cta-section {
        min-height: 620px;
    }

    .final-cta-content {
        width: calc(100% - 35px);
    }

    .final-cta-content h2 {
        font-size: clamp(38px, 10vw, 50px);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 45px;
    }

    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}


/* =========================================================
   21. SMALL MOBILE — 400px
   ========================================================= */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 28px);
    }

    .navbar {
        width: calc(100% - 12px);
    }

    .brand-logo {
        gap: 7px;
    }

    .brand-logo img {
        width: 35px;
        height: 35px;
    }

    .brand-logo strong {
        font-size: 13px;
    }

    .nav-icon-btn {
        width: 37px;
        height: 37px;
    }

    .header-cta {
        padding: 0 10px;
        font-size: 15px;
    }

    .hero-content {
        width: calc(100% - 25px);
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 0.13em;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        width: 20px;
    }

    .air-status-card {
        left: 15px;
        right: 15px;
        min-width: 0;
    }

    .floating-air-card {
        left: 12px;
        right: 12px;
        min-width: 0;
    }

    .quality-badge {
        left: 12px;
        right: 12px;
        min-width: 0;
    }

    .maintenance-content {
        padding: 38px 22px;
    }

    .maintenance-content .primary-btn {
        width: 100%;
    }

    .primary-btn,
    .secondary-btn,
    .outline-btn {
        width: 100%;
        padding: 0 17px;
    }
}


/* =========================================================
   22. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(8, 127, 202, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   24. NAVBAR VISIBILITY FIX
   Keeps navigation readable on the light glass navbar.
   ========================================================= */

.site-header .brand-logo strong,
.site-header .nav-link,
.site-header .dropdown-menu a {
    color: #151515;
}

.site-header .nav-link:hover,
.site-header .nav-link.active,
.site-header .dropdown-menu a:hover {
    color: var(--primary);
}

.site-header .nav-link.active::after {
    background: #087fca;
}

.site-header .nav-icon-btn,
.site-header .menu-toggle {
    color: black;
}

/* Dark mode: dark navbar + light navigation text */
body.dark-mode .site-header .brand-logo strong,
body.dark-mode .site-header .nav-link,
body.dark-mode .site-header .dropdown-menu a {
    color: #f5f5f5;
}

body.dark-mode .site-header .nav-link:hover,
body.dark-mode .site-header .nav-link.active,
body.dark-mode .site-header .dropdown-menu a:hover {
    color: #087fca;
}

body.dark-mode .site-header .nav-link.active::after {
    background: #087fca;
}

body.dark-mode .site-header .nav-icon-btn,
body.dark-mode .site-header .menu-toggle {
    color: #f5f5f5;
}

/* Keep the mobile menu readable in both modes */
@media (max-width: 900px) {
    .site-header .nav-wrapper {
        background: rgba(255, 255, 255, 0.99);
    }

    .site-header .nav-link {
        color: #151515;
    }

    .site-header .nav-link:hover,
    .site-header .nav-link.active {
        color:var(--primary);
    }

    body.dark-mode .site-header .nav-wrapper {
        background: rgba(16, 29, 35, 0.99);
    }

    body.dark-mode .site-header .nav-link {
        color: #f5f5f5;
    }

    body.dark-mode .site-header .nav-link:hover,
    body.dark-mode .site-header .nav-link.active {
        color: #087fca;
    }
}

/* Prevent navigation text from becoming invisible at tablet widths */
@media (min-width: 901px) and (max-width: 1100px) {
    .site-header .nav-link {
        color: #151515;
    }

    body.dark-mode .site-header .nav-link {
        color: #f5f5f5;
    }
}


/* =========================================================
   25. NAVBAR LOGIN BUTTON
   Added for the Login/Register pages.
   Existing navigation, Home dropdown, dark mode, RTL,
   hero and all other page styles remain unchanged.
   ========================================================= */

.header-login {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--navy);
    background: var(--white);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.header-login i {
    font-size: 13px;
    transition: transform var(--transition);
}

.header-login:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 127, 202, 0.18);
}

.header-login:hover i {
    transform: translateY(-1px);
}

/* Dark mode */
body.dark-mode .header-login {
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.12);
    background: #182b32;
}

body.dark-mode .header-login:hover {
    color: #ffffff;
    border-color: #087fca;
    background: #087fca;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1100px) {
    .header-login {
        padding: 0 12px;
        gap: 6px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .header-login {
        flex: 1;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .header-login {
        padding: 0 10px;
        font-size: 15px;
    }
}
/* =========================================================
   PURE LIVING CO. — LOGIN PAGE
   ========================================================= */

.login-page {
    min-height: 100vh;
    overflow-x: hidden;
}


/* =========================================================
   TOP CONTROLS
   ========================================================= */

.login-controls {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 10px;
}

.login-control-btn {
    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;

    backdrop-filter: blur(12px);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.login-control-btn:hover {
    transform: translateY(-3px);
    background: var(--primary);
    border-color: var(--primary);
}

.login-control-btn span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* =========================================================
   BANNER
   ========================================================= */

.login-banner {
    position: relative;

    min-height: 430px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
    isolation: isolate;
}

.login-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    animation: loginZoom 12s ease-in-out infinite alternate;
}

.login-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.91),
            rgba(8, 127, 202, 0.68)
        );

    z-index: -2;
}

.login-banner::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -190px;
    bottom: -280px;

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;

    animation: loginCircle 8s ease-in-out infinite;

    z-index: -1;
}

.login-banner-content {
    width: 100%;
    max-width: 850px;

    padding: 110px 20px 85px;

    margin: 0 auto;

    color: #ffffff;
}

.login-banner-content .section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #ffffff;

    letter-spacing: 2.5px;
}

.login-banner-content h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.05;

    font-weight: 800;
}

.login-banner-content p {
    max-width: 650px;

    margin: 23px auto 0;

    color: rgba(255,255,255,0.88);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   MAIN LOGIN
   ========================================================= */

.login-section {
    padding: 105px 20px;

    background: var(--soft-white);
}

.login-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 500px);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.login-intro {
    width: 100%;
}

.login-image-card {
    position: relative;

    width: 100%;
    max-width: 570px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(16,47,61,0.15);
}

.login-image-card img {
    width: 100%;
    height: 440px;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.login-image-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   AIR FLOATING CARD
   ========================================================= */

.login-air-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 190px;

    padding: 15px 18px;

    border-radius: 16px;

    background: rgba(255,255,255,0.96);

    box-shadow:
        0 15px 45px rgba(16,47,61,0.2);

    backdrop-filter: blur(10px);

    animation: airFloat 4s ease-in-out infinite;
}

.login-air-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 18px;
}

.login-air-card strong {
    display: block;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.login-air-card span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 15px;
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.login-intro-text {
    max-width: 570px;

    padding-top: 34px;
}

.login-intro-text .section-label {
    display: inline-block;

    margin-bottom: 14px;
}

.login-intro-text h2 {
    margin: 0 0 18px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 800;
}

.login-intro-text p {
    margin: 0;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
}


/* =========================================================
   LOGIN BOX
   ========================================================= */

.login-box {
    position: relative;

    width: 100%;

    padding: 43px;

    border: 1px solid var(--border);
    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 25px 70px rgba(16,47,61,0.10);
}

.login-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 40px;
    right: 40px;

    height: 3px;

    border-radius: 0 0 10px 10px;

    background: var(--primary);
}


/* =========================================================
   LOGIN HEADER
   ========================================================= */

.login-box-header {
    text-align: center;

    margin-bottom: 31px;
}

.login-box-icon {
    width: 59px;
    height: 59px;

    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 21px;

    animation: iconPulse 3s ease-in-out infinite;
}

.login-box-header .section-label {
    display: block;

    margin-bottom: 8px;
}

.login-box-header h2 {
    margin: 0;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 32px;

    font-weight: 800;
}

.login-box-header p {
    margin: 10px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   FORM
   ========================================================= */

.login-form-group {
    margin-bottom: 21px;
}

.login-form-group > label,
.login-label-row label {
    display: block;

    margin-bottom: 9px;

    color: var(--primary);

    font-size: 15px;
    font-weight: 700;
}

.login-label-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.login-label-row a {
    color: var(--primary);

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}

.login-label-row a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   INPUT
   ========================================================= */

.login-input {
    position: relative;
    width: 100%;
}

.login-input > i {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);

    font-size: 16px;

    pointer-events: none;

    z-index: 2;
}

.login-input input {
    width: 100%;

    min-height: 54px;

    padding:
        0 48px
        0 48px;

    border: 1px solid var(--border);

    border-radius: 12px;

    outline: none;

    background: var(--soft-white);

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.login-input input:focus {
    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(8,127,140,0.10);
}

.login-input input::placeholder {
    color: var(--muted);
}


/* =========================================================
   PASSWORD TOGGLE
   ========================================================= */

.password-toggle {
    position: absolute;

    right: 13px;
    top: 50%;

    width: 35px;
    height: 35px;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: var(--muted);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary);
}


/* =========================================================
   REMEMBER
   ========================================================= */

.login-remember {
    margin: 5px 0 25px;
}

.login-remember label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    cursor: pointer;

    color: var(--text-light);

    font-size: 15px;
}

.login-remember input {
    width: 17px;
    height: 17px;

    accent-color: var(--primary);

    cursor: pointer;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.login-submit {
    width: 100%;

    min-height: 54px;

    justify-content: center;

    border: 0;

    cursor: pointer;

    font-size: 15px;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.login-divider {
    position: relative;

    margin: 28px 0;

    text-align: center;
}

.login-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    height: 1px;

    background: var(--border);
}

.login-divider span {
    position: relative;
    z-index: 2;

    padding: 0 15px;

    background: var(--white);

    color: var(--muted);

    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   REGISTER
   ========================================================= */

.login-register {
    text-align: center;
}

.login-register p {
    margin: 0 0 9px;

    color: var(--muted);

    font-size: 15px;
}

.login-register a {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.login-register a:hover {
    gap: 13px;

    color: var(--primary-dark);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.login-benefits {
    padding: 100px 20px;

    background: var(--white);
}

.login-benefits-container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}

.login-benefits .section-intro {
    max-width: 680px;

    margin: 0 auto 55px;

    text-align: center;
}

.login-benefits .section-intro .section-label {
    display: inline-block;

    margin-bottom: 14px;
}

.login-benefits .section-intro h2 {
    margin: 0 0 15px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.15;

    font-weight: 800;
}

.login-benefits .section-intro p {
    margin: 0;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.8;
}

.login-benefit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.login-benefit-card {
    position: relative;

    padding: 35px 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: var(--soft-white);

    text-align: center;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.login-benefit-card:hover {
    transform: translateY(-9px);

    border-color: rgba(8,127,140,0.25);

    box-shadow:
        0 20px 50px rgba(16,47,61,0.10);
}

.login-benefit-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.login-benefit-card:hover .login-benefit-icon {
    transform: rotateY(180deg);

    background: var(--primary);

    color: #ffffff;
}

.login-benefit-card h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 700;
}

.login-benefit-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.login-cta-section {
    padding: 70px 20px;

    background: var(--primary-light);
}

.login-cta-container {
    position: relative;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 45px 50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-radius: 24px;

    background: var(--navy);

    box-shadow:
        0 25px 60px rgba(16,47,61,0.18);

    overflow: hidden;
}

.login-cta-container > div {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.login-cta-container .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-light);
}

.login-cta-container h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(27px, 4vw, 40px);

    line-height: 1.2;

    font-weight: 800;
}

.login-cta-container p {
    margin: 0;

    color: rgba(255,255,255,0.75);

    font-size: 15px;

    line-height: 1.8;
}

.login-cta-container .secondary-btn {
    flex-shrink: 0;

    position: relative;
    z-index: 2;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.login-page .scroll-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.login-page .scroll-reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   LOGIN MESSAGE
   ========================================================= */

.login-message {
    margin-bottom: 20px;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 15px;

    line-height: 1.5;

    transition: opacity 0.3s ease;
}

.login-message-error {
    background: #fff0f0;

    color: #b42318;

    border: 1px solid #ffd2d2;
}

.login-message-success {
    background: #edfafa;

    color: #056aa8;

    border: 1px solid #c8eeee;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes loginZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

@keyframes loginCircle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }

}

@keyframes airFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .login-container {
        grid-template-columns:
            minmax(0, 1fr)
            450px;

        gap: 45px;
    }

    .login-box {
        padding: 35px;
    }

}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .login-banner {
        min-height: 390px;
    }

    .login-section {
        padding: 80px 20px;
    }

    .login-container {
        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 55px;
    }

    .login-image-card {
        max-width: 100%;
    }

    .login-intro-text {
        max-width: 100%;
    }

    .login-box {
        max-width: 100%;
    }

    .login-benefit-grid {
        grid-template-columns: 1fr;

        max-width: 600px;

        margin: 0 auto;
    }

    .login-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .login-controls {
        top: 15px;
        right: 15px;

        gap: 7px;
    }

    .login-control-btn {
        width: 40px;
        height: 40px;
    }

    .login-banner {
        min-height: 350px;
    }

    .login-banner-content {
        padding: 85px 18px 65px;
    }

    .login-banner-content h1 {
        font-size: 43px;
    }

    .login-banner-content p {
        font-size: 15px;
    }

    .login-section {
        padding: 65px 16px;
    }

    .login-image-card {
        border-radius: 20px;
    }

    .login-image-card img {
        height: 340px;
    }

    .login-air-card {
        left: 15px;
        bottom: 15px;

        min-width: 175px;

        padding: 12px 14px;
    }

    .login-intro-text {
        padding-top: 27px;
    }

    .login-intro-text h2 {
        font-size: 31px;
    }

    .login-box {
        padding: 29px 20px;

        border-radius: 20px;
    }

    .login-box::before {
        left: 25px;
        right: 25px;
    }

    .login-box-header h2 {
        font-size: 29px;
    }

    .login-benefits {
        padding: 65px 16px;
    }

    .login-benefit-card {
        padding: 30px 22px;
    }

    .login-cta-section {
        padding: 50px 16px;
    }

    .login-cta-container {
        padding: 32px 25px;

        border-radius: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .login-banner-content h1 {
        font-size: 37px;
    }

    .login-box {
        padding: 25px 16px;
    }

    .login-label-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;
    }

    .login-input input {
        min-height: 52px;
    }

    .login-cta-container h2 {
        font-size: 27px;
    }

}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .login-controls {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .login-input > i {
    left: auto;
    right: 17px;
}

html[dir="rtl"] .login-input input {
    padding-left: 48px;
    padding-right: 48px;
}

html[dir="rtl"] .password-toggle {
    right: auto;
    left: 13px;
}

html[dir="rtl"] .login-air-card {
    left: auto;
    right: 25px;
}

@media (max-width: 650px) {

    html[dir="rtl"] .login-controls {
        left: 15px;
    }

    html[dir="rtl"] .login-air-card {
        right: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .login-banner-image,
    .login-banner::after,
    .login-air-card,
    .login-box-icon {
        animation: none;
    }

    .login-page .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* =========================================================
   PURE LIVING CO. — REGISTER PAGE
   ========================================================= */

.register-page {
    min-height: 100vh;
    overflow-x: hidden;
}


/* =========================================================
   TOP CONTROLS
   ========================================================= */

.register-controls {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 10px;
}

.register-control-btn {
    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;

    backdrop-filter: blur(12px);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.register-control-btn:hover {
    transform: translateY(-3px);
    background: var(--primary);
    border-color: var(--primary);
}

.register-control-btn span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* =========================================================
   REGISTER BANNER
   ========================================================= */

.register-banner {
    position: relative;

    width: 100%;
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
    isolation: isolate;
}

.register-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    animation: registerBannerZoom 12s ease-in-out infinite alternate;
}

.register-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.92),
            rgba(8, 127, 202, 0.66)
        );

    z-index: -2;
}

.register-banner::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -210px;
    bottom: -300px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    animation: registerCircleFloat 8s ease-in-out infinite;

    z-index: -1;
}

.register-banner-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 105px 20px 80px;
}

.register-banner-content .section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #ffffff;

    letter-spacing: 2.5px;
}

.register-banner-content h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 6.5vw, 72px);

    line-height: 1.06;

    font-weight: 800;
}

.register-banner-content p {
    max-width: 650px;

    margin: 22px auto 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   MAIN REGISTER SECTION
   ========================================================= */

.register-section {
    padding: 105px 20px;

    background: var(--soft-white);
}

.register-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(400px, 500px)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   REGISTER BOX
   ========================================================= */

.register-box {
    position: relative;

    width: 100%;

    padding: 42px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background: var(--white);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.10);
}

.register-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 40px;
    right: 40px;

    height: 3px;

    border-radius: 0 0 10px 10px;

    background: var(--primary);
}


/* =========================================================
   REGISTER BOX HEADER
   ========================================================= */

.register-box-header {
    text-align: center;

    margin-bottom: 30px;
}

.register-box-icon {
    width: 59px;
    height: 59px;

    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;

    animation: registerIconPulse 3s ease-in-out infinite;
}

.register-box-header .section-label {
    display: block;

    margin-bottom: 8px;
}

.register-box-header h2 {
    margin: 0;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 800;
}

.register-box-header p {
    margin: 10px 0 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   FORM ROW
   ========================================================= */

.register-form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.register-form-group {
    margin-bottom: 19px;
}

.register-form-group > label {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 15px;

    font-weight: 700;
}


/* =========================================================
   INPUT
   ========================================================= */

.register-input {
    position: relative;

    width: 100%;
}

.register-input > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);

    font-size: 15px;

    pointer-events: none;

    z-index: 2;
}

.register-input input {
    width: 100%;

    min-height: 52px;

    padding: 0 45px;

    border: 1px solid var(--border);

    border-radius: 11px;

    outline: none;

    background: var(--soft-white);

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.register-input input::placeholder {
    color: var(--muted);

    opacity: 0.8;
}

.register-input input:focus {
    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(8, 127, 202, 0.10);
}


/* =========================================================
   PASSWORD TOGGLE
   ========================================================= */

.register-password-toggle {
    position: absolute;

    right: 10px;
    top: 50%;

    width: 34px;
    height: 34px;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: var(--muted);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    transition: color 0.3s ease;
}

.register-password-toggle:hover {
    color: var(--primary);
}


/* =========================================================
   TERMS
   ========================================================= */

.register-terms {
    margin: 5px 0 23px;
}

.register-terms label {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    cursor: pointer;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.6;
}

.register-terms input {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    margin-top: 3px;

    accent-color: var(--primary);

    cursor: pointer;
}

.register-terms a {
    color: var(--primary);

    font-weight: 600;

    text-decoration: none;
}

.register-terms a:hover {
    color: var(--primary-dark);

    text-decoration: underline;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.register-submit {
    width: 100%;

    min-height: 54px;

    justify-content: center;

    border: 0;

    cursor: pointer;

    font-size: 15px;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.register-divider {
    position: relative;

    margin: 27px 0;

    text-align: center;
}

.register-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    height: 1px;

    background: var(--border);
}

.register-divider span {
    position: relative;

    z-index: 2;

    padding: 0 14px;

    background: var(--white);

    color: var(--muted);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   LOGIN LINK
   ========================================================= */

.register-login {
    text-align: center;
}

.register-login p {
    margin: 0 0 8px;

    color: var(--muted);

    font-size: 15px;
}

.register-login a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.register-login a:hover {
    gap: 13px;

    color: var(--primary-dark);
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.register-content {
    width: 100%;
}

.register-feature-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.15);
}

.register-feature-image img {
    width: 100%;
    height: 400px;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.register-feature-image:hover img {
    transform: scale(1.06);
}


/* =========================================================
   QUALITY CARD
   ========================================================= */

.register-quality-card {
    position: absolute;

    left: 24px;
    bottom: 24px;

    min-width: 190px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(10px);

    animation: registerQualityFloat 4s ease-in-out infinite;
}

.register-quality-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 18px;
}

.register-quality-card strong {
    display: block;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    font-weight: 700;
}

.register-quality-card span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 15px;
}


/* =========================================================
   CONTENT TEXT
   ========================================================= */

.register-content-text {
    padding-top: 32px;
}

.register-content-text .section-label {
    display: inline-block;

    margin-bottom: 14px;
}

.register-content-text h2 {
    max-width: 620px;

    margin: 0 0 17px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(31px, 4vw, 46px);

    line-height: 1.14;

    font-weight: 800;
}

.register-content-text p {
    max-width: 620px;

    margin: 0;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.register-feature-list {
    margin-top: 34px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.register-feature-item {
    display: grid;

    grid-template-columns: 52px 1fr;

    gap: 16px;

    align-items: start;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);
}

.register-feature-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.register-feature-number {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.register-feature-item:hover .register-feature-number {
    transform: translateX(5px);

    background: var(--primary);

    color: #ffffff;
}

.register-feature-item h3 {
    margin: 1px 0 5px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    font-weight: 700;
}

.register-feature-item p {
    margin: 0;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.register-cta-section {
    padding: 70px 20px;

    background: var(--primary-light);
}

.register-cta-container {
    position: relative;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 45px 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: 24px;

    background: var(--navy);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);

    overflow: hidden;
}

.register-cta-container::after {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    right: -100px;
    top: -150px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;
}

.register-cta-container > div {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.register-cta-container .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-light);
}

.register-cta-container h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(27px, 4vw, 40px);

    line-height: 1.2;

    font-weight: 800;
}

.register-cta-container p {
    margin: 0;

    color: rgba(255,255,255,0.75);

    font-size: 15px;

    line-height: 1.8;
}

.register-cta-container .secondary-btn {
    position: relative;

    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.register-page .scroll-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.register-page .scroll-reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   REGISTER MESSAGE
   ========================================================= */

.register-message {
    margin-bottom: 20px;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 15px;

    line-height: 1.5;

    transition: opacity 0.3s ease;
}

.register-message-error {
    background: #fff0f0;

    color: #b42318;

    border: 1px solid #ffd2d2;
}

.register-message-success {
    background: #edfafa;

    color: #056aa8;

    border: 1px solid #c8eeee;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes registerBannerZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

@keyframes registerCircleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }

}

@keyframes registerQualityFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

@keyframes registerIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .register-container {
        grid-template-columns:
            450px
            minmax(0, 1fr);

        gap: 45px;
    }

    .register-box {
        padding: 35px;
    }

    .register-feature-image img {
        height: 360px;
    }

}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .register-banner {
        min-height: 380px;
    }

    .register-section {
        padding: 80px 20px;
    }

    .register-container {
        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 60px;
    }

    .register-box {
        order: 1;
    }

    .register-content {
        order: 2;
    }

    .register-feature-image {
        max-width: 100%;
    }

    .register-content-text {
        padding-top: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .register-controls {
        top: 15px;
        right: 15px;

        gap: 7px;
    }

    .register-control-btn {
        width: 40px;
        height: 40px;
    }

    .register-banner {
        min-height: 345px;
    }

    .register-banner-content {
        padding: 85px 18px 60px;
    }

    .register-banner-content h1 {
        font-size: 42px;
    }

    .register-banner-content p {
        font-size: 15px;
    }

    .register-section {
        padding: 65px 16px;
    }

    .register-container {
        gap: 50px;
    }

    .register-box {
        padding: 29px 20px;

        border-radius: 20px;
    }

    .register-box::before {
        left: 25px;
        right: 25px;
    }

    .register-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .register-feature-image {
        border-radius: 20px;
    }

    .register-feature-image img {
        height: 340px;
    }

    .register-quality-card {
        left: 15px;
        bottom: 15px;

        min-width: 175px;

        padding: 12px 14px;
    }

    .register-content-text h2 {
        font-size: 31px;
    }

    .register-feature-item {
        grid-template-columns: 48px 1fr;
    }

    .register-feature-number {
        width: 45px;
        height: 45px;
    }

    .register-cta-section {
        padding: 50px 16px;
    }

    .register-cta-container {
        padding: 32px 25px;

        border-radius: 20px;

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .register-banner-content h1 {
        font-size: 36px;
    }

    .register-box {
        padding: 25px 16px;
    }

    .register-input input {
        min-height: 51px;
    }

    .register-terms label {
        font-size: 15px;
    }

    .register-cta-container h2 {
        font-size: 27px;
    }

}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .register-controls {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .register-input > i {
    left: auto;
    right: 16px;
}

html[dir="rtl"] .register-input input {
    padding-left: 45px;
    padding-right: 45px;
}

html[dir="rtl"] .register-password-toggle {
    right: auto;
    left: 10px;
}

html[dir="rtl"] .register-quality-card {
    left: auto;
    right: 24px;
}

html[dir="rtl"] .register-feature-item:hover .register-feature-number {
    transform: translateX(-5px);
}

@media (max-width: 650px) {

    html[dir="rtl"] .register-controls {
        left: 15px;
    }

    html[dir="rtl"] .register-quality-card {
        right: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .register-banner-image,
    .register-banner::after,
    .register-quality-card,
    .register-box-icon {
        animation: none;
    }

    .register-page .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* =========================================================
   PURE LIVING CO. — 404 PAGE
   ========================================================= */

.error-page-body {
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.error-controls {
    position: fixed;

    top: 22px;
    right: 24px;

    z-index: 100;

    display: flex;
    align-items: center;

    gap: 10px;
}

.error-control-btn {
    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);

    color: #ffffff;

    backdrop-filter: blur(12px);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.error-control-btn:hover {
    transform: translateY(-3px);

    background: var(--primary);

    border-color: var(--primary);
}

.error-control-btn span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================================================
   MAIN BANNER
   ========================================================= */

.error-banner {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    isolation: isolate;

    text-align: center;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.error-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -4;

    animation:
        errorBackgroundZoom 14s ease-in-out infinite alternate;
}

.error-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.94),
            rgba(8, 127, 202, 0.78)
        );

    z-index: -3;
}


/* =========================================================
   DECORATIVE CIRCLES
   ========================================================= */

.error-circle {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    pointer-events: none;

    z-index: -2;
}

.error-circle-one {
    width: 520px;
    height: 520px;

    top: -300px;
    left: -170px;

    animation:
        errorCircleOne 9s ease-in-out infinite;
}

.error-circle-two {
    width: 430px;
    height: 430px;

    right: -190px;
    bottom: -220px;

    animation:
        errorCircleTwo 10s ease-in-out infinite;
}

.error-circle-three {
    width: 180px;
    height: 180px;

    right: 15%;
    top: 18%;

    border-color: rgba(255, 255, 255, 0.09);

    animation:
        errorCircleThree 6s ease-in-out infinite;
}


/* =========================================================
   CONTENT
   ========================================================= */

.error-banner-content {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 850px;

    padding: 120px 20px 100px;

    margin: 0 auto;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.error-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   404 NUMBER
   ========================================================= */

.error-number {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;

    margin-bottom: 28px;
}

.error-number > span {
    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(120px, 19vw, 205px);

    line-height: 0.8;

    font-weight: 800;

    letter-spacing: -14px;

    text-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   CENTER WIND ICON
   ========================================================= */

.error-icon {
    position: relative;

    width: clamp(100px, 12vw, 135px);
    height: clamp(100px, 12vw, 135px);

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.11);

    color: #ffffff;

    font-size: clamp(30px, 4vw, 48px);

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.20);

    animation:
        errorIconFloat 4s ease-in-out infinite;
}

.error-icon::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border: 1px solid rgba(255, 255, 255, 0.11);

    border-radius: 50%;

    animation:
        errorIconRing 4s linear infinite;
}


/* =========================================================
   HEADING
   ========================================================= */

.error-banner-content h1 {
    margin: 0 0 17px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(32px, 5vw, 52px);

    line-height: 1.15;

    font-weight: 800;
}

.error-banner-content p {
    max-width: 630px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.84);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   HOME BUTTON
   ========================================================= */

.error-home-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 53px;

    margin-top: 32px;

    padding: 0 26px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 10px;

    background: #ffffff;

    color: var(--navy);

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.error-home-btn:hover {
    transform: translateY(-4px);

    background: var(--primary);

    color: #ffffff;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   BOTTOM INFO CARD
   ========================================================= */

.error-bottom-card {
    position: absolute;

    left: 35px;
    bottom: 30px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 17px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 15px;

    background: rgba(0, 0, 0, 0.42);

    color: #ffffff;

    text-align: left;

    backdrop-filter: blur(12px);

    animation:
        errorCardFloat 4s ease-in-out infinite;
}

.error-bottom-card > i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 17px;
}

.error-bottom-card strong {
    display: block;

    margin-bottom: 3px;

    font-family: "Manrope", sans-serif;

    font-size: 15px;
}

.error-bottom-card span {
    display: block;

    color: rgba(255, 255, 255, 0.70);

    font-size: 15px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.error-banner .scroll-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.error-banner .scroll-reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes errorBackgroundZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

@keyframes errorCircleOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 25px);
    }

}

@keyframes errorCircleTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -25px);
    }

}

@keyframes errorCircleThree {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.45;
    }

    50% {
        transform: scale(1.18);

        opacity: 1;
    }

}

@keyframes errorIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(4deg);
    }

}

@keyframes errorIconRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes errorCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .error-banner-content {
        padding: 115px 20px 110px;
    }

    .error-bottom-card {
        left: 20px;
        bottom: 20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .error-controls {
        top: 15px;
        right: 15px;

        gap: 7px;
    }

    .error-control-btn {
        width: 40px;
        height: 40px;
    }

    .error-banner {
        min-height: 100svh;
    }

    .error-banner-content {
        padding: 105px 18px 125px;
    }

    .error-eyebrow {
        margin-bottom: 18px;

        font-size: 12px;

        letter-spacing: 2px;
    }

    .error-number {
        gap: 13px;

        margin-bottom: 24px;
    }

    .error-number > span {
        font-size: 92px;

        letter-spacing: -8px;
    }

    .error-icon {
        width: 78px;
        height: 78px;

        font-size: 27px;
    }

    .error-icon::before {
        width: 108px;
        height: 108px;
    }

    .error-banner-content h1 {
        font-size: 30px;
    }

    .error-banner-content p {
        font-size: 15px;

        line-height: 1.75;
    }

    .error-home-btn {
        width: 100%;

        max-width: 250px;
    }

    .error-bottom-card {
        left: 18px;
        right: 18px;
        bottom: 18px;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .error-banner-content {
        padding:
            100px 16px
            120px;
    }

    .error-number {
        gap: 9px;
    }

    .error-number > span {
        font-size: 76px;

        letter-spacing: -6px;
    }

    .error-icon {
        width: 66px;
        height: 66px;

        font-size: 23px;
    }

    .error-icon::before {
        width: 90px;
        height: 90px;
    }

    .error-banner-content h1 {
        font-size: 27px;
    }

}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .error-controls {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .error-bottom-card {
    left: auto;
    right: 35px;

    text-align: right;
}

@media (max-width: 650px) {

    html[dir="rtl"] .error-controls {
        left: 15px;
    }

    html[dir="rtl"] .error-bottom-card {
        right: 18px;
        left: 18px;

        text-align: right;
    }

}


/* =========================================================
   DARK MODE
   ========================================================= */

body.dark-mode .error-banner-overlay {
    background:
        linear-gradient(
            135deg,
            rgba(5, 27, 35, 0.96),
            rgba(5, 77, 84, 0.86)
        );
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .error-banner-image,
    .error-circle,
    .error-icon,
    .error-icon::before,
    .error-bottom-card {
        animation: none;
    }

    .error-banner .scroll-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }

}
/* =========================================================
   PURE LIVING CO. — COMING SOON PAGE
   ========================================================= */


/* =========================================================
   PAGE BASE
   ========================================================= */

.coming-soon-body {
    min-height: 100vh;
    overflow: hidden;
    background: var(--navy);
}


/* =========================================================
   TOP CONTROLS
   ========================================================= */

.coming-controls {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coming-control-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.coming-control-btn:hover {
    transform: translateY(-3px) rotate(5deg);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

.coming-control-btn i {
    font-size: 16px;
}

.coming-control-btn span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* =========================================================
   MAIN BANNER
   ========================================================= */

.coming-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* =========================================================
   BANNER IMAGE
   ========================================================= */

.coming-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;

    animation: comingImageZoom 16s ease-in-out infinite alternate;
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.coming-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            135deg,
            rgba(7, 31, 42, 0.88) 0%,
            rgba(8, 52, 63, 0.70) 45%,
            rgba(5, 99, 109, 0.66) 100%
        );
}


/* =========================================================
   DECORATIVE GLOW
   ========================================================= */

.coming-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;

    filter: blur(8px);

    animation: comingGlowFloat 7s ease-in-out infinite;
}

.coming-glow-one {
    width: 360px;
    height: 360px;

    top: -160px;
    left: -100px;

    background: rgba(105, 235, 229, 0.14);
}

.coming-glow-two {
    width: 440px;
    height: 440px;

    right: -180px;
    bottom: -220px;

    background: rgba(105, 235, 229, 0.12);

    animation-delay: 1.5s;
}


/* =========================================================
   ORBIT CIRCLES
   ========================================================= */

.coming-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.coming-orbit-one {
    width: 500px;
    height: 500px;

    right: -220px;
    top: 50%;

    transform: translateY(-50%);

    animation: orbitRotate 22s linear infinite;
}

.coming-orbit-two {
    width: 700px;
    height: 700px;

    left: -380px;
    top: 50%;

    transform: translateY(-50%);

    border-style: dashed;

    animation: orbitRotateReverse 30s linear infinite;
}


/* =========================================================
   CENTER CONTENT
   ========================================================= */

.coming-content {
    position: relative;
    z-index: 5;

    width: min(900px, calc(100% - 40px));

    text-align: center;
    color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;
}


/* =========================================================
   ICON
   ========================================================= */

.coming-icon {
    width: 72px;
    height: 72px;

    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18),
        inset 0 0 25px rgba(255, 255, 255, 0.04);

    animation: iconFloat 4s ease-in-out infinite;
}

.coming-icon i {
    font-size: 27px;
    color: #ffffff;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.coming-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.coming-content h1 {
    margin: 0;

    max-width: 850px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 7vw, 92px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3px;

    color: #ffffff;
}

.coming-content h1 span {
    display: block;

    color: var(--primary-light);

    position: relative;
}


/* =========================================================
   HEADING UNDERLINE
   ========================================================= */

.coming-content h1 span::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 90px;
    height: 3px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    transform: translateX(-50%);

    animation: underlinePulse 3s ease-in-out infinite;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.coming-content > p {
    max-width: 620px;

    margin: 32px auto 30px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   COUNTDOWN
   ========================================================= */

.coming-countdown {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 10px 0 35px;

    padding: 15px 22px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   TIME BOX
   ========================================================= */

.coming-time-box {
    min-width: 85px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 4px 12px;
}

.coming-time-box strong {
    font-family: "Manrope", sans-serif;

    font-size: 29px;
    line-height: 1.1;

    font-weight: 800;

    color: #ffffff;
}

.coming-time-box span {
    margin-top: 6px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   COUNTDOWN DIVIDER
   ========================================================= */

.coming-divider {
    font-size: 25px;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.35);

    margin: 0 3px;

    animation: dividerBlink 2s ease-in-out infinite;
}


/* =========================================================
   HOME BUTTON
   ========================================================= */

.coming-home-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 10px;

    background: #ffffff;

    color: var(--navy);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.coming-home-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}

.coming-home-btn:hover::before {
    left: 140%;
}

.coming-home-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}

.coming-home-btn i:last-child {
    transition: transform 0.3s ease;
}

.coming-home-btn:hover i:last-child {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM MESSAGE
   ========================================================= */

.coming-bottom-message {
    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    z-index: 10;

    animation: bottomMessageFloat 4s ease-in-out infinite;
}

.coming-bottom-message i {
    color: var(--primary-light);
    font-size: 14px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.coming-content.scroll-reveal {
    opacity: 0;
    transform: translateY(35px) scale(0.98);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-content.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes comingImageZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }

}


@keyframes comingGlowFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(20px, -25px, 0);
    }

}


@keyframes orbitRotate {

    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    from {
        transform: translateY(-50%) rotate(360deg);
    }

    to {
        transform: translateY(-50%) rotate(0deg);
    }

}


@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(3deg);
    }

}


@keyframes underlinePulse {

    0%,
    100% {
        width: 75px;
        opacity: 0.55;
    }

    50% {
        width: 120px;
        opacity: 1;
    }

}


@keyframes dividerBlink {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }

}


@keyframes bottomMessageFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .coming-controls {
        top: 18px;
        right: 20px;
    }

    .coming-content {
        width: min(760px, calc(100% - 30px));
        padding: 70px 15px 90px;
    }

    .coming-content h1 {
        font-size: clamp(46px, 9vw, 72px);
    }

    .coming-content > p {
        font-size: 16px;
        max-width: 560px;
    }

    .coming-orbit-one {
        width: 420px;
        height: 420px;
        right: -250px;
    }

    .coming-orbit-two {
        width: 550px;
        height: 550px;
        left: -350px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .coming-controls {
        top: 15px;
        right: 15px;
        gap: 7px;
    }

    .coming-control-btn {
        width: 42px;
        height: 42px;
    }

    .coming-content {
        width: calc(100% - 25px);
        padding: 70px 12px 95px;
    }

    .coming-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 20px;
    }

    .coming-icon i {
        font-size: 23px;
    }

    .coming-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 15px;
    }

    .coming-content h1 {
        font-size: clamp(40px, 13vw, 60px);
        letter-spacing: -2px;
        line-height: 1.04;
    }

    .coming-content h1 span::after {
        bottom: -8px;
    }

    .coming-content > p {
        margin: 28px auto 25px;
        font-size: 15px;
        line-height: 1.7;
    }

    .coming-countdown {
        width: 100%;
        padding: 12px 5px;
        border-radius: 15px;
    }

    .coming-time-box {
        min-width: 0;
        flex: 1;
        padding: 3px 4px;
    }

    .coming-time-box strong {
        font-size: 22px;
    }

    .coming-time-box span {
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    .coming-divider {
        font-size: 19px;
    }

    .coming-home-btn {
        min-height: 50px;
        padding: 0 20px;
    }

    .coming-bottom-message {
        bottom: 18px;
        font-size: 12px;
        padding: 9px 15px;
    }

    .coming-glow-one {
        width: 260px;
        height: 260px;
    }

    .coming-glow-two {
        width: 300px;
        height: 300px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .coming-controls {
        top: 12px;
        right: 12px;
    }

    .coming-control-btn {
        width: 39px;
        height: 39px;
    }

    .coming-content {
        width: calc(100% - 18px);
        padding-left: 8px;
        padding-right: 8px;
    }

    .coming-icon {
        width: 56px;
        height: 56px;
    }

    .coming-content h1 {
        font-size: 39px;
    }

    .coming-content > p {
        font-size: 15px;
        margin-top: 24px;
    }

    .coming-countdown {
        padding: 10px 2px;
    }

    .coming-time-box strong {
        font-size: 19px;
    }

    .coming-time-box span {
        font-size: 9px;
    }

    .coming-divider {
        font-size: 16px;
    }

    .coming-home-btn {
        width: 100%;
        max-width: 240px;
    }

    .coming-bottom-message {
        max-width: calc(100% - 25px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

}


/* =========================================================
   RTL
   ========================================================= */

.rtl-active .coming-controls {
    right: auto;
    left: 28px;
}

.rtl-active .coming-home-btn i:last-child {
    transform: rotate(180deg);
}

.rtl-active .coming-home-btn:hover i:last-child {
    transform: translateX(-5px) rotate(180deg);
}

.rtl-active .coming-bottom-message {
    direction: rtl;
}

@media (max-width: 650px) {

    .rtl-active .coming-controls {
        left: 15px;
        right: auto;
    }

}


/* =========================================================
   DARK MODE
   ========================================================= */

body.dark-mode.coming-soon-body {
    background: #071f2a;
}

body.dark-mode .coming-banner-overlay {
    background:
        linear-gradient(
            135deg,
            rgba(2, 15, 23, 0.93) 0%,
            rgba(4, 39, 49, 0.84) 50%,
            rgba(3, 64, 72, 0.80) 100%
        );
}

body.dark-mode .coming-countdown {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode .coming-home-btn {
    background: var(--primary-light);
    color: var(--navy);
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .coming-banner-image,
    .coming-glow,
    .coming-orbit,
    .coming-icon,
    .coming-content h1 span::after,
    .coming-divider,
    .coming-bottom-message {
        animation: none !important;
    }

    .coming-content.scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .coming-home-btn,
    .coming-control-btn {
        transition: none;
    }

}
/* =========================================================
   PUREAIR CONTACT CONTENT
   ========================================================= */

:root {
    --pa-primary: #087fca;
    --pa-primary-dark: #05639f;
    --pa-cyan: #19c9e8;
    --pa-dark: #071a2c;
    --pa-text: #17324a;
    --pa-muted: #6d8192;
    --pa-light: #f3faff;
    --pa-white: #ffffff;
    --pa-border: rgba(8, 127, 202, 0.13);
    --pa-shadow: 0 25px 70px rgba(4, 77, 119, 0.10);
}

.pa-contact-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: var(--pa-text);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
}

.pa-contact-page *,
.pa-contact-page *::before,
.pa-contact-page *::after {
    box-sizing: border-box;
}

.pa-contact-page a {
    text-decoration: none;
}

.pa-contact-page button,
.pa-contact-page input,
.pa-contact-page textarea,
.pa-contact-page select {
    font: inherit;
}

.pa-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.pa-contact-hero {
    position: relative;
    min-height: 500px;
    padding: 100px 0 90px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(25, 201, 232, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #effaff,
            #ffffff 55%,
            #eaf9ff
        );
}

.pa-contact-hero-grid {
    min-height: 500px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    gap: 70px;
}

.pa-contact-hero-content {
    position: relative;
    z-index: 2;
}

.pa-eyebrow,
.pa-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--white);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pa-eyebrow i {
    font-size: 6px;
}

.pa-contact-hero h1 {
    max-width: 680px;

    margin: 18px 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.03;

    letter-spacing: -3px;

    color: white;
}

.pa-contact-hero h1 span {
    display: block;
    color: var(--primary);
}

.pa-contact-hero-content > p {
    max-width: 590px;

    color: var(--white);

    font-size: 16px;
    line-height: 1.8;
}

.pa-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.pa-primary-btn,
.pa-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    transition: 0.3s ease;
}

.pa-primary-btn {
    color: white;

    background: linear-gradient(
        135deg,
        var(--primary),
        #16b5df
    );

    box-shadow:
        0 12px 30px rgba(8, 127, 202, 0.22);
}

.pa-primary-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(8, 127, 202, 0.30);
}

.pa-primary-btn i {
    transition: 0.3s ease;
}

.pa-primary-btn:hover i {
    transform: translateX(5px);
}

.pa-outline-btn {
    color: var(--pa-text);

    border: 1px solid var(--pa-border);

    background: rgba(255,255,255,0.7);
}

.pa-outline-btn:hover {
    color: var(--primary);
    border-color: var(--primary);

    transform: translateY(-4px);
}

.pa-trust-row {
    display: flex;
    gap: 40px;

    margin-top: 45px;
}

.pa-trust-row div {
    display: flex;
    flex-direction: column;
}

.pa-trust-row strong {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
}

.pa-trust-row span {
    margin-top: 3px;

    color: var(--pa-muted);

    font-size: 13px;
}


/* =========================================================
   AIR QUALITY VISUAL
   ========================================================= */

.pa-air-visual {
    position: relative;

    min-height: 450px;

    display: grid;
    place-items: center;
}

.pa-air-ring {
    position: absolute;

    border: 1px solid rgba(8,127,202,0.15);

    border-radius: 50%;

    animation: paRingPulse 4s ease-in-out infinite;
}

.pa-ring-one {
    width: 350px;
    height: 350px;
}

.pa-ring-two {
    width: 490px;
    height: 490px;

    animation-delay: 1.2s;
}

@keyframes paRingPulse {

    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.pa-air-card {
    position: relative;
    z-index: 3;

    width: 300px;
    min-height: 330px;

    padding: 25px;

    border: 1px solid rgba(255,255,255,0.9);

    border-radius: 30px;

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(20px);

    box-shadow:
        0 35px 80px rgba(5,93,141,0.18);

    animation: paFloat 5s ease-in-out infinite;
}

@keyframes paFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

.pa-air-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--pa-muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.pa-air-card-header i {
    color: var(--primary);
}

.pa-air-score {
    display: flex;
    align-items: flex-end;
    gap: 10px;

    margin-top: 42px;
}

.pa-air-score strong {
    font-family: "Manrope", sans-serif;

    font-size: 78px;
    line-height: 0.9;

    letter-spacing: -5px;

    color: var(--pa-dark);
}

.pa-air-score span {
    padding-bottom: 8px;

    color: var(--pa-muted);

    font-size: 11px;
    font-weight: 700;
}

.pa-air-status {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 18px;

    color: #1d9d68;

    font-size: 11px;
    font-weight: 700;
}

.pa-air-status span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #30ca87;

    box-shadow:
        0 0 0 5px rgba(48,202,135,0.12);
}

.pa-air-bars {
    height: 55px;

    display: flex;
    align-items: flex-end;
    gap: 6px;

    margin-top: 27px;
}

.pa-air-bars i {
    flex: 1;

    display: block;

    border-radius: 5px 5px 2px 2px;

    background: linear-gradient(
        to top,
        var(--primary),
        var(--pa-cyan)
    );
}

.pa-air-bars i:nth-child(1) {
    height: 35%;
}

.pa-air-bars i:nth-child(2) {
    height: 52%;
}

.pa-air-bars i:nth-child(3) {
    height: 43%;
}

.pa-air-bars i:nth-child(4) {
    height: 72%;
}

.pa-air-bars i:nth-child(5) {
    height: 58%;
}

.pa-air-bars i:nth-child(6) {
    height: 86%;
}

.pa-air-bars i:nth-child(7) {
    height: 70%;
}

.pa-air-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 19px;
    padding-top: 15px;

    border-top: 1px solid var(--pa-border);

    color: var(--pa-muted);

    font-size: 10px;
}

.pa-air-footer strong {
    color: var(--pa-text);
}

.pa-floating-icon {
    position: absolute;
    z-index: 5;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--primary);

    background: white;

    box-shadow:
        0 15px 35px rgba(5,93,141,0.15);

    animation: paFloat 4s ease-in-out infinite;
}

.pa-float-one {
    top: 55px;
    right: 55px;
}

.pa-float-two {
    bottom: 45px;
    left: 55px;

    animation-delay: 1.2s;
}

.pa-hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.pa-glow-one {
    width: 300px;
    height: 300px;

    left: -170px;
    top: 20%;

    background: rgba(25,201,232,0.07);
}

.pa-glow-two {
    width: 350px;
    height: 350px;

    right: -200px;
    bottom: -180px;

    background: rgba(8,127,202,0.08);
}

.pa-particle {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(8,127,202,0.25);

    animation: paParticle 6s linear infinite;
}

.pa-particle-one {
    top: 30%;
    left: 13%;
}

.pa-particle-two {
    top: 65%;
    left: 40%;

    animation-delay: 1.5s;
}

.pa-particle-three {
    top: 20%;
    right: 20%;

    animation-delay: 3s;
}

@keyframes paParticle {

    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-80px);
    }
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.pa-section-heading {
    max-width: 680px;

    margin: 0 auto 50px;

    text-align: center;
}

.pa-section-heading h2,
.pa-space-content h2,
.pa-demo-content h2,
.pa-location-content h2,
.pa-final-cta h2 {
    margin-top: 12px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;

    letter-spacing: -2px;
}

.pa-section-heading h2 span,
.pa-space-content h2 span,
.pa-demo-content h2 span,
.pa-location-content h2 span,
.pa-final-cta h2 span {
    color: var(--primary);
}

.pa-section-heading p {
    max-width: 580px;

    margin: 16px auto 0;

    color: var(--pa-muted);

    line-height: 1.8;
}


/* =========================================================
   CONTACT OPTIONS
   ========================================================= */

.pa-contact-options {
    padding: 105px 0;

    background: #ffffff;
}

.pa-contact-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.pa-contact-card {
    position: relative;

    min-height: 175px;

    display: flex;
    gap: 17px;

    padding: 27px;

    border: 1px solid var(--pa-border);

    border-radius: 22px;

    background: white;

    box-shadow:
        0 10px 35px rgba(5,93,141,0.05);

    transition: 0.35s ease;
}

.pa-contact-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(8,127,202,0.30);

    box-shadow: var(--pa-shadow);
}

.pa-card-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--primary);

    background: #eaf8ff;
}

.pa-card-content > span {
    color: var(--pa-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.pa-card-content h3 {
    margin: 6px 25px 5px 0;

    font-family: "Manrope", sans-serif;

    font-size: 16px;
}

.pa-card-content p {
    color: var(--pa-muted);

    font-size: 15px;
    line-height: 1.6;
}

.pa-card-arrow {
    position: absolute;

    top: 25px;
    right: 24px;

    color: var(--pa-muted);

    font-size: 11px;

    transition: 0.3s ease;
}

.pa-contact-card:hover .pa-card-arrow {
    color: var(--primary);

    transform: translate(3px,-3px);
}


/* =========================================================
   SPACE SECTION
   ========================================================= */

.pa-space-section {
    padding: 115px 0;

    background: var(--pa-light);
}

.pa-space-grid {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap: 90px;
}

.pa-room-wrapper {
    position: relative;

    min-height: 450px;

    display: grid;
    place-items: center;
}

.pa-room-glow {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background: rgba(25,201,232,0.12);

    filter: blur(25px);
}

.pa-room {
    position: relative;

    width: 410px;
    height: 350px;

    overflow: hidden;

    border: 9px solid white;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #dcf5ff,
            #ffffff
        );

    box-shadow:
        0 35px 80px rgba(5,93,141,0.17);
}

.pa-room-wall {
    position: absolute;

    inset: 0 0 75px;

    background:
        linear-gradient(
            135deg,
            #e4f7ff,
            #ccecf7
        );
}

.pa-window {
    position: absolute;

    top: 35px;
    left: 35px;

    width: 135px;
    height: 105px;

    display: grid;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;

    gap: 4px;

    padding: 5px;

    border: 6px solid white;

    background: #8edbed;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.07);
}

.pa-window span {
    background:
        linear-gradient(
            135deg,
            #b6efff,
            #67cde8
        );
}

.pa-sofa {
    position: absolute;

    left: 45px;
    bottom: 58px;

    width: 190px;
    height: 72px;

    border-radius: 16px 16px 8px 8px;

    background: #c2e3ee;
}

.pa-sofa::before {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    top: -34px;

    height: 42px;

    border-radius: 16px 16px 5px 5px;

    background: #d7f0f8;
}

.pa-sofa span {
    position: absolute;

    bottom: -9px;

    width: 9px;
    height: 15px;

    border-radius: 3px;

    background: #55788b;
}

.pa-sofa span:first-child {
    left: 15px;
}

.pa-sofa span:last-child {
    right: 15px;
}

.pa-purifier {
    position: absolute;

    right: 48px;
    bottom: 60px;

    width: 75px;
    height: 135px;

    border-radius: 16px;

    background:
        linear-gradient(
            160deg,
            #ffffff,
            #dcecf2
        );

    box-shadow:
        0 15px 35px rgba(5,93,141,0.18);
}

.pa-purifier-light {
    position: absolute;

    top: 13px;
    left: 50%;

    width: 8px;
    height: 8px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #25d48b;

    box-shadow:
        0 0 12px rgba(37,212,139,0.8);
}

.pa-purifier-screen {
    position: absolute;

    top: 35px;
    left: 13px;
    right: 13px;

    height: 53px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eafaff;

    color: var(--primary);
}

.pa-purifier-screen strong {
    font-family: "Manrope", sans-serif;

    font-size: 19px;
    line-height: 1;
}

.pa-purifier-screen small {
    margin-top: 4px;

    font-size: 7px;
}

.pa-purifier-base {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 13px;

    height: 10px;

    border-radius: 10px;

    background: #c7dce4;
}

.pa-clean-air {
    position: absolute;

    width: 70px;
    height: 70px;

    border: 2px solid rgba(25,201,232,0.27);

    border-left-color: transparent;
    border-bottom-color: transparent;

    border-radius: 50%;

    animation: paAirMove 3s linear infinite;
}

.pa-air-one {
    right: 95px;
    bottom: 170px;
}

.pa-air-two {
    right: 30px;
    bottom: 205px;

    width: 50px;
    height: 50px;

    animation-delay: 1s;
}

.pa-air-three {
    right: 110px;
    bottom: 230px;

    width: 42px;
    height: 42px;

    animation-delay: 1.5s;
}

@keyframes paAirMove {

    0% {
        opacity: 0;
        transform: translate(0,10px) rotate(-20deg);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(35px,-50px) rotate(20deg);
    }
}

.pa-space-content > p {
    max-width: 590px;

    margin-top: 18px;

    color: var(--pa-muted);

    line-height: 1.8;
}

.pa-space-options {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    margin-top: 30px;
}

.pa-space-option {
    min-height: 105px;

    padding: 14px 8px;

    border: 1px solid var(--pa-border);

    border-radius: 15px;

    color: var(--pa-text);

    background: white;

    transition: 0.3s ease;
}

.pa-space-option span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    margin: 0 auto 9px;

    border-radius: 11px;

    color: var(--primary);

    background: var(--pa-light);
}

.pa-space-option strong {
    font-size: 13px;
}

.pa-space-option:hover,
.pa-space-option.active {
    color: white;

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-4px);
}

.pa-space-option:hover span,
.pa-space-option.active span {
    color: var(--primary);
    background: white;
}

.pa-space-note {
    display: flex;

    gap: 12px;

    margin-top: 23px;

    padding: 16px;

    border: 1px solid var(--pa-border);

    border-radius: 15px;

    background: white;
}

.pa-space-note > i {
    color: #1bbd7a;
    margin-top: 3px;
}

.pa-space-note strong {
    font-size: 13px;
}

.pa-space-note p {
    margin-top: 3px;

    color: var(--pa-muted);

    font-size: 13px;
}


/* =========================================================
   DEMO FORM
   ========================================================= */

.pa-demo-section {
    padding: 115px 0;

    background: white;
}

.pa-demo-box {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 65px;

    padding: 65px;

    overflow: hidden;

    position: relative;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(25,201,232,0.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071c2d,
            #0a3550
        );

    color: white;
}

.pa-demo-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -160px;
    bottom: -180px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.pa-demo-content {
    position: relative;
    z-index: 2;
}

.pa-demo-content .pa-section-tag {
    color: #087fca;
}

.pa-demo-content h2 {
    color: white;
}

.pa-demo-content > p {
    max-width: 470px;

    margin-top: 18px;

    color: #a9c3d2;

    line-height: 1.8;
}

.pa-demo-points {
    display: grid;
    gap: 13px;

    margin-top: 30px;
}

.pa-demo-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #dceef7;

    font-size: 12px;
}

.pa-demo-points i {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #071c2d;

    background: #087fca;

    font-size: 9px;
}

.pa-contact-form {
    position: relative;
    z-index: 2;
}

.pa-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.pa-form-group {
    margin-bottom: 17px;
}

.pa-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #d5e9f3;

    font-size: 10px;
    font-weight: 700;
}

.pa-input {
    position: relative;
}

.pa-input > i {
    position: absolute;

    top: 50%;
    left: 16px;

    transform: translateY(-50%);

    color: #7da5b8;

    font-size: 12px;

    pointer-events: none;
}

.pa-input input,
.pa-input textarea,
.pa-input select {
    width: 100%;

    border: 1px solid rgba(255,255,255,0.11);

    outline: none;

    border-radius: 12px;

    padding: 13px 15px 13px 42px;

    color: white;

    background: rgba(255,255,255,0.07);

    font-size: 13px;

    transition: 0.3s ease;
}

.pa-input input::placeholder,
.pa-input textarea::placeholder {
    color: #7896a6;
}

.pa-input input:focus,
.pa-input textarea:focus,
.pa-input select:focus {
    border-color: rgba(88,217,241,0.7);

    background: rgba(255,255,255,0.10);
}

.pa-input select {
    appearance: none;
}

.pa-input select option {
    color: #17324a;
}

.pa-textarea > i {
    top: 20px;
}

.pa-textarea textarea {
    min-height: 125px;

    resize: vertical;
}

.pa-submit-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px;

    border: 0;

    border-radius: 12px;

    color: white;

    background: #087fca;

    font-size: 12px;
    font-weight: 800;

    transition: 0.3s ease;
}

.pa-submit-btn:hover {
    transform: translateY(-3px);

    background: white;
}


/* =========================================================
   LOCATION
   ========================================================= */

.pa-location-section {
    padding: 110px 0;

    background: var(--pa-light);
}

.pa-location-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}

.pa-location-content > p {
    max-width: 490px;

    margin-top: 18px;

    color: var(--pa-muted);

    line-height: 1.8;
}

.pa-address,
.pa-opening {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-top: 28px;
}

.pa-address-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--primary);

    background: white;

    box-shadow:
        0 8px 25px rgba(5,93,141,0.08);
}

.pa-address strong,
.pa-opening strong {
    font-size: 15px;
}

.pa-address p,
.pa-opening p {
    margin-top: 3px;

    color: var(--pa-muted);

    font-size: 13px;

    line-height: 1.6;
}

.pa-opening > i {
    margin-top: 5px;

    color: var(--primary);
}


/* =========================================================
   CSS MAP
   ========================================================= */

.pa-map {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    border: 8px solid white;

    border-radius: 25px;

    background: #e5f4f8;

    box-shadow: var(--pa-shadow);
}

.pa-map-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(8,127,202,0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,127,202,0.09) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.pa-map-road {
    position: absolute;

    background: rgba(255,255,255,0.95);
}

.pa-road-one {
    width: 130%;
    height: 25px;

    top: 42%;
    left: -15%;

    transform: rotate(-13deg);
}

.pa-road-two {
    width: 120%;
    height: 20px;

    top: 62%;
    left: -5%;

    transform: rotate(28deg);
}

.pa-road-three {
    width: 22px;
    height: 130%;

    top: -15%;
    left: 57%;

    transform: rotate(17deg);
}

.pa-map-pin {
    position: absolute;

    top: 43%;
    left: 58%;

    transform: translate(-50%, -50%);

    text-align: center;
}

.pa-map-pin div {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: auto;

    border: 5px solid white;

    border-radius: 50%;

    color: white;

    background: var(--primary);

    box-shadow:
        0 10px 30px rgba(8,127,202,0.3);

    animation: paPin 2s infinite;
}

@keyframes paPin {

    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(8,127,202,0.3);
    }

    50% {
        box-shadow:
            0 0 0 15px rgba(8,127,202,0.08);
    }
}

.pa-map-pin span {
    display: inline-block;

    margin-top: 7px;

    padding: 5px 9px;

    border-radius: 7px;

    color: var(--pa-text);

    background: white;

    font-size: 9px;
    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.08);
}

.pa-map-label {
    position: absolute;

    padding: 7px 10px;

    border-radius: 8px;

    color: var(--pa-muted);

    background: rgba(255,255,255,0.88);

    font-size: 8px;
    font-weight: 700;
}

.pa-label-one {
    top: 23%;
    left: 20%;
}

.pa-label-two {
    right: 13%;
    bottom: 19%;
}


/* =========================================================
   FAQ
   ========================================================= */

.pa-faq-section {
    padding: 110px 0;

    background: white;
}

.pa-faq-list {
    max-width: 850px;

    margin: auto;
}

.pa-faq-item {
    border-bottom: 1px solid var(--pa-border);
}

.pa-faq-question {
    width: 100%;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 4px;

    border: 0;

    color: var(--pa-text);

    background: transparent;

    text-align: left;

    font-size: 14px;
    font-weight: 700;
}

.pa-faq-question i {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--primary);

    background: var(--pa-light);

    transition: 0.3s ease;
}

.pa-faq-item.active
.pa-faq-question i {
    color: white;

    background: var(--primary);

    transform: rotate(45deg);
}

.pa-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.pa-faq-item.active
.pa-faq-answer {
    max-height: 180px;
}

.pa-faq-answer p {
    padding: 0 50px 25px 4px;

    color: var(--pa-muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pa-final-cta {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(25,201,232,0.18),
            transparent 35%
        ),
        #061b2b;

    color: white;

    text-align: center;
}

.pa-cta-circle {
    position: absolute;

    width: 480px;
    height: 480px;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    border: 1px solid rgba(87,218,242,0.09);

    border-radius: 50%;
}

.pa-final-cta-content {
    position: relative;
    z-index: 2;
}

.pa-final-cta .pa-section-tag {
    color: #57d9f2;
}

.pa-final-cta h2 {
    color: white;
}

.pa-final-cta p {
    max-width: 550px;

    margin: 17px auto 28px;

    color: #a9c3d2;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .pa-contact-hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }

    .pa-contact-hero-content > p {
        margin: auto;
    }

    .pa-hero-buttons,
    .pa-trust-row {
        justify-content: center;
    }

    .pa-air-visual {
        min-height: 400px;
    }

    .pa-contact-cards {
        grid-template-columns: 1fr;
    }

    .pa-space-grid,
    .pa-location-grid,
    .pa-demo-box {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .pa-space-content {
        text-align: center;
    }

    .pa-space-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .pa-space-note {
        text-align: left;
    }

    .pa-location-content {
        text-align: center;
    }

    .pa-location-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .pa-address,
    .pa-opening {
        justify-content: center;

        text-align: left;
    }

}


@media (max-width: 650px) {

    .pa-container {
        width: calc(100% - 28px);
    }

    .pa-contact-hero {
        min-height: auto;

        padding: 100px 0 70px;
    }

    .pa-contact-hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .pa-contact-hero-content > p {
        font-size: 14px;
    }

    .pa-trust-row {
        gap: 22px;
    }

    .pa-trust-row strong {
        font-size: 18px;
    }

    .pa-air-card {
        width: 275px;
    }

    .pa-ring-one {
        width: 310px;
        height: 310px;
    }

    .pa-ring-two {
        width: 390px;
        height: 390px;
    }

    .pa-float-one {
        right: 5px;
    }

    .pa-float-two {
        left: 5px;
    }

    .pa-contact-options,
    .pa-space-section,
    .pa-demo-section,
    .pa-location-section,
    .pa-faq-section {
        padding: 75px 0;
    }

    .pa-section-heading {
        margin-bottom: 35px;
    }

    .pa-section-heading h2,
    .pa-space-content h2,
    .pa-demo-content h2,
    .pa-location-content h2,
    .pa-final-cta h2 {
        font-size: 34px;
    }

    .pa-room {
        width: 100%;
        max-width: 410px;
    }

    .pa-space-options {
        grid-template-columns: 1fr 1fr;
    }

    .pa-demo-box {
        padding: 30px 20px;

        border-radius: 22px;
    }

    .pa-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .pa-map {
        min-height: 300px;
    }

}


@media (max-width: 420px) {

    .pa-contact-hero h1 {
        font-size: 39px;
    }

    .pa-hero-buttons {
        flex-direction: column;
    }

    .pa-primary-btn,
    .pa-outline-btn {
        width: 100%;
    }

    .pa-air-card {
        width: 250px;
    }

    .pa-room {
        height: 310px;
    }

    .pa-window {
        left: 20px;
        top: 25px;

        width: 110px;
        height: 85px;
    }

    .pa-sofa {
        left: 25px;

        width: 160px;
    }

    .pa-purifier {
        right: 25px;
    }

}
/* ================================
   FORM VALIDATION
================================ */

.pa-input-error {
    border: 1.5px solid #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.08) !important;
}

.pa-error-message {
    display: block;
    margin-top: 7px;
    color: #e53935;
    font-size: 12px;
    font-weight: 600;
    animation: paErrorShow 0.25s ease;
}

.pa-form-success {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #eafaf1;
    color: #16834b;
    border: 1px solid #bde8cf;
    font-size: 14px;
    font-weight: 600;
    animation: paErrorShow 0.3s ease;
}

@keyframes paErrorShow {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
   PURE LIVING CO.
   PRODUCTS PAGE
========================================================= */

.pl-products-page {
    --pl-blue: #168bd1;
    --pl-blue-dark: #0870b5;
    --pl-cyan: #39c6ef;
    --pl-navy: #092c43;
    --pl-text: #15364a;
    --pl-muted: #6d8492;
    --pl-light: #f3faff;
    --pl-border: #dcecf4;
    --pl-white: #ffffff;

    overflow: hidden;
    font-family: "DM Sans", sans-serif;
}


.pl-products-page *,
.pl-products-page *::before,
.pl-products-page *::after {
    box-sizing: border-box;
}


.pl-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


.pl-products-page a {
    text-decoration: none;
}


.pl-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pl-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.pl-section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}


.pl-section-heading h2,
.pl-featured-heading h2,
.pl-airflow-heading h2,
.pl-finder-content h2,
.pl-coverage-content h2,
.pl-compare-header h2,
.pl-cta-content h2 {
    margin: 12px 0 18px;
    color: var(--pl-navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
}


.pl-section-heading h2 span,
.pl-featured-heading h2 span,
.pl-airflow-heading h2 span,
.pl-finder-content h2 span,
.pl-coverage-content h2 span,
.pl-compare-header h2 span,
.pl-cta-content h2 span {
    color: var(--pl-blue);
}


.pl-section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--pl-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.pl-primary-btn,
.pl-secondary-btn,
.pl-cta-light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: .35s ease;
}


.pl-primary-btn {
    background: var(--pl-blue);
    color: white;
    box-shadow: 0 12px 30px rgba(22, 139, 209, .20);
}


.pl-primary-btn:hover {
    background: var(--pl-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(22, 139, 209, .28);
}


.pl-secondary-btn {
    border: 1px solid var(--pl-border);
    background: white;
    color: var(--pl-navy);
}


.pl-secondary-btn:hover {
    border-color: var(--pl-blue);
    color: var(--pl-blue);
    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.pl-products-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 45%, rgba(58, 198, 239, .16), transparent 28%),
        linear-gradient(135deg, #f8fdff 0%, #edf9fd 100%);
}


.pl-products-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


.pl-products-hero-content {
    animation: plHeroContent 1s ease both;
}


.pl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pl-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.pl-eyebrow i {
    font-size: 6px;
}


.pl-products-hero h1 {
    max-width: 650px;
    margin: 20px 0;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 800;
    line-height: .98;
    padding-top: 80px;
}


.pl-products-hero h1 span {
    display: block;
    color: white;
}


.pl-products-hero-content > p {
    max-width: 600px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
}


.pl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


.pl-hero-mini-stats {
    display: flex;
    gap: 34px;
    margin-top: 48px;
}


.pl-hero-mini-stats div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.pl-hero-mini-stats strong {
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
}


.pl-hero-mini-stats span {
    color: white;
    font-size: 11px;
}


.pl-products-hero {
    position: relative;
}


.pl-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.pl-orb-one {
    width: 400px;
    height: 400px;
    top: 8%;
    right: -100px;
    background: rgba(57, 198, 239, .10);
    filter: blur(3px);
}


.pl-orb-two {
    width: 180px;
    height: 180px;
    bottom: 4%;
    left: 35%;
    background: rgba(22, 139, 209, .06);
}


.pl-products-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--pl-border);
}


/* HERO PRODUCT */

.pl-hero-product {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pl-product-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(57, 198, 239, .22);
    filter: blur(40px);
    animation: plGlow 4s ease-in-out infinite;
}


.pl-purifier {
    position: relative;
    z-index: 3;
    width: 225px;
    height: 390px;
    border-radius: 115px 115px 40px 40px;
    background: linear-gradient(145deg, #ffffff, #dcecf3);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow:
        25px 35px 70px rgba(16, 73, 102, .20),
        inset -12px -15px 30px rgba(90, 140, 160, .12),
        inset 12px 10px 25px white;
    animation: plPurifierFloat 5s ease-in-out infinite;
}


.pl-purifier-top {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 100px;
    height: 15px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: #b8d1dc;
}


.pl-purifier-top span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 35px;
    height: 4px;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    background: var(--pl-blue);
}


.pl-purifier-display {
    position: absolute;
    top: 72px;
    left: 50%;
    width: 85px;
    height: 85px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7fdff;
    border: 1px solid #d3e9f2;
    box-shadow: 0 10px 25px rgba(30, 120, 160, .10);
}


.pl-purifier-display strong {
    color: var(--pl-blue);
    font-family: "Manrope", sans-serif;
    font-size: 29px;
}


.pl-purifier-display small {
    color: var(--pl-muted);
    font-size: 8px;
    letter-spacing: 1px;
}


.pl-purifier-light {
    position: absolute;
    left: 50%;
    bottom: 112px;
    width: 50px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: var(--pl-cyan);
    box-shadow: 0 0 18px rgba(57, 198, 239, .8);
}


.pl-purifier-body-lines {
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 105px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.pl-purifier-body-lines span {
    height: 2px;
    border-radius: 5px;
    background: #c4d9e1;
}


.pl-purifier-base {
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 190px;
    height: 35px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #c8dce4;
    box-shadow: 0 15px 25px rgba(25, 80, 105, .16);
}


.pl-floating-aqi {
    position: absolute;
    z-index: 5;
    top: 95px;
    right: 5%;
    width: 125px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 17px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(24, 96, 130, .12);
    animation: plFloating 4s ease-in-out infinite;
}


.pl-floating-aqi span,
.pl-floating-aqi small {
    display: block;
    color: var(--pl-muted);
    font-size: 8px;
    letter-spacing: 1px;
}


.pl-floating-aqi strong {
    display: block;
    margin: 5px 0;
    color: var(--pl-blue);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
}


.pl-floating-aqi small {
    color: #1a9a62;
    font-weight: 800;
}


.pl-air-wave {
    position: absolute;
    border: 1px solid rgba(22, 139, 209, .17);
    border-left-color: transparent;
    border-radius: 50%;
    animation: plWave 5s linear infinite;
}


.pl-wave-one {
    width: 480px;
    height: 480px;
}


.pl-wave-two {
    width: 580px;
    height: 580px;
    animation-delay: 1.5s;
}


.pl-clean-air-particle {
    position: absolute;
    z-index: 5;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pl-cyan);
    box-shadow: 0 0 15px rgba(57,198,239,.7);
}


.particle-a {
    top: 35%;
    left: 16%;
    animation: plParticle 4s infinite;
}


.particle-b {
    bottom: 28%;
    right: 17%;
    animation: plParticle 5s infinite .7s;
}


.particle-c {
    top: 23%;
    left: 38%;
    animation: plParticle 4.5s infinite 1.3s;
}


/* =========================================================
   NEEDS
========================================================= */

.pl-needs-section {
    padding: 115px 0;
    background: white;
}


.pl-needs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}


.pl-need-card {
    position: relative;
    min-height: 300px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--pl-border);
    border-radius: 22px;
    background: #fbfeff;
    transition: .4s ease;
}


.pl-need-card:hover {
    transform: translateY(-10px);
    border-color: rgba(22,139,209,.35);
    box-shadow: 0 25px 45px rgba(20,90,120,.10);
}


.pl-need-number {
    color: #b8d6e4;
    font-size: 11px;
    font-weight: 800;
}


.pl-need-icon {
    width: 58px;
    height: 58px;
    margin: 40px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #eaf8fd;
    color: var(--pl-blue);
    font-size: 20px;
}


.pl-need-card h3 {
    margin: 0 0 10px;
    color: var(--pl-navy);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}


.pl-need-card p {
    margin: 0;
    color: var(--pl-muted);
    font-size: 13px;
    line-height: 1.7;
    text-align: justify;
}


.pl-need-line {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--pl-blue), transparent);
    transform: scaleX(.3);
    transform-origin: left;
    transition: .4s;
}


.pl-need-card:hover .pl-need-line {
    transform: scaleX(1);
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.pl-technology-section {
    padding: 115px 0;
    background: var(--pl-light);
}


.pl-heading-left {
    margin-left: 0;
    text-align: left;
}


.pl-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.pl-tech-card {
    position: relative;
    min-height: 500px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--pl-border);
    border-radius: 28px;
    background: white;
    transition: .4s ease;
}


.pl-tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(16,84,110,.10);
}


.pl-tech-card.featured {
    border-color: rgba(22,139,209,.35);
    box-shadow: 0 20px 50px rgba(22,139,209,.08);
}


.pl-tech-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.pl-tech-number {
    color: #aacbd9;
    font-size: 11px;
    font-weight: 800;
}


.pl-tech-top i {
    color: var(--pl-blue);
}


.pl-tech-visual {
    position: relative;
    height: 180px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pl-filter-ring,
.pl-carbon-layer {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 16px solid #d8edf4;
    border-radius: 50%;
    box-shadow: inset 0 0 0 12px white;
}


.pl-filter-core,
.pl-carbon-core,
.pl-uv-core {
    position: relative;
    z-index: 2;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pl-blue);
    color: white;
    font-size: 11px;
    font-weight: 800;
}


.pl-carbon-layer {
    border-color: #d6e4e8;
    transform: rotate(25deg);
}


.pl-carbon-core {
    background: #183e50;
}


.pl-uv-rays {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}


.pl-uv-rays span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 2px;
    background: rgba(57,198,239,.55);
    transform-origin: left center;
}


.pl-uv-rays span:nth-child(1) {
    transform: rotate(0deg);
}


.pl-uv-rays span:nth-child(2) {
    transform: rotate(90deg);
}


.pl-uv-rays span:nth-child(3) {
    transform: rotate(180deg);
}


.pl-uv-rays span:nth-child(4) {
    transform: rotate(270deg);
}


.pl-uv-core {
    background: #3cc8ef;
    box-shadow: 0 0 35px rgba(57,198,239,.4);
}


.pl-tech-card h3 {
    margin: 0 0 10px;
    color: var(--pl-navy);
    font-family: "Manrope", sans-serif;
    font-size: 23px;
}


.pl-tech-card p {
    color: var(--pl-muted);
    font-size: 13px;
    line-height: 1.8;
}


.pl-tech-card > a {
    display: inline-flex;
    gap: 8px;
    margin-top: 20px;
    color: var(--pl-blue);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.pl-featured-section {
    padding: 115px 0;
    background: white;
}


.pl-featured-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px;
}


.pl-featured-heading h2 {
    max-width: 620px;
    margin-bottom: 0;
}


.pl-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pl-blue);
    font-size: 13px;
    font-weight: 800;
}


.pl-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.pl-product-card {
    overflow: hidden;
    border: 1px solid var(--pl-border);
    border-radius: 25px;
    background: #fbfeff;
    transition: .4s ease;
}


.pl-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(18,82,110,.11);
}


.pl-product-card.highlighted {
    border-color: rgba(22,139,209,.35);
}


.pl-product-image {
    position: relative;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #edf9fc, #fafdff);
}


.pl-card-glow {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(57,198,239,.18);
    filter: blur(25px);
}


.pl-mini-purifier {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 220px;
    border-radius: 65px 65px 25px 25px;
    background: linear-gradient(145deg,#fff,#d8e9ef);
    box-shadow: 15px 20px 40px rgba(20,80,105,.18);
    transition: .5s;
}


.pl-product-card:hover .pl-mini-purifier {
    transform: translateY(-8px) rotate(2deg);
}


.pl-mini-purifier.large {
    width: 135px;
    height: 245px;
}


.pl-mini-purifier.extra-large {
    width: 150px;
    height: 260px;
}


.pl-mini-screen {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fdff;
    color: var(--pl-blue);
    font-family: "Manrope";
    font-size: 17px;
    font-weight: 800;
}


.pl-mini-slots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    width: 55%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.pl-mini-slots span {
    height: 2px;
    background: #bed4dd;
    border-radius: 5px;
}


.pl-product-badge {
    position: absolute;
    z-index: 5;
    margin: 18px;
    padding: 7px 11px;
    border-radius: 30px;
    background: var(--pl-navy);
    color: white;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}


.pl-product-info {
    padding: 27px;
}


.pl-product-info > span {
    color: var(--pl-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.pl-product-info h3 {
    margin: 8px 0;
    color: var(--pl-navy);
    font-family: "Manrope";
    font-size: 24px;
}


.pl-product-info > p {
    min-height: 50px;
    margin: 0;
    color: var(--pl-muted);
    font-size: 13px;
    line-height: 1.6;
}


.pl-product-specs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid var(--pl-border);
    border-bottom: 1px solid var(--pl-border);
}


.pl-product-specs div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.pl-product-specs strong {
    color: var(--pl-navy);
    font-size: 14px;
}


.pl-product-specs span {
    color: var(--pl-muted);
    font-size: 9px;
}


.pl-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.pl-product-price {
    color: var(--pl-navy);
    font-family: "Manrope";
    font-size: 23px;
}


.pl-product-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pl-blue);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   FINDER
========================================================= */

.pl-finder-section {
    padding: 115px 0;
    background: var(--pl-light);
}


.pl-finder-box {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    overflow: hidden;
    border-radius: 32px;
    background: white;
    box-shadow: 0 25px 70px rgba(20,90,120,.09);
}


.pl-finder-content {
    padding: 65px;
}


.pl-finder-content h2 {
    max-width: 550px;
}


.pl-finder-content > p {
    max-width: 540px;
    color: var(--pl-muted);
    font-size: 14px;
    line-height: 1.8;
}


.pl-finder-options {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 30px;
}


.pl-finder-option {
    min-height: 65px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--pl-border);
    border-radius: 13px;
    background: white;
    color: var(--pl-navy);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    transition: .3s;
}


.pl-finder-option i {
    color: var(--pl-blue);
}


.pl-finder-option:hover,
.pl-finder-option.active {
    border-color: var(--pl-blue);
    background: #effaff;
    color: var(--pl-blue);
}


.pl-finder-result {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding: 17px;
    border-radius: 15px;
    background: #f2faff;
}


.pl-result-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--pl-blue);
    color: white;
}


.pl-finder-result > div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}


.pl-finder-result span {
    color: var(--pl-muted);
    font-size: 8px;
    letter-spacing: 1px;
}


.pl-finder-result strong {
    color: var(--pl-navy);
    font-family: "Manrope";
    font-size: 15px;
}


.pl-finder-result a {
    color: var(--pl-blue);
    font-size: 11px;
    font-weight: 800;
}


.pl-finder-visual {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, rgba(57,198,239,.20), transparent 45%),
        #eaf8fc;
}


.pl-room-circle {
    position: absolute;
    border: 1px solid rgba(22,139,209,.18);
    border-radius: 50%;
    animation: plCirclePulse 4s infinite;
}


.circle-one {
    width: 180px;
    height: 180px;
}


.circle-two {
    width: 330px;
    height: 330px;
    animation-delay: .8s;
}


.circle-three {
    width: 500px;
    height: 500px;
    animation-delay: 1.6s;
}


.pl-finder-purifier {
    position: relative;
    z-index: 3;
    width: 130px;
    height: 250px;
    border-radius: 70px 70px 25px 25px;
    background: linear-gradient(145deg,#fff,#d9e9ef);
    box-shadow: 20px 25px 50px rgba(17,80,110,.18);
}


.pl-finder-display {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 55px;
    height: 55px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
}


.pl-finder-display strong {
    color: var(--pl-blue);
    font-size: 18px;
}


.pl-finder-display small {
    color: var(--pl-muted);
    font-size: 7px;
}


.pl-finder-vents {
    position: absolute;
    bottom: 35px;
    left: 50%;
    width: 60px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.pl-finder-vents span {
    height: 2px;
    background: #bed3dd;
}


.pl-room-label {
    position: absolute;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,.75);
    color: var(--pl-blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}


.label-one {
    top: 25%;
    left: 14%;
}


.label-two {
    right: 12%;
    bottom: 25%;
}


/* =========================================================
   AIRFLOW
========================================================= */

.pl-airflow-section {
    padding: 115px 0;
    background: white;
}


.pl-airflow-heading {
    max-width: 700px;
    margin-bottom: 55px;
}


.pl-airflow-system {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 50px;
    align-items: center;
}


.pl-airflow-stage {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}


.pl-dirty-air,
.pl-clean-air-flow {
    position: relative;
    width: 120px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-align: center;
}


.pl-dirty-air span,
.pl-clean-air-flow span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}


.pl-dirty-air span {
    background: #a9b8be;
}


.pl-clean-air-flow span {
    background: var(--pl-cyan);
    box-shadow: 0 0 12px rgba(57,198,239,.5);
}


.pl-dirty-air span:nth-child(1) {
    top: 35%;
    left: 15%;
}


.pl-dirty-air span:nth-child(2) {
    top: 45%;
    left: 45%;
}


.pl-dirty-air span:nth-child(3) {
    top: 55%;
    left: 25%;
}


.pl-dirty-air span:nth-child(4) {
    top: 40%;
    right: 12%;
}


.pl-clean-air-flow span:nth-child(1) {
    top: 30%;
    left: 15%;
    animation: plFlowParticle 2s infinite;
}


.pl-clean-air-flow span:nth-child(2) {
    top: 42%;
    left: 45%;
    animation: plFlowParticle 2.3s infinite .4s;
}


.pl-clean-air-flow span:nth-child(3) {
    top: 53%;
    left: 25%;
    animation: plFlowParticle 2.1s infinite .8s;
}


.pl-clean-air-flow span:nth-child(4) {
    top: 38%;
    right: 12%;
    animation: plFlowParticle 2.4s infinite 1.1s;
}


.pl-dirty-air strong,
.pl-clean-air-flow strong {
    color: var(--pl-muted);
    font-size: 9px;
    letter-spacing: 1px;
}


.pl-filter-machine {
    width: 190px;
    height: 280px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--pl-border);
    border-radius: 25px;
    background: #f8fdff;
    box-shadow: 0 20px 45px rgba(18,85,110,.09);
}


.pl-filter-layer {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border-radius: 10px;
    color: var(--pa-cyan);
    font-size: 9px;
    font-weight: 800;
}


.pl-filter-layer span {
    color: var(--pl-blue);
}


.pl-filter-layer.pre {
    background: #e6eff2;
}


.pl-filter-layer.hepa {
    background: #d8f1f8;
}


.pl-filter-layer.carbon {
    background: #dfe8eb;
}


.pl-filter-layer.clean {
    background: #c9f4ff;
}


.pl-airflow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.pl-airflow-steps > div {
    padding: 20px;
    border-bottom: 1px solid var(--pl-border);
}


.pl-airflow-steps span {
    color: var(--pl-blue);
    font-size: 10px;
    font-weight: 800;
}


.pl-airflow-steps h3 {
    margin: 7px 0;
    color: var(--pl-navy);
    font-family: "Manrope";
    font-size: 20px;
}


.pl-airflow-steps p {
    margin: 0;
    color: var(--pl-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COVERAGE
========================================================= */

.pl-coverage-section {
    padding: 115px 0;
    background: var(--pl-light);
}


.pl-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.pl-coverage-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 30px;
    background: #e9f8fc;
}


.pl-coverage-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(22,139,209,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,139,209,.12) 1px, transparent 1px);
    background-size: 40px 40px;
}


.pl-coverage-circle {
    position: relative;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(22,139,209,.25);
    border-radius: 50%;
}


.pl-coverage-circle::before,
.pl-coverage-circle::after {
    content: "";
    position: absolute;
    inset: 45px;
    border: 1px dashed rgba(22,139,209,.22);
    border-radius: 50%;
}


.pl-coverage-circle::after {
    inset: 105px;
}


.pl-coverage-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 15px 35px rgba(20,90,120,.12);
}


.pl-coverage-center i {
    color: var(--pl-blue);
    font-size: 23px;
}


.pl-coverage-center strong {
    color: var(--pl-navy);
    font-size: 9px;
    letter-spacing: 2px;
}


.pl-coverage-circle span:not(.coverage-small):not(.coverage-medium):not(.coverage-large) {
    position: absolute;
}


.coverage-small,
.coverage-medium,
.coverage-large {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--pl-blue);
    font-family: "Manrope";
    font-size: 15px;
    font-weight: 800;
}


.coverage-small small,
.coverage-medium small,
.coverage-large small {
    color: var(--pl-muted);
    font-family: "DM Sans";
    font-size: 8px;
}


.coverage-small {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}


.coverage-medium {
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
}


.coverage-large {
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
}


.pl-coverage-content > p {
    max-width: 540px;
    color: var(--pl-muted);
    font-size: 14px;
    line-height: 1.8;
}


.pl-coverage-list {
    margin: 35px 0;
}


.pl-coverage-list > div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--pl-border);
}


.coverage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.coverage-dot.small {
    background: #94dff1;
}


.coverage-dot.medium {
    background: #39bce5;
}


.coverage-dot.large {
    background: #168bd1;
}


.pl-coverage-list div div {
    flex: 1;
}


.pl-coverage-list strong {
    display: block;
    color: var(--pl-navy);
    font-size: 13px;
}


.pl-coverage-list p {
    margin: 3px 0 0;
    color: var(--pl-muted);
    font-size: 11px;
}


.pl-coverage-list b {
    color: #aacbd9;
    font-size: 10px;
}


/* =========================================================
   BENEFITS
========================================================= */

.pl-benefits-section {
    padding: 115px 0;
    background: white;
}


.pl-benefits-layout {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}


.pl-benefit-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--pl-border);
    border-radius: 24px;
    background: #fbfeff;
    transition: .4s;
}


.pl-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(18,82,110,.10);
}


.pl-benefit-card.tall {
    grid-row: span 2;
    min-height: 615px;
}


.pl-benefit-card.wide {
    grid-column: span 2;
}


.pl-benefit-number {
    color: #b6d4e0;
    font-size: 10px;
    font-weight: 800;
}


.pl-benefit-icon {
    width: 55px;
    height: 55px;
    margin: 35px 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eaf8fd;
    color: var(--pl-blue);
}


.pl-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--pl-navy);
    font-family: "Manrope";
    font-size: 21px;
}


.pl-benefit-card p {
    max-width: 390px;
    color: var(--pl-muted);
    font-size: 13px;
    line-height: 1.8;
}


.pl-mini-aqi {
    position: absolute;
    right: 28px;
    bottom: 30px;
    left: 28px;
    padding: 25px;
    border-radius: 20px;
    background: var(--pl-navy);
    color: var(--pa-cyan);
}


.pl-mini-aqi span,
.pl-mini-aqi small {
    display: block;
    font-size: 8px;
    letter-spacing: 1.5px;
}


.pl-mini-aqi strong {
    display: block;
    margin: 8px 0;
    color: #61d6f2;
    font-family: "Manrope";
    font-size: 48px;
}


.pl-mini-aqi small {
    color: #7ee0ad;
}


.pl-control-dots {
    position: absolute;
    right: 28px;
    bottom: 30px;
    display: flex;
    gap: 8px;
}


.pl-control-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pl-blue);
    animation: plDot 1.8s infinite;
}


.pl-control-dots span:nth-child(2) {
    animation-delay: .2s;
}


.pl-control-dots span:nth-child(3) {
    animation-delay: .4s;
}


.pl-control-dots span:nth-child(4) {
    animation-delay: .6s;
}


.pl-control-dots span:nth-child(5) {
    animation-delay: .8s;
}


/* =========================================================
   COMPARE
========================================================= */

.pl-compare-section {
    padding: 115px 0;
    background: var(--pl-light);
}


.pl-compare-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 45px;
}


.pl-compare-header h2 {
    margin-bottom: 0;
}


.pl-compare-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--pl-border);
    border-radius: 25px;
    background: white;
}


.pl-compare-table {
    min-width: 780px;
}


.pl-compare-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3,1fr);
    min-height: 65px;
    border-bottom: 1px solid var(--pl-border);
}


.pl-compare-row:last-child {
    border-bottom: 0;
}


.pl-compare-row > div {
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: var(--pl-muted);
    font-size: 12px;
}


.pl-compare-head {
    min-height: 75px;
    background: #f4fbfe;
}


.pl-compare-head > div {
    color: var(--pl-navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}


.pl-compare-row > div:first-child {
    color: var(--pl-navy);
    font-weight: 700;
}


.pl-compare-row .compare-main {
    background: rgba(22,139,209,.035);
}


.pl-compare-row i {
    color: #1da66b;
}


.pl-compare-action {
    min-height: 75px;
}


.pl-compare-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    min-height: 34px;
    border-radius: 30px;
    background: #eaf8fd;
    color: var(--pl-blue);
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   FINAL CTA
========================================================= */

.pl-products-cta {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pl-navy);
}


.pl-products-cta .pl-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}


.pl-cta-content {
    padding: 80px 0;
}


.pl-cta-content .pl-section-tag {
    color: #62d5f1;
}


.pl-cta-content h2 {
    color: white;
    max-width: 650px;
}


.pl-cta-content h2 span {
    color: #4ac8ed;
}


.pl-cta-content p {
    max-width: 570px;
    color: #a9c2cf;
    font-size: 15px;
    line-height: 1.8;
}


.pl-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


.pl-cta-light-btn {
    border: 1px solid rgba(255,255,255,.25);
    color: white;
}


.pl-cta-light-btn:hover {
    border-color: #4ac8ed;
    color: #4ac8ed;
}


.pl-cta-air {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pl-cta-ring {
    position: absolute;
    border: 1px solid rgba(74,200,237,.20);
    border-radius: 50%;
    animation: plRingRotate 10s linear infinite;
}


.pl-cta-ring.ring-one {
    width: 280px;
    height: 280px;
}


.pl-cta-ring.ring-two {
    width: 450px;
    height: 450px;
    animation-direction: reverse;
}


.pl-cta-purifier {
    position: relative;
    z-index: 3;
    width: 150px;
    height: 270px;
    border-radius: 75px 75px 28px 28px;
    background: linear-gradient(145deg,#ffffff,#c7e0e9);
    box-shadow: 20px 25px 50px rgba(0,0,0,.20);
    animation: plPurifierFloat 5s ease-in-out infinite;
}


.pl-cta-display {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--pl-blue);
    font-family: "Manrope";
    font-size: 20px;
}


.pl-cta-slots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 65px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.pl-cta-slots span {
    height: 2px;
    background: #adcbd5;
}


.pl-cta-air-line {
    position: absolute;
    z-index: 2;
    width: 120px;
    height: 2px;
    border-radius: 5px;
    background: #4ac8ed;
    opacity: .7;
}


.line-one {
    top: 28%;
    left: 10%;
    animation: plLineMove 3s infinite;
}


.line-two {
    right: 8%;
    top: 45%;
    animation: plLineMove 3s infinite 1s;
}


.line-three {
    bottom: 27%;
    left: 17%;
    animation: plLineMove 3s infinite 1.8s;
}


.pl-cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.pl-cta-orb.orb-left {
    width: 500px;
    height: 500px;
    left: -250px;
    top: -180px;
    background: rgba(57,198,239,.07);
}


.pl-cta-orb.orb-right {
    width: 450px;
    height: 450px;
    right: -230px;
    bottom: -250px;
    background: rgba(22,139,209,.10);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes plHeroContent {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes plGlow {

    0%,100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }

}


@keyframes plPurifierFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


@keyframes plFloating {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


@keyframes plWave {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes plParticle {

    0% {
        transform: translate(0,0);
        opacity: .2;
    }

    50% {
        transform: translate(30px,-25px);
        opacity: 1;
    }

    100% {
        transform: translate(0,0);
        opacity: .2;
    }

}


@keyframes plCirclePulse {

    0%,100% {
        transform: scale(1);
        opacity: .45;
    }

    50% {
        transform: scale(1.04);
        opacity: .9;
    }

}


@keyframes plFlowParticle {

    0% {
        transform: translateX(-20px);
        opacity: .2;
    }

    50% {
        transform: translateX(20px);
        opacity: 1;
    }

    100% {
        transform: translateX(50px);
        opacity: 0;
    }

}


@keyframes plDot {

    0%,100% {
        transform: scale(.7);
        opacity: .4;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

}


@keyframes plRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes plLineMove {

    0%,100% {
        transform: translateX(0);
        opacity: .3;
    }

    50% {
        transform: translateX(30px);
        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .pl-products-hero {
        min-height: auto;
        padding: 90px 0;
    }


    .pl-products-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .pl-products-hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }


    .pl-hero-actions,
    .pl-hero-mini-stats {
        justify-content: center;
    }


    .pl-needs-grid {
        grid-template-columns: repeat(3,1fr);
    }


    .pl-tech-grid,
    .pl-products-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .pl-finder-box,
    .pl-airflow-system,
    .pl-coverage-grid,
    .pl-products-cta .pl-container {
        grid-template-columns: 1fr;
    }


    .pl-finder-visual {
        min-height: 450px;
    }


    .pl-benefits-layout {
        grid-template-columns: repeat(2,1fr);
    }


    .pl-benefit-card.tall {
        grid-row: auto;
        min-height: 300px;
    }


    .pl-benefit-card.wide {
        grid-column: auto;
    }


    .pl-products-cta {
        padding: 50px 0;
    }


    .pl-cta-content {
        text-align: center;
    }


    .pl-cta-content p {
        margin-right: auto;
        margin-left: auto;
    }


    .pl-cta-buttons {
        justify-content: center;
    }


    .pl-cta-air {
        min-height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .pl-container {
        width: min(100% - 28px, 1180px);
    }


    .pl-products-hero {
        padding: 70px 0;
    }


    .pl-products-hero h1 {
        font-size: 46px;
    }


    .pl-hero-mini-stats {
        gap: 18px;
        flex-wrap: wrap;
    }


    .pl-hero-product {
        min-height: 470px;
    }


    .pl-purifier {
        width: 180px;
        height: 320px;
    }


    .pl-floating-aqi {
        right: 0;
        top: 50px;
    }


    .pl-wave-one {
        width: 350px;
        height: 350px;
    }


    .pl-wave-two {
        width: 420px;
        height: 420px;
    }


    .pl-needs-section,
    .pl-technology-section,
    .pl-featured-section,
    .pl-finder-section,
    .pl-airflow-section,
    .pl-coverage-section,
    .pl-benefits-section,
    .pl-compare-section {
        padding: 80px 0;
    }


    .pl-section-heading {
        margin-bottom: 40px;
    }


    .pl-section-heading h2,
    .pl-featured-heading h2,
    .pl-airflow-heading h2,
    .pl-finder-content h2,
    .pl-coverage-content h2,
    .pl-compare-header h2,
    .pl-cta-content h2 {
        font-size: 34px;
    }


    .pl-needs-grid,
    .pl-tech-grid,
    .pl-products-grid,
    .pl-benefits-layout {
        grid-template-columns: 1fr;
    }


    .pl-featured-heading,
    .pl-compare-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }


    .pl-finder-content {
        padding: 35px 22px;
    }


    .pl-finder-options {
        grid-template-columns: 1fr;
    }


    .pl-finder-result {
        align-items: flex-start;
    }


    .pl-airflow-stage {
        flex-direction: column;
        gap: 5px;
    }


    .pl-dirty-air,
    .pl-clean-air-flow {
        width: 100%;
        height: 80px;
    }


    .pl-filter-machine {
        width: 170px;
        height: 240px;
    }


    .pl-coverage-visual {
        min-height: 400px;
    }


    .pl-coverage-circle {
        width: 300px;
        height: 300px;
    }


    .pl-benefit-card.tall,
    .pl-benefit-card.wide {
        min-height: 300px;
    }


    .pl-mini-aqi {
        position: static;
        margin-top: 25px;
    }


    .pl-control-dots {
        position: static;
        margin-top: 25px;
    }


    .pl-cta-content {
        padding: 55px 0 20px;
    }


    .pl-cta-air {
        min-height: 320px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .pl-products-hero h1 {
        font-size: 40px;
    }


    .pl-hero-mini-stats {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }


    .pl-products-hero .pl-primary-btn,
    .pl-products-hero .pl-secondary-btn {
        width: 100%;
    }


    .pl-floating-aqi {
        transform: scale(.85);
        transform-origin: right top;
    }


    .pl-products-grid {
        gap: 14px;
    }


    .pl-product-image {
        height: 280px;
    }


    .pl-cta-buttons {
        flex-direction: column;
    }


    .pl-cta-buttons a {
        width: 100%;
    }

}


/* =========================================================
   DARK MODE SUPPORT
========================================================= */

html.dark .pl-products-page {
    --pl-navy: #e8f7fc;
    --pl-text: #e1f0f5;
    --pl-muted: #9db5c0;
    --pl-light: #071c29;
    --pl-border: rgba(151,207,226,.14);
    --pl-white: #0c2634;
}


html.dark .pl-products-hero,
html.dark .pl-needs-section,
html.dark .pl-featured-section,
html.dark .pl-airflow-section,
html.dark .pl-benefits-section {
    background: #061923;
}


html.dark .pl-technology-section,
html.dark .pl-finder-section,
html.dark .pl-coverage-section,
html.dark .pl-compare-section {
    background: #071f2d;
}


html.dark .pl-need-card,
html.dark .pl-tech-card,
html.dark .pl-product-card,
html.dark .pl-finder-box,
html.dark .pl-benefit-card,
html.dark .pl-compare-table-wrapper,
html.dark .pl-secondary-btn {
    background: #0b2635;
}


html.dark .pl-product-image {
    background: #0a2230;
}


html.dark .pl-finder-result,
html.dark .pl-finder-option.active {
    background: #0d3344;
}


html.dark .pl-compare-head {
    background: #0d2a39;
}


html.dark .pl-compare-row .compare-main {
    background: rgba(70,190,225,.05);
}
/* =========================================================
   PURE LIVING CO.
   COMPARE PAGE
========================================================= */

.pc-page {

    --pc-blue: #168bd1;
    --pc-cyan: #42c8ed;
    --pc-navy: #082d43;
    --pc-text: #173b4e;
    --pc-muted: #708794;
    --pc-light: #f2faff;
    --pc-border: #dcecf3;
    --pc-white: #ffffff;

    font-family: "DM Sans", sans-serif;
    overflow: hidden;
}


.pc-page *,
.pc-page *::before,
.pc-page *::after {
    box-sizing: border-box;
}


.pc-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


.pc-section-tag {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--pc-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   COMMON HEADING
========================================================= */

.pc-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.pc-heading-left {

    margin-left: 0;

    text-align: left;
}


.pc-heading h2 {

    margin: 13px 0 16px;

    color: var(--pc-navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 54px);

    font-weight: 800;

    line-height: 1.08;
}


.pc-heading h2 span {
    color: var(--pc-blue);
}


.pc-heading p {

    max-width: 650px;

    margin: auto;

    color: var(--pc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.pc-heading-left p {
    margin-left: 0;
}


/* =========================================================
   01 BANNER
========================================================= */

.pc-banner {

    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #092c43;
}


.pc-banner > img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: pcBannerZoom 10s ease-in-out infinite alternate;
}


.pc-banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,29,43,.93) 0%,
            rgba(4,29,43,.76) 43%,
            rgba(4,29,43,.25) 100%
        );
}


.pc-banner-content {

    position: relative;

    z-index: 3;

    width: min(1180px, calc(100% - 40px));

    margin: auto;

    padding: 90px 0;
}


.pc-banner-tag {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #65d8f4;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.pc-banner-tag i {
    font-size: 7px;
}


.pc-banner-content h1 {

    max-width: 700px;

    margin: 18px 0;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: .98;

    font-weight: 800;
    padding-top: 70px;
}


.pc-banner-content h1 span {
    color: #4ec9ed;
}


.pc-banner-content p {

    max-width: 560px;

    color: #c3d7e0;

    font-size: 15px;

    line-height: 1.8;
}


.pc-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: #a9c1cc;

    font-size: 13px;
}


.pc-breadcrumb a {
    color: #62d5f1;
}


.pc-breadcrumb i {
    font-size: 8px;
}


.pc-banner-stat {

    position: absolute;

    z-index: 4;

    right: 6%;

    bottom: 55px;

    width: 190px;

    padding: 22px;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 18px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);

    color: white;
}


.pc-banner-stat span {

    display: block;

    color: #65d8f4;

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 800;
}


.pc-banner-stat strong {

    display: block;

    margin: 7px 0;

    font-family: "Manrope";

    font-size: 17px;
}


.pc-banner-stat small {

    color: #bdd0d8;

    font-size: 13px;
}


/* =========================================================
   02 QUICK COMPARISON
========================================================= */

.pc-quick-section {

    padding: 110px 0;

    background: white;
}


.pc-model-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.pc-model-card {

    position: relative;

    overflow: hidden;

    padding: 25px;

    border: 1px solid var(--pc-border);

    border-radius: 25px;

    background: #fbfeff;

    transition: .4s ease;
}


.pc-model-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 30px 60px rgba(15,80,105,.11);
}


.pc-featured-model {

    border-color: rgba(22,139,209,.4);

    box-shadow:
        0 20px 50px rgba(22,139,209,.08);
}


.pc-popular {

    position: absolute;

    top: 17px;

    right: 17px;

    padding: 7px 10px;

    border-radius: 20px;

    background: var(--pc-blue);

    color: white;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.pc-model-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.pc-model-top span {

    color: #aacbd8;

    font-size: 10px;

    font-weight: 800;
}


.pc-model-top b {

    color: var(--pc-blue);

    font-size: 8px;

    letter-spacing: 1px;
}


.pc-model-visual {

    position: relative;

    height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 15px 0;
}


.pc-model-glow {

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(57,198,239,.15);

    filter: blur(25px);
}


.pc-device {

    position: relative;

    z-index: 2;

    border-radius: 60px 60px 22px 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #d5e8ef
        );

    box-shadow:
        18px 25px 45px rgba(18,76,100,.18);

    transition: .5s ease;
}


.pc-model-card:hover .pc-device {

    transform:
        translateY(-10px)
        rotate(2deg);
}


.device-one {

    width: 115px;
    height: 200px;
}


.device-two {

    width: 130px;
    height: 230px;
}


.device-three {

    width: 145px;
    height: 250px;
}


.pc-device-screen {

    position: absolute;

    top: 38px;
    left: 50%;

    width: 55px;
    height: 55px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--pc-blue);

    font-family: "Manrope";

    font-size: 17px;

    font-weight: 800;
}


.pc-device-lines {

    position: absolute;

    bottom: 30px;
    left: 50%;

    width: 60px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.pc-device-lines i {

    height: 2px;

    border-radius: 5px;

    background: #b7d0da;
}


.pc-model-label {

    color: var(--pc-blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.pc-model-card h3 {

    margin: 8px 0;

    color: var(--pc-navy);

    font-family: "Manrope";

    font-size: 24px;
}


.pc-model-card > p {

    min-height: 43px;

    margin: 0;

    color: var(--pc-muted);

    font-size: 15px;

    line-height: 1.7;
}


.pc-model-data {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 8px;

    margin: 23px 0;

    padding: 17px 0;

    border-top: 1px solid var(--pc-border);

    border-bottom: 1px solid var(--pc-border);
}


.pc-model-data div {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.pc-model-data strong {

    color: var(--pc-navy);

    font-size: 14px;
}


.pc-model-data span {

    color: var(--pc-muted);

    font-size: 13px;
}


.pc-model-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--pc-blue);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   03 DETAILS
========================================================= */

.pc-details-section {

    padding: 110px 0;

    background: var(--pc-light);
}


.pc-table-wrap {

    overflow-x: auto;

    border: 1px solid var(--pc-border);

    border-radius: 24px;

    background: white;

    box-shadow:
        0 20px 50px rgba(18,82,110,.06);
}


.pc-table {

    min-width: 800px;
}


.pc-table-row {

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3,1fr);

    min-height: 64px;

    border-bottom: 1px solid var(--pc-border);
}


.pc-table-row:last-child {
    border-bottom: 0;
}


.pc-table-row > div {

    display: flex;

    align-items: center;

    padding: 0 22px;

    color: var(--pc-muted);

    font-size: 13px;
}


.pc-table-row > div:first-child {

    color: var(--pc-navy);

    font-weight: 700;
}


.pc-table-head {

    min-height: 76px;

    background: #edf9fd;
}


.pc-table-head > div {

    color: var(--pc-navy);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.pc-highlight-column {

    background:
        rgba(22,139,209,.035);

    border-left:
        1px solid rgba(22,139,209,.08);

    border-right:
        1px solid rgba(22,139,209,.08);
}


.pc-table-row i {
    color: #1b9f6b;
}


/* =========================================================
   04 FILTRATION
========================================================= */

.pc-filtration-section {

    padding: 110px 0;

    background: white;
}


.pc-filtration-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 70px;

    align-items: center;
}


.pc-filtration-copy h2 {

    margin: 13px 0 18px;

    color: var(--pc-navy);

    font-family: "Manrope";

    font-size: clamp(36px,4vw,55px);

    line-height: 1.05;
}


.pc-filtration-copy h2 span {
    color: var(--pc-blue);
}


.pc-filtration-copy > p {

    max-width: 450px;

    color: var(--pc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.pc-filter-legend {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;

    margin-top: 30px;
}


.pc-filter-legend div {

    display: flex;

    align-items: center;

    gap: 9px;
}


.pc-filter-legend span {

    width: 10px;
    height: 10px;

    border-radius: 3px;
}


.pc-filter-legend strong {

    color: var(--pc-navy);

    font-size: 13px;
}


.legend-pre {
    background: #dce9ed;
}


.legend-hepa {
    background: #8bdcf1;
}


.legend-carbon {
    background: #66828e;
}


.legend-advanced {
    background: var(--pc-blue);
}


.pc-filter-visual {

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 40px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(57,198,239,.16),
            transparent 55%
        ),
        #effaff;
}


.pc-filter-column {

    position: relative;

    width: 125px;

    padding-top: 38px;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.pc-filter-column.active {

    transform: translateY(-20px);

}


.pc-filter-model {

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    color: var(--pc-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.pc-filter-block {

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color: var(--pa-cyan);

    font-size: 9px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(20,80,105,.05);
}


.pc-filter-block.pre {
    background: #dce9ed;
}


.pc-filter-block.hepa {
    background: #bfeef8;
}


.pc-filter-block.carbon {
    background: #d3dfe3;
}


.pc-filter-block.advanced {

    background: var(--pc-blue);

    color: white;

    animation:
        pcAdvancedPulse 2.5s infinite;
}


/* =========================================================
   05 ROOM
========================================================= */

.pc-room-section {

    padding: 110px 0;

    background: var(--pc-light);
}


.pc-room-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 14px;
}


.pc-room-card {

    position: relative;

    min-height: 310px;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid var(--pc-border);

    border-radius: 23px;

    background: white;

    transition: .4s ease;
}


.pc-room-card:hover,
.pc-room-card.active {

    transform: translateY(-8px);

    border-color:
        rgba(22,139,209,.35);

    box-shadow:
        0 25px 50px rgba(18,82,110,.09);
}


.pc-room-icon {

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e9f8fd;

    color: var(--pc-blue);

    font-size: 19px;
}


.pc-room-card > span {

    display: block;

    margin-top: 35px;

    color: var(--pc-blue);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.pc-room-card h3 {

    margin: 8px 0;

    color: var(--pc-navy);

    font-family: "Manrope";

    font-size: 22px;
}


.pc-room-line {

    width: 40px;

    height: 2px;

    margin: 20px 0;

    background: var(--pc-blue);

    transition: .4s;
}


.pc-room-card:hover .pc-room-line {

    width: 90px;

}


.pc-room-card strong {

    color: var(--pc-navy);

    font-size: 15px;
}


.pc-room-card p {

    color: var(--pc-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   06 PERFORMANCE
========================================================= */

.pc-performance-section {

    padding: 110px 0;

    background: white;
}


.pc-performance-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 70px;

    align-items: center;
}


.pc-performance-intro h2 {

    margin: 13px 0 18px;

    color: var(--pc-navy);

    font-family: "Manrope";

    font-size: clamp(36px,4vw,54px);

    line-height: 1.05;
}


.pc-performance-intro h2 span {
    color: var(--pc-blue);
}


.pc-performance-intro p {

    max-width: 450px;

    color: var(--pc-muted);

    font-size: 14px;

    line-height: 1.8;
    text-align: justify;
}


.pc-outline-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    min-height: 48px;

    padding: 0 20px;

    border: 1px solid var(--pc-border);

    border-radius: 50px;

    color: var(--pc-navy);

    font-size: 13px;

    font-weight: 800;

    transition: .3s;
}


.pc-outline-btn:hover {

    border-color: var(--pc-blue);

    color: var(--pc-blue);

    transform: translateY(-3px);
}


.pc-metric-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 14px;
}


.pc-metric-card {

    padding: 25px;

    border:
        1px solid var(--pc-border);

    border-radius: 22px;

    background: #fbfeff;

    transition: .4s;
}


.pc-metric-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(20,80,105,.08);
}


.pc-metric-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eaf8fd;

    color: var(--pc-blue);
}


.pc-metric-card > span {

    display: block;

    margin-top: 22px;

    color: var(--pc-muted);

    font-size: 13px;

    letter-spacing: 1px;

    font-weight: 800;
}


.pc-metric-card strong {

    display: inline-block;

    margin-top: 7px;

    color: var(--pc-navy);

    font-family: "Manrope";

    font-size: 35px;
}


.pc-metric-card small {

    color: var(--pc-muted);

    font-size: 9px;
}


.pc-meter {

    width: 100%;

    height: 5px;

    margin-top: 14px;

    overflow: hidden;

    border-radius: 10px;

    background: #e1eff4;
}


.pc-meter i {

    display: block;

    height: 100%;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--pc-cyan),
            var(--pc-blue)
        );

    animation:
        pcMeterGrow 1.8s ease both;
}


.pc-metric-card p {

    margin: 10px 0 0;

    color: var(--pc-muted);

    font-size: 13px;
}


/* =========================================================
   07 FINAL CTA
========================================================= */

.pc-final-section {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--pc-navy);
}


.pc-final-section .pc-container {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}


.pc-final-content {

    padding: 80px 0;
}


.pc-final-content .pc-section-tag {
    color: #62d5f1;
}


.pc-final-content h2 {

    max-width: 620px;

    margin: 14px 0 18px;

    color: white;

    font-family: "Manrope";

    font-size: clamp(38px,4vw,57px);

    line-height: 1.05;
}


.pc-final-content h2 span {
    color: #48c9ed;
}


.pc-final-content p {

    max-width: 550px;

    color: #a9c2ce;

    font-size: 14px;

    line-height: 1.8;
}


.pc-final-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;
}


.pc-white-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 50px;

    background: white;

    color: var(--pc-navy);

    font-size: 15px;

    font-weight: 800;

    transition: .3s;
}


.pc-white-btn:hover {

    color: var(--pc-blue);

    transform: translateY(-3px);

}


.pc-final-link {

    color: #c6d8df;

    font-size: 13px;

    font-weight: 700;
}


.pc-final-link:hover {
    color: #5bd3f0;
}


.pc-final-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.pc-final-ring {

    position: absolute;

    border:
        1px solid rgba(66,200,237,.18);

    border-radius: 50%;

    animation:
        pcRingSpin 12s linear infinite;
}


.ring-a {

    width: 220px;
    height: 220px;
}


.ring-b {

    width: 350px;
    height: 350px;

    animation-direction: reverse;
}


.ring-c {

    width: 480px;
    height: 480px;
}


.pc-final-purifier {

    position: relative;

    z-index: 3;

    width: 145px;
    height: 270px;

    border-radius:
        75px 75px 28px 28px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #c9e0e8
        );

    box-shadow:
        20px 30px 55px rgba(0,0,0,.22);

    animation:
        pcPurifierFloat 5s ease-in-out infinite;
}


.pc-final-display {

    position: absolute;

    top: 45px;
    left: 50%;

    width: 60px;
    height: 60px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--pc-blue);

    font-family: "Manrope";

    font-size: 20px;

    font-weight: 800;
}


.pc-final-lines {

    position: absolute;

    left: 50%;
    bottom: 38px;

    width: 65px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.pc-final-lines i {

    height: 2px;

    border-radius: 5px;

    background: #a9c7d2;
}


.pc-air-dot {

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #48c9ed;

    box-shadow:
        0 0 15px rgba(72,201,237,.8);
}


.dot-one {

    top: 25%;
    left: 20%;

    animation: pcDotFloat 3s infinite;
}


.dot-two {

    top: 55%;
    right: 15%;

    animation: pcDotFloat 3.5s infinite .5s;
}


.dot-three {

    bottom: 20%;
    left: 32%;

    animation: pcDotFloat 4s infinite 1s;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes pcBannerZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}


@keyframes pcAdvancedPulse {

    0%,100% {
        box-shadow:
            0 0 0 rgba(22,139,209,0);
    }

    50% {
        box-shadow:
            0 0 25px rgba(22,139,209,.28);
    }

}


@keyframes pcMeterGrow {

    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes pcRingSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes pcPurifierFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


@keyframes pcDotFloat {

    0%,100% {
        transform: translate(0,0);
        opacity: .35;
    }

    50% {
        transform: translate(25px,-25px);
        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .pc-banner {
        min-height: 500px;
    }


    .pc-banner-stat {
        display: none;
    }


    .pc-model-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .pc-filtration-grid,
    .pc-performance-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .pc-room-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .pc-final-section .pc-container {
        grid-template-columns: 1fr;
    }


    .pc-final-content {
        text-align: center;
    }


    .pc-final-content p {
        margin-right: auto;
        margin-left: auto;
    }


    .pc-final-actions {
        justify-content: center;
    }


    .pc-final-visual {
        min-height: 360px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .pc-container,
    .pc-banner-content {
        width: min(100% - 28px, 1180px);
    }


    .pc-banner {
        min-height: 470px;
    }


    .pc-banner-content {
        padding: 70px 0;
    }


    .pc-banner-content h1 {
        font-size: 45px;
    }


    .pc-quick-section,
    .pc-details-section,
    .pc-filtration-section,
    .pc-room-section,
    .pc-performance-section {
        padding: 80px 0;
    }


    .pc-heading {
        margin-bottom: 40px;
    }


    .pc-heading h2,
    .pc-filtration-copy h2,
    .pc-performance-intro h2,
    .pc-final-content h2 {
        font-size: 34px;
    }


    .pc-model-grid,
    .pc-room-grid,
    .pc-metric-grid {
        grid-template-columns: 1fr;
    }


    .pc-model-card {
        padding: 22px;
    }


    .pc-model-visual {
        height: 230px;
    }


    .pc-filter-visual {
        min-height: 400px;

        gap: 8px;

        padding: 25px 12px;
    }


    .pc-filter-column {
        width: 90px;
    }


    .pc-filter-block {
        height: 60px;

        font-size: 7px;
    }


    .pc-performance-intro {
        text-align: center;
    }


    .pc-performance-intro p {
        margin-right: auto;
        margin-left: auto;
    }


    .pc-outline-btn {
        width: 100%;
    }


    .pc-final-content {
        padding: 60px 0 20px;
    }


    .pc-final-actions {
        flex-direction: column;
    }


    .pc-white-btn {
        width: 100%;
        justify-content: center;
    }


    .pc-final-visual {
        min-height: 320px;
    }


    .ring-c {
        width: 330px;
        height: 330px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .pc-banner-content h1 {
        font-size: 40px;
    }


    .pc-banner-content p {
        font-size: 13px;
    }


    .pc-model-data {
        gap: 4px;
    }


    .pc-filter-column {
        width: 78px;
    }


    .pc-filter-block {
        height: 55px;
        padding: 4px;
        text-align: center;
    }

}


/* =========================================================
   DARK MODE
========================================================= */

html.dark .pc-page {

    --pc-navy: #e5f5fa;
    --pc-muted: #9db7c2;
    --pc-light: #071d2a;
    --pc-border: rgba(157,210,226,.14);
}


html.dark .pc-quick-section,
html.dark .pc-filtration-section,
html.dark .pc-performance-section {

    background: #061923;
}


html.dark .pc-details-section,
html.dark .pc-room-section {

    background: #071f2d;
}


html.dark .pc-model-card,
html.dark .pc-table-wrap,
html.dark .pc-room-card,
html.dark .pc-metric-card {

    background: #0b2735;
}


html.dark .pc-table-head {

    background: #0d2b3a;
}


html.dark .pc-filter-visual {

    background: #0a2634;
}


html.dark .pc-highlight-column {

    background: rgba(57,198,239,.045);
}
/* =========================================================
   PURE LIVING CO.
   BREATHE TECHNOLOGY PAGE
========================================================= */

.bt-page {

    --bt-blue: #168bd1;
    --bt-cyan: #43c9ed;
    --bt-navy: #082d43;
    --bt-text: #173b4e;
    --bt-muted: #708794;
    --bt-light: #f2faff;
    --bt-border: #dcecf3;
    --bt-white: #ffffff;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


.bt-page *,
.bt-page *::before,
.bt-page *::after {
    box-sizing: border-box;
}


.bt-container {

    width: min(1180px, calc(100% - 40px));

    margin: auto;
}


.bt-section-tag {

    display: inline-flex;

    color: var(--bt-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   COMMON HEADING
========================================================= */

.bt-heading {

    max-width: 730px;

    margin: 0 auto 55px;

    text-align: center;
}


.bt-heading h2 {

    margin: 13px 0 16px;

    color: var(--bt-navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.06;

    font-weight: 800;
}


.bt-heading h2 span {
    color: var(--bt-blue);
}


.bt-heading p {

    max-width: 650px;

    margin: auto;

    color: var(--bt-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   01 HERO
========================================================= */

.bt-hero {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #062b40;
}


.bt-hero > img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: btHeroZoom 11s ease-in-out infinite alternate;
}


.bt-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,28,43,.95),
            rgba(3,28,43,.72) 48%,
            rgba(3,28,43,.2)
        );
}


.bt-hero-content {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: auto;

    padding: 100px 0;
}


.bt-hero-tag {

    color: #62d7f2;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.bt-hero-content h1 {

    max-width: 760px;

    margin: 18px 0;

    color: white;

    font-family: "Manrope";

    font-size: clamp(48px, 6vw, 75px);

    line-height: .98;

    font-weight: 800;
    padding-top: 50px;
}


.bt-hero-content h1 span {
    color: #4bcbed;
}


.bt-hero-content p {

    max-width: 580px;

    color: #bfd2da;

    font-size: 15px;

    line-height: 1.8;
}


.bt-hero-actions {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 32px;
}


.bt-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 50px;

    background: #ffffff;

    color: var(--bt-navy);

    font-size: 11px;

    font-weight: 800;

    transition: .3s;
}


.bt-primary-btn:hover {

    transform: translateY(-4px);

    color: var(--bt-blue);

}


.bt-hero-link {

    color: #c8dbe3;

    font-size: 11px;

    font-weight: 700;
}


.bt-hero-link:hover {
    color: #58d3ef;
}


.bt-hero-status {

    position: absolute;

    z-index: 3;

    right: 5%;

    bottom: 50px;

    width: 210px;

    padding: 20px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 18px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(14px);

    color: #a9c4cf;

    font-size: 8px;

    letter-spacing: 1px;

    font-weight: 800;
}


.bt-hero-status strong {

    display: block;

    margin-top: 8px;

    color: white;

    font-size: 11px;

    letter-spacing: 0;
}


.bt-status-dot {

    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 6px;

    border-radius: 50%;

    background: #48d59b;

    box-shadow:
        0 0 12px rgba(72,213,155,.8);

    animation: btPulse 2s infinite;
}


/* =========================================================
   02 AIR AROUND YOU
========================================================= */

.bt-air-section {

    padding: 110px 0;

    background: white;
}


.bt-air-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


.bt-air-copy h2 {

    margin: 13px 0 18px;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: clamp(36px,4vw,55px);

    line-height: 1.05;
}


.bt-air-copy h2 span {
    color: var(--bt-blue);
}


.bt-air-copy > p {

    max-width: 500px;

    color: var(--bt-muted);

    font-size: 15px;

    line-height: 1.8;
}


.bt-air-note {

    display: flex;

    gap: 12px;

    margin-top: 28px;

    padding: 16px;

    border-radius: 14px;

    background: var(--bt-light);

    color: var(--bt-muted);

    font-size: 13px;

    line-height: 1.6;
}


.bt-air-note i {
    color: var(--bt-blue);
}


.bt-particle-scene {

    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 35px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(67,201,237,.18),
            transparent 55%
        ),
        #effaff;
}


.bt-room-circle {

    width: 270px;
    height: 270px;

    border:
        1px solid rgba(22,139,209,.16);

    border-radius: 50%;

    animation: btCircleRotate 14s linear infinite;
}


.bt-room-circle::before,
.bt-room-circle::after {

    content: "";

    position: absolute;

    border-radius: 50%;

    border:
        1px dashed rgba(22,139,209,.15);
}


.bt-room-circle::before {

    width: 210px;
    height: 210px;

    margin: 30px;
}


.bt-room-circle::after {

    width: 150px;
    height: 150px;

    margin: 60px;
}


.bt-air-center {

    position: absolute;

    width: 115px;
    height: 115px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 20px 45px rgba(15,84,111,.13);
}


.bt-air-center i {

    color: var(--bt-blue);

    font-size: 22px;
}


.bt-air-center strong {

    margin-top: 5px;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: 13px;
}


.bt-air-center small {

    color: var(--bt-muted);

    font-size: 7px;
}


.bt-particle {

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #87bfce;

    animation: btParticleMove 4s infinite;
}


.p1 { top: 20%; left: 18%; }
.p2 { top: 30%; right: 18%; animation-delay: .6s; }
.p3 { bottom: 20%; left: 25%; animation-delay: 1s; }
.p4 { bottom: 27%; right: 25%; animation-delay: 1.5s; }
.p5 { top: 17%; left: 48%; animation-delay: 2s; }
.p6 { top: 72%; left: 48%; animation-delay: .4s; }
.p7 { top: 45%; left: 13%; animation-delay: 1.2s; }
.p8 { top: 53%; right: 13%; animation-delay: 2.2s; }


.bt-air-label {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 8px 11px;

    border-radius: 20px;

    background: white;

    color: var(--bt-navy);

    font-size: 8px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(15,84,111,.08);
}


.bt-air-label i {
    color: var(--bt-blue);
}


.label-dust {
    top: 17%;
    left: 7%;
}


.label-smoke {
    top: 22%;
    right: 7%;
}


.label-allergen {
    bottom: 15%;
    right: 9%;
}


/* =========================================================
   03 PURIFICATION JOURNEY
========================================================= */

.bt-purification-section {

    padding: 110px 0;

    background: var(--bt-light);
}


.bt-stage-flow {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 12px;
}


.bt-flow-line {

    position: absolute;

    top: 54px;

    left: 8%;

    right: 8%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(22,139,209,.3),
            transparent
        );
}


.bt-stage-card {

    position: relative;

    z-index: 2;

    min-height: 350px;

    padding: 22px;

    border:
        1px solid var(--bt-border);

    border-radius: 22px;

    background: white;

    transition: .4s;
}


.bt-stage-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(20,82,110,.1);
}


.bt-stage-number {

    color: #aacbd7;

    font-size: 9px;

    font-weight: 800;
}


.bt-stage-icon {

    width: 62px;
    height: 62px;

    margin: 24px 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #eaf8fd;

    color: var(--bt-blue);

    font-size: 21px;
}


.bt-stage-card > span {

    color: var(--bt-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.bt-stage-card h3 {

    margin: 8px 0;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: 20px;
}


.bt-stage-card p {

    color: var(--bt-muted);

    font-size: 13px;

    line-height: 1.7;
    text-align: justify;
}


.bt-stage-arrow {

    position: absolute;

    right: 18px;

    bottom: 20px;

    color: #b2ccd6;

    font-size: 11px;
}


.bt-stage-clean {

    border-color:
        rgba(22,139,209,.35);
}


.bt-clean-pulse {

    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #39c994;

    box-shadow:
        0 0 0 7px rgba(57,201,148,.12);

    animation: btPulse 2s infinite;
}


/* =========================================================
   04 HEPA
========================================================= */

.bt-hepa-section {

    padding: 110px 0;

    background: white;
}


.bt-hepa-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.bt-hepa-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at center,
            rgba(67,201,237,.18),
            transparent 58%
        ),
        #eefaff;
}


.bt-hepa-filter {

    position: relative;

    z-index: 3;

    width: 220px;
    height: 300px;

    display: flex;

    gap: 5px;

    padding: 20px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            #e5f1f4,
            #ffffff,
            #d6ebf0
        );

    box-shadow:
        20px 25px 55px rgba(14,83,108,.17);
}


.bt-filter-fold {

    flex: 1;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #b7e7f0,
            #eefcff,
            #b7e7f0
        );

    animation: btFilterWave 3s infinite ease-in-out;
}


.f2 { animation-delay: .15s; }
.f3 { animation-delay: .3s; }
.f4 { animation-delay: .45s; }
.f5 { animation-delay: .6s; }
.f6 { animation-delay: .75s; }


.bt-hepa-particle {

    position: absolute;

    z-index: 5;

    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #73939e;

    box-shadow:
        0 0 0 5px rgba(115,147,158,.08);

    animation: btParticleToFilter 4s infinite;
}


.hp1 { top: 30%; left: 8%; }
.hp2 { top: 43%; left: 13%; animation-delay: .8s; }
.hp3 { top: 57%; left: 7%; animation-delay: 1.5s; }
.hp4 { top: 68%; left: 16%; animation-delay: 2.1s; }


.bt-clean-air-flow {

    position: absolute;

    right: 7%;

    display: flex;

    flex-direction: column;

    gap: 16px;
}


.bt-clean-air-flow span {

    display: block;

    width: 90px;

    height: 3px;

    border-radius: 10px;

    background: #4dc9e9;

    animation: btAirFlow 2s infinite;
}


.bt-clean-air-flow span:nth-child(2) {
    animation-delay: .3s;
}


.bt-clean-air-flow span:nth-child(3) {
    animation-delay: .6s;
}


.bt-hepa-badge {

    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 13px 16px;

    border-radius: 13px;

    background: white;

    box-shadow:
        0 12px 30px rgba(15,84,111,.09);
}


.bt-hepa-badge strong {

    display: block;

    color: var(--bt-blue);

    font-family: "Manrope";

    font-size: 16px;
}


.bt-hepa-badge small {

    color: var(--bt-muted);

    font-size: 13px;
}


.bt-hepa-copy h2 {

    margin: 13px 0 18px;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: clamp(36px,4vw,54px);

    line-height: 1.05;
}


.bt-hepa-copy h2 span {
    color: var(--bt-blue);
}


.bt-hepa-copy > p {

    max-width: 500px;

    color: var(--bt-muted);

    font-size: 14px;

    line-height: 1.8;
}


.bt-hepa-points {

    margin-top: 35px;
}


.bt-hepa-points > div {

    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 15px;

    margin-bottom: 22px;
}


.bt-hepa-points > div > span {

    color: var(--bt-blue);

    font-size: 9px;

    font-weight: 800;
}


.bt-hepa-points strong {

    color: var(--bt-navy);

    font-size: 15px;
}


.bt-hepa-points p {

    margin: 5px 0 0;

    color: var(--bt-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   05 CARBON
========================================================= */

.bt-carbon-section {

    padding: 110px 0;

    background: var(--bt-light);
}


.bt-carbon-heading {

    max-width: 650px;

    margin-bottom: 55px;
}


.bt-carbon-heading h2 {

    margin: 13px 0 16px;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: clamp(36px,4vw,55px);

    line-height: 1.05;
}


.bt-carbon-heading h2 span {
    color: var(--bt-blue);
}


.bt-carbon-heading p {

    color: var(--bt-muted);

    font-size: 14px;

    line-height: 1.8;
}


.bt-carbon-flow {

    min-height: 360px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    gap: 20px;
}


.bt-carbon-side {

    position: relative;

    min-height: 260px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 25px;

    background: white;

    border: 1px solid var(--bt-border);
}


.bt-carbon-side > i {

    color: #8299a3;

    font-size: 35px;

    margin-bottom: 15px;
}


.bt-carbon-side strong {

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: 17px;
}


.bt-carbon-side small {

    max-width: 180px;

    margin-top: 7px;

    color: var(--bt-muted);

    font-size: 13px;

    line-height: 1.6;
}


.bt-pollution-dot {

    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #8198a1;

    animation: btSmokeMove 3s infinite;
}


.cd1 {
    top: 30%;
    left: 20%;
}


.cd2 {
    top: 45%;
    left: 28%;

    animation-delay: .5s;
}


.cd3 {
    top: 60%;
    left: 18%;

    animation-delay: 1s;
}


.bt-carbon-core {

    position: relative;

    min-height: 330px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background:
        radial-gradient(
            circle,
            rgba(22,139,209,.12),
            transparent 65%
        );
}


.bt-carbon-ring {

    position: absolute;

    width: 270px;
    height: 270px;

    border:
        1px dashed rgba(22,139,209,.3);

    border-radius: 50%;

    animation: btCircleRotate 12s linear infinite;
}


.bt-carbon-filter {

    position: relative;

    z-index: 2;

    width: 150px;
    height: 180px;

    padding: 15px;

    display: flex;

    gap: 5px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #354d58,
            #172e39
        );

    box-shadow:
        0 25px 50px rgba(7,37,49,.25);
}


.bt-carbon-filter span {

    flex: 1;

    border-radius: 8px;

    background:
        repeating-linear-gradient(
            0deg,
            #5e747c 0 4px,
            #253d47 4px 8px
        );
}


.bt-carbon-core > strong {

    position: absolute;

    bottom: 18px;

    color: var(--bt-blue);

    font-size: 8px;

    letter-spacing: 1.5px;
}


.clean-side {

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eefbfe
        );
}


.bt-clean-air-icon {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #e8f9fd;

    color: var(--bt-blue);

    font-size: 24px;
}


/* =========================================================
   06 SMART
========================================================= */

.bt-smart-section {

    padding: 110px 0;

    background: white;
}


.bt-smart-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}


.bt-smart-copy h2 {

    margin: 13px 0 18px;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: clamp(36px,4vw,55px);

    line-height: 1.05;
}


.bt-smart-copy h2 span {
    color: var(--bt-blue);
}


.bt-smart-copy p {

    max-width: 470px;

    color: var(--bt-muted);

    font-size: 14px;

    line-height: 1.8;
    text-align: justify;
}


.bt-smart-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    padding: 14px 20px;

    border-radius: 50px;

    background: var(--pa-cyan);

    color: white;

    font-size: 13px;

    font-weight: 800;

    transition: .3s;
}


.bt-smart-btn:hover {

    background: var(--bt-blue);

    transform: translateY(-3px);
}


.bt-dashboard {

    padding: 28px;

    border:
        1px solid var(--bt-border);

    border-radius: 28px;

    background: #f9fdff;

    box-shadow:
        0 25px 60px rgba(20,80,105,.08);
}


.bt-dashboard-top {

    display: flex;

    justify-content: space-between;

    color: var(--bt-muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.bt-live {

    color: #2eaf7b;
}


.bt-live i {

    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 4px;

    border-radius: 50%;

    background: #2eaf7b;
}


.bt-aqi-display {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 35px;

    align-items: center;

    padding: 35px 0;
}


.bt-aqi-circle {

    width: 165px;
    height: 165px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        10px solid #b9edf7;

    border-right-color: var(--bt-blue);

    border-radius: 50%;
}


.bt-aqi-circle span {

    color: var(--bt-muted);

    font-size: 8px;

    font-weight: 800;
}


.bt-aqi-circle strong {

    margin: 4px 0;

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: 42px;
}


.bt-aqi-circle small {

    color: #2eaf7b;

    font-size: 8px;

    font-weight: 800;
}


.bt-aqi-info > div {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 0;

    border-bottom: 1px solid var(--bt-border);
}


.bt-aqi-info span {

    color: var(--bt-muted);

    font-size: 13px;

    font-weight: 700;
}


.bt-aqi-info strong {

    color: var(--bt-navy);

    font-size: 11px;
}


.bt-wave-chart {

    height: 100px;

    display: flex;

    align-items: end;

    gap: 7px;

    padding: 12px;

    border-radius: 14px;

    background: #edfaff;
}


.bt-wave-chart span {

    flex: 1;

    border-radius: 5px 5px 2px 2px;

    background:
        linear-gradient(
            180deg,
            var(--bt-cyan),
            #c8edf5
        );

    animation: btChart 2.5s ease-in-out infinite alternate;
}


.bt-wave-chart span:nth-child(2n) {
    animation-delay: .3s;
}


.bt-dashboard-bottom {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 10px;

    margin-top: 15px;
}


.bt-dashboard-bottom div {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px;

    border-radius: 10px;

    background: white;
}


.bt-dashboard-bottom i {
    color: var(--bt-blue);
}


.bt-dashboard-bottom span {

    color: var(--bt-muted);

    font-size: 13px;
}


/* =========================================================
   07 AIRFLOW
========================================================= */

.bt-airflow-section {

    padding: 110px 0;

    background: var(--bt-light);
}


.bt-airflow-layout {

    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 40px;

    align-items: center;
}


.bt-airflow-metrics {

    display: grid;

    gap: 12px;
}


.bt-airflow-metric {

    padding: 22px;

    border:
        1px solid var(--bt-border);

    border-radius: 20px;

    background: white;

    transition: .3s;
}


.bt-airflow-metric:hover {

    transform: translateX(7px);

    box-shadow:
        0 15px 35px rgba(20,80,105,.08);
}


.bt-airflow-metric i {

    color: var(--bt-blue);

    font-size: 17px;
}


.bt-airflow-metric span {

    display: block;

    margin-top: 17px;

    color: var(--bt-muted);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.bt-airflow-metric strong {

    color: var(--bt-navy);

    font-family: "Manrope";

    font-size: 30px;
}


.bt-airflow-metric small {

    color: var(--bt-muted);

    font-size: 9px;
}


.bt-airflow-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 35px;

    background:
        radial-gradient(
            circle,
            rgba(67,201,237,.16),
            transparent 55%
        ),
        white;
}


.bt-airflow-ring {

    position: absolute;

    border:
        1px solid rgba(22,139,209,.15);

    border-radius: 50%;

    animation: btCircleRotate 15s linear infinite;
}


.ring1 {
    width: 180px;
    height: 180px;
}


.ring2 {
    width: 300px;
    height: 300px;
    animation-direction: reverse;
}


.ring3 {
    width: 430px;
    height: 430px;
}


.bt-airflow-purifier {

    position: relative;

    z-index: 4;

    width: 145px;
    height: 275px;

    border-radius:
        75px 75px 27px 27px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #cfe5eb
        );

    box-shadow:
        20px 30px 55px rgba(15,84,111,.18);

    animation:
        btFloat 5s ease-in-out infinite;
}


.bt-airflow-screen {

    position: absolute;

    top: 43px;
    left: 50%;

    width: 62px;
    height: 62px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--bt-blue);

    font-family: "Manrope";

    font-size: 20px;

    font-weight: 800;
}


.bt-airflow-slots {

    position: absolute;

    left: 50%;
    bottom: 38px;

    width: 68px;

    transform: translateX(-50%);

    display: grid;

    gap: 5px;
}


.bt-airflow-slots i {

    height: 2px;

    border-radius: 5px;

    background: #9cbcc7;
}


.bt-air-wave {

    position: absolute;

    z-index: 3;

    width: 90px;
    height: 35px;

    border-top:
        2px solid rgba(22,139,209,.45);

    border-radius: 50%;

    animation: btWaveMove 3s infinite ease-in-out;
}


.aw1 {
    top: 30%;
    right: 20%;
}


.aw2 {
    top: 38%;
    right: 10%;
    animation-delay: .5s;
}


.aw3 {
    bottom: 32%;
    left: 12%;
    animation-delay: 1s;
}


.aw4 {
    bottom: 40%;
    left: 20%;
    animation-delay: 1.5s;
}


/* =========================================================
   08 FINAL
========================================================= */

.bt-final-section {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--bt-navy);
}


.bt-final-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -150px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(67,201,237,.18),
            transparent 65%
        );
}


.bt-final-section .bt-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}


.bt-final-content {

    padding: 80px 0;
}


.bt-final-content .bt-section-tag {
    color: #59d2ef;
}


.bt-final-content h2 {

    max-width: 620px;

    margin: 14px 0 18px;

    color: white;

    font-family: "Manrope";

    font-size: clamp(38px,4vw,57px);

    line-height: 1.05;
}


.bt-final-content h2 span {
    color: #49cbed;
}


.bt-final-content p {

    max-width: 550px;

    color: #aac2cd;

    font-size: 14px;

    line-height: 1.8;
}


.bt-final-actions {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 30px;
}


.bt-white-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 50px;

    background: white;

    color: var(--bt-navy);

    font-size: 13px;

    font-weight: 800;

    transition: .3s;
}


.bt-white-btn:hover {

    transform: translateY(-4px);

    color: var(--bt-blue);
}


.bt-final-link {

    color: #c6d8df;

    font-size: 13px;

    font-weight: 700;
}


.bt-final-link:hover {
    color: #55d1ef;
}


.bt-final-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.bt-final-circle {

    position: absolute;

    border:
        1px solid rgba(67,201,237,.18);

    border-radius: 50%;

    animation: btCircleRotate 15s linear infinite;
}


.fc1 {
    width: 190px;
    height: 190px;
}


.fc2 {
    width: 320px;
    height: 320px;
    animation-direction: reverse;
}


.fc3 {
    width: 460px;
    height: 460px;
}


.bt-final-purifier {

    position: relative;

    z-index: 3;

    width: 145px;
    height: 270px;

    display: flex;

    align-items: center;

    flex-direction: column;

    padding-top: 48px;

    border-radius:
        75px 75px 28px 28px;

    background:
        linear-gradient(
            145deg,
            white,
            #c8e0e8
        );

    box-shadow:
        20px 30px 60px rgba(0,0,0,.24);

    animation: btFloat 5s ease-in-out infinite;
}


.bt-final-purifier div {

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--bt-blue);

    font-family: "Manrope";

    font-size: 20px;

    font-weight: 800;
}


.bt-final-purifier span {

    width: 65px;

    height: 2px;

    margin-top: 6px;

    border-radius: 10px;

    background: #9bbbc6;
}


.bt-final-purifier span:first-of-type {
    margin-top: 65px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes btHeroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}


@keyframes btPulse {

    0%,100% {
        opacity: .5;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


@keyframes btCircleRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes btParticleMove {

    0%,100% {
        transform: translate(0,0);
        opacity: .35;
    }

    50% {
        transform: translate(15px,-20px);
        opacity: 1;
    }

}


@keyframes btFilterWave {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


@keyframes btParticleToFilter {

    0% {
        transform: translateX(0);
        opacity: 1;
    }

    65% {
        transform: translateX(180px);
        opacity: .8;
    }

    100% {
        transform: translateX(210px);
        opacity: 0;
    }

}


@keyframes btAirFlow {

    0% {
        transform: translateX(-15px);
        opacity: .3;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(15px);
        opacity: .3;
    }

}


@keyframes btSmokeMove {

    0%,100% {
        transform: translate(0,0);
        opacity: .5;
    }

    50% {
        transform: translate(35px,-20px);
        opacity: 1;
    }

}


@keyframes btChart {

    from {
        transform: scaleY(.7);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }

}


@keyframes btFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}


@keyframes btWaveMove {

    0%,100% {
        transform: translateX(0) scaleX(.8);
        opacity: .2;
    }

    50% {
        transform: translateX(25px) scaleX(1.15);
        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bt-hero {
        min-height: 530px;
    }


    .bt-hero-status {
        display: none;
    }


    .bt-air-grid,
    .bt-hepa-grid,
    .bt-smart-grid,
    .bt-airflow-layout {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .bt-stage-flow {

        grid-template-columns:
            repeat(2,1fr);
    }


    .bt-flow-line {
        display: none;
    }


    .bt-carbon-flow {
        grid-template-columns: 1fr;
    }


    .bt-carbon-side {
        min-height: 220px;
    }


    .bt-final-section .bt-container {
        grid-template-columns: 1fr;
    }


    .bt-final-content {
        text-align: center;
    }


    .bt-final-content p {
        margin-left: auto;
        margin-right: auto;
    }


    .bt-final-actions {
        justify-content: center;
    }


    .bt-final-visual {
        min-height: 380px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bt-container,
    .bt-hero-content {
        width: min(100% - 28px, 1180px);
    }


    .bt-hero {
        min-height: 500px;
    }


    .bt-hero-content {
        padding: 75px 0;
    }


    .bt-hero-content h1 {
        font-size: 44px;
    }


    .bt-hero-actions {
        flex-wrap: wrap;
    }


    .bt-air-section,
    .bt-purification-section,
    .bt-hepa-section,
    .bt-carbon-section,
    .bt-smart-section,
    .bt-airflow-section {
        padding: 80px 0;
    }


    .bt-heading {
        margin-bottom: 40px;
    }


    .bt-heading h2,
    .bt-air-copy h2,
    .bt-hepa-copy h2,
    .bt-carbon-heading h2,
    .bt-smart-copy h2,
    .bt-final-content h2 {
        font-size: 34px;
    }


    .bt-particle-scene {
        min-height: 360px;
    }


    .bt-room-circle {
        width: 220px;
        height: 220px;
    }


    .bt-air-label {
        font-size: 7px;
    }


    .bt-stage-flow {
        grid-template-columns: 1fr;
    }


    .bt-stage-card {
        min-height: 300px;
    }


    .bt-hepa-visual {
        min-height: 400px;
    }


    .bt-hepa-filter {
        width: 160px;
        height: 230px;
    }


    .bt-clean-air-flow {
        right: 3%;
    }


    .bt-clean-air-flow span {
        width: 55px;
    }


    .bt-carbon-core {
        min-height: 300px;
    }


    .bt-aqi-display {
        grid-template-columns: 1fr;

        justify-items: center;
    }


    .bt-aqi-info {
        width: 100%;
    }


    .bt-dashboard {
        padding: 18px;
    }


    .bt-dashboard-bottom {
        grid-template-columns: 1fr;
    }


    .bt-airflow-visual {
        min-height: 400px;
    }


    .ring3 {
        width: 330px;
        height: 330px;
    }


    .bt-final-content {
        padding: 60px 0 20px;
    }


    .bt-final-actions {
        flex-direction: column;
    }


    .bt-white-btn {
        width: 100%;
        justify-content: center;
    }


    .fc3 {
        width: 330px;
        height: 330px;
    }

}


/* =========================================================
   DARK MODE
========================================================= */

html.dark .bt-page {

    --bt-navy: #e5f5fa;

    --bt-muted: #9db7c2;

    --bt-light: #071d2a;

    --bt-border: rgba(157,210,226,.14);
}


html.dark .bt-air-section,
html.dark .bt-hepa-section,
html.dark .bt-smart-section {

    background: #061923;
}


html.dark .bt-purification-section,
html.dark .bt-carbon-section,
html.dark .bt-airflow-section {

    background: #071f2d;
}


html.dark .bt-stage-card,
html.dark .bt-carbon-side,
html.dark .bt-airflow-metric {

    background: #0b2735;
}


html.dark .bt-particle-scene,
html.dark .bt-hepa-visual,
html.dark .bt-airflow-visual {

    background:
        radial-gradient(
            circle,
            rgba(67,201,237,.12),
            transparent 58%
        ),
        #0a2634;
}


html.dark .bt-dashboard {

    background: #0b2735;
}


html.dark .bt-dashboard-bottom div {

    background: #111111;
}


html.dark .bt-aqi-circle {

    background: #0b2735;
}


html.dark .bt-air-center,
html.dark .bt-air-label,
html.dark .bt-hepa-badge {

    background: #0d2b3a;
}


html.dark .bt-air-center strong,
html.dark .bt-air-label,
html.dark .bt-hepa-badge strong {

    color: #e5f5fa;
}


html.dark .bt-aqi-circle strong,
html.dark .bt-aqi-info strong {

    color: #e5f5fa;
}

/* =========================================================
   PURE LIVING CO.
   AMC SERVICES PAGE
   ISOLATED CSS
   Does NOT modify existing global CSS
========================================================= */


/* =========================================================
   PAGE BASE
========================================================= */

.plc-amc-page {
    --amc-primary: #087fca;
    --amc-primary-dark: #056aa8;
    --amc-primary-light: #e7f5fc;

    --amc-dark: #111111;
    --amc-text: #243842;
    --amc-muted: #71808a;

    --amc-white: #ffffff;
    --amc-soft: #f6fafb;
    --amc-line: #dfeaec;

    --amc-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    --amc-radius: 24px;

    background: var(--amc-white);
    color: var(--amc-text);
    overflow-x: hidden;
}

.plc-amc-page main {
    overflow: hidden;
}

.plc-amc-page img {
    display: block;
    max-width: 100%;
}

.plc-amc-page a {
    text-decoration: none;
}

.plc-amc-page button,
.plc-amc-page a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
========================================================= */

.plc-amc-page .plc-amc-container {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   LABELS
========================================================= */

.plc-amc-page .plc-amc-label,
.plc-amc-page .plc-amc-small-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plc-amc-page .plc-amc-label {
    color: #ffffff;
}

.plc-amc-page .plc-amc-small-label {
    color: var(--amc-primary);
}


/* =========================================================
   HERO
========================================================= */

.plc-amc-page .plc-amc-hero {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;
}

.plc-amc-page .plc-amc-hero-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    animation: plcAmcHeroZoom 14s ease-in-out infinite alternate;
}

.plc-amc-page .plc-amc-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 40, 0.88) 0%,
            rgba(6, 30, 40, 0.65) 42%,
            rgba(6, 30, 40, 0.28) 100%
        );

    z-index: -2;
}

.plc-amc-page .plc-amc-hero-content {
    width: min(1240px, calc(100% - 80px));

    margin: 0 auto;

    padding: 120px 0;

    text-align: left;
}

.plc-amc-page .plc-amc-hero-content h1 {
    max-width: 760px;

    margin: 20px 0 22px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 800;

    line-height: 1.03;
    letter-spacing: -0.045em;
    padding-top: 70px;
}

.plc-amc-page .plc-amc-hero-content h1 span {
    display: block;
    color: white;
}

.plc-amc-page .plc-amc-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;
    line-height: 1.8;
}

.plc-amc-page .plc-amc-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.plc-amc-page .plc-amc-btn {
    position: relative;

    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 23px;

    border-radius: 999px;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.plc-amc-page .plc-amc-btn:hover {
    transform: translateY(-4px);
}

.plc-amc-page .plc-amc-btn-primary {
    background: var(--amc-primary);
    color: #ffffff;

    box-shadow: 0 12px 28px rgba(8, 127, 202, 0.25);
}

.plc-amc-page .plc-amc-btn-primary:hover {
    background: var(--amc-primary-dark);
    box-shadow: 0 18px 34px rgba(8, 127, 202, 0.30);
}

.plc-amc-page .plc-amc-btn-light {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(12px);
}

.plc-amc-page .plc-amc-btn-light:hover {
    background: #ffffff;
    color: var(--amc-dark);
}

.plc-amc-page .plc-amc-btn-white {
    background: #ffffff;
    color: var(--amc-primary-dark);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   HERO BADGE
========================================================= */

.plc-amc-page .plc-amc-hero-badge {
    position: absolute;

    right: 6%;
    bottom: 55px;

    min-width: 240px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px 19px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;

    color: #ffffff;
    background: rgba(8, 34, 44, 0.65);

    backdrop-filter: blur(16px);

    animation: plcAmcFloat 4s ease-in-out infinite;
}

.plc-amc-page .plc-amc-hero-badge > i {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: var(--amc-primary);
}

.plc-amc-page .plc-amc-hero-badge strong,
.plc-amc-page .plc-amc-hero-badge span {
    display: block;
}

.plc-amc-page .plc-amc-hero-badge strong {
    margin-bottom: 4px;

    font-size: 15px;
}

.plc-amc-page .plc-amc-hero-badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}


/* =========================================================
   INTRO
========================================================= */

.plc-amc-page .plc-amc-intro {
    padding: 110px 0;
    background: var(--amc-white);
}

.plc-amc-page .plc-amc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

.plc-amc-page .plc-amc-image-card {
    position: relative;

    min-height: 520px;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: var(--amc-shadow);
}

.plc-amc-page .plc-amc-image-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.plc-amc-page .plc-amc-image-card:hover img {
    transform: scale(1.06);
}

.plc-amc-page .plc-amc-image-tag {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}

.plc-amc-page .plc-amc-image-tag > i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: var(--amc-primary);
}

.plc-amc-page .plc-amc-image-tag strong,
.plc-amc-page .plc-amc-image-tag span {
    display: block;
}

.plc-amc-page .plc-amc-image-tag strong {
    color: var(--amc-dark);
    font-size: 15px;
}

.plc-amc-page .plc-amc-image-tag span {
    margin-top: 3px;
    color: var(--amc-muted);
    font-size: 15px;
}

.plc-amc-page .plc-amc-intro-content h2,
.plc-amc-page .plc-amc-heading h2,
.plc-amc-page .plc-amc-benefit-content h2,
.plc-amc-page .plc-amc-final-box h2 {
    margin: 14px 0 20px;

    color: var(--amc-dark);

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -0.04em;
}

.plc-amc-page .plc-amc-intro-content h2 span,
.plc-amc-page .plc-amc-heading h2 span,
.plc-amc-page .plc-amc-benefit-content h2 span,
.plc-amc-page .plc-amc-final-box h2 span {
    color: var(--amc-primary);
}

.plc-amc-page .plc-amc-intro-content > p,
.plc-amc-page .plc-amc-heading > p,
.plc-amc-page .plc-amc-benefit-content > p {
    color: var(--amc-muted);
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================================
   CHECKS
========================================================= */

.plc-amc-page .plc-amc-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-top: 28px;
}

.plc-amc-page .plc-amc-checks div {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 0;

    color: var(--amc-text);

    font-size: 15px;
    font-weight: 600;
}

.plc-amc-page .plc-amc-checks i {
    color: var(--amc-primary);
}


/* =========================================================
   PLANS
========================================================= */

.plc-amc-page .plc-amc-plans {
    padding: 110px 0;
    background: var(--amc-soft);
}

.plc-amc-page .plc-amc-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.plc-amc-page .plc-amc-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plc-amc-page .plc-amc-plan-card {
    position: relative;

    padding: 35px 32px 32px;

    border: 1px solid var(--amc-line);
    border-radius: var(--amc-radius);

    background: var(--amc-white);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.plc-amc-page .plc-amc-plan-card:hover {
    transform: translateY(-9px);

    border-color: rgba(8, 127, 202, 0.35);

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.plc-amc-page .plc-amc-plan-featured {
    border: 2px solid var(--amc-primary);

    transform: translateY(-10px);
}

.plc-amc-page .plc-amc-plan-featured:hover {
    transform: translateY(-18px);
}

.plc-amc-page .plc-amc-popular {
    position: absolute;

    top: 0;
    right: 25px;

    padding: 8px 14px;

    border-radius: 0 0 10px 10px;

    color: #ffffff;
    background: var(--amc-primary);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.plc-amc-page .plc-amc-plan-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 17px;

    color: var(--amc-primary);
    background: var(--amc-primary-light);

    font-size: 21px;
}

.plc-amc-page .plc-amc-plan-number {
    display: block;

    margin-bottom: 7px;

    color: var(--amc-primary);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.plc-amc-page .plc-amc-plan-card h3 {
    margin: 0 0 12px;

    color: var(--amc-dark);

    font-family: "Manrope", sans-serif;
    font-size: 25px;
}

.plc-amc-page .plc-amc-plan-card > p {
    min-height: 55px;

    color: var(--amc-muted);

    font-size: 15px;
    line-height: 1.7;
}

.plc-amc-page .plc-amc-plan-card ul {
    display: grid;
    gap: 12px;

    margin: 25px 0 0;
    padding: 25px 0 0;

    border-top: 1px solid var(--amc-line);

    list-style: none;
}

.plc-amc-page .plc-amc-plan-card li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--amc-text);

    font-size: 15px;
}

.plc-amc-page .plc-amc-plan-card li i {
    color: var(--amc-primary);
}


/* =========================================================
   PROCESS
========================================================= */

.plc-amc-page .plc-amc-process {
    padding: 110px 0;
    background: var(--amc-white);
}

.plc-amc-page .plc-amc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.plc-amc-page .plc-amc-process-item {
    position: relative;

    padding: 30px;

    border-radius: 22px;

    background: var(--amc-soft);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.plc-amc-page .plc-amc-process-item:hover {
    transform: translateY(-8px);
    background: var(--amc-primary-light);
}

.plc-amc-page .plc-amc-process-item > span {
    display: block;

    margin-bottom: 28px;

    color: var(--amc-primary);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.plc-amc-page .plc-amc-process-item > i {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 16px;

    color: #ffffff;
    background: var(--amc-primary);

    font-size: 19px;
}

.plc-amc-page .plc-amc-process-item h3 {
    margin: 0 0 10px;

    color: var(--amc-dark);

    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.plc-amc-page .plc-amc-process-item p {
    margin: 0;

    color: var(--amc-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.plc-amc-page .plc-amc-benefits {
    padding: 110px 0;

    background: var(--amc-soft);
}

.plc-amc-page .plc-amc-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

.plc-amc-page .plc-amc-benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;

    margin-top: 30px;
}

.plc-amc-page .plc-amc-benefit-list > div {
    padding: 20px;

    border: 1px solid var(--amc-line);
    border-radius: 18px;

    background: var(--amc-white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.plc-amc-page .plc-amc-benefit-list > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.plc-amc-page .plc-amc-benefit-list i {
    display: block;

    margin-bottom: 14px;

    color: var(--amc-primary);

    font-size: 21px;
}

.plc-amc-page .plc-amc-benefit-list strong,
.plc-amc-page .plc-amc-benefit-list span {
    display: block;
}

.plc-amc-page .plc-amc-benefit-list strong {
    margin-bottom: 6px;

    color: var(--amc-dark);

    font-size: 15px;
}

.plc-amc-page .plc-amc-benefit-list span {
    color: var(--amc-muted);

    font-size: 15px;
    line-height: 1.6;
}

.plc-amc-page .plc-amc-benefit-image {
    position: relative;

    min-height: 560px;

    border-radius: 28px;

    overflow: visible;
}

.plc-amc-page .plc-amc-benefit-image > img {
    width: 100%;
    height: 560px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: var(--amc-shadow);

    transition: transform 0.7s ease;
}

.plc-amc-page .plc-amc-benefit-image:hover > img {
    transform: scale(1.025);
}

.plc-amc-page .plc-amc-floating-stat {
    position: absolute;

    right: -25px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 20px;

    border-radius: 18px;

    background: var(--amc-white);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.plc-amc-page .plc-amc-floating-stat > i {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: var(--amc-primary);
}

.plc-amc-page .plc-amc-floating-stat strong,
.plc-amc-page .plc-amc-floating-stat span {
    display: block;
}

.plc-amc-page .plc-amc-floating-stat strong {
    color: var(--amc-dark);
    font-size: 15px;
}

.plc-amc-page .plc-amc-floating-stat span {
    margin-top: 3px;
    color: var(--amc-muted);
    font-size: 15px;
}


/* =========================================================
   CHECKLIST
========================================================= */

.plc-amc-page .plc-amc-checklist {
    padding: 110px 0;
    background: var(--amc-white);
}

.plc-amc-page .plc-amc-check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plc-amc-page .plc-amc-check-card {
    padding: 30px;

    border: 1px solid var(--amc-line);
    border-radius: 22px;

    background: var(--amc-white);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.plc-amc-page .plc-amc-check-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8, 127, 202, 0.35);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.plc-amc-page .plc-amc-check-card > div {
    margin-bottom: 27px;

    color: var(--amc-primary);

    font-size: 15px;
    font-weight: 800;
}

.plc-amc-page .plc-amc-check-card > i {
    margin-bottom: 20px;

    color: var(--amc-primary);

    font-size: 27px;
}

.plc-amc-page .plc-amc-check-card h3 {
    margin: 0 0 10px;

    color: var(--amc-dark);

    font-family: "Manrope", sans-serif;
    font-size: 21px;
}

.plc-amc-page .plc-amc-check-card p {
    margin: 0;

    color: var(--amc-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FAQ
========================================================= */

.plc-amc-page .plc-amc-faq {
    padding: 110px 0;
    background: var(--amc-soft);
}

.plc-amc-page .plc-amc-faq-list {
    max-width: 920px;
}

.plc-amc-page .plc-amc-faq-item {
    margin-bottom: 13px;

    border: 1px solid var(--amc-line);
    border-radius: 17px;

    background: var(--amc-white);

    overflow: hidden;
}

.plc-amc-page .plc-amc-faq-item button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 22px 25px;

    border: 0;
    outline: 0;

    color: var(--amc-dark);
    background: transparent;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;

    text-align: left;
    cursor: pointer;
}

.plc-amc-page .plc-amc-faq-item button i {
    flex-shrink: 0;

    color: var(--amc-primary);

    transition: transform 0.3s ease;
}

.plc-amc-page .plc-amc-faq-item.active button i {
    transform: rotate(45deg);
}

.plc-amc-page .plc-amc-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.plc-amc-page .plc-amc-faq-answer p {
    margin: 0;
    padding: 0 25px 24px;

    color: var(--amc-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.plc-amc-page .plc-amc-final {
    padding: 90px 0;
    background: var(--amc-white);
}

.plc-amc-page .plc-amc-final-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 60px 65px;

    border-radius: 30px;

    background:
        linear-gradient(
            120deg,
            #087fca 0%,
            #056aa8 100%
        );

    overflow: hidden;
}

.plc-amc-page .plc-amc-final-box::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -130px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.plc-amc-page .plc-amc-final-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: 70px;
    bottom: -150px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.plc-amc-page .plc-amc-final-box > div,
.plc-amc-page .plc-amc-final-box > a {
    position: relative;
    z-index: 2;
}

.plc-amc-page .plc-amc-final-box .plc-amc-small-label {
    color: rgba(255, 255, 255, 0.72);
}

.plc-amc-page .plc-amc-final-box h2 {
    color: #ffffff;
}

.plc-amc-page .plc-amc-final-box h2 span {
    color: #bcecef;
}

.plc-amc-page .plc-amc-final-box p {
    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, 0.80);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   ALWAYS VISIBLE CONTENT
========================================================= */

.plc-amc-page .plc-amc-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   SIMPLE PAGE LOAD ANIMATION
========================================================= */

.plc-amc-page .plc-amc-hero-content {
    animation: plcAmcContentIn 0.9s ease both;
}

.plc-amc-page .plc-amc-hero-badge {
    animation:
        plcAmcContentIn 1s ease 0.2s both,
        plcAmcFloat 4s ease-in-out 1.2s infinite;
}

.plc-amc-page .plc-amc-plan-card,
.plc-amc-page .plc-amc-process-item,
.plc-amc-page .plc-amc-check-card,
.plc-amc-page .plc-amc-faq-item {
    animation: plcAmcCardIn 0.7s ease both;
}

.plc-amc-page .plc-amc-plan-card:nth-child(2),
.plc-amc-page .plc-amc-process-item:nth-child(2),
.plc-amc-page .plc-amc-check-card:nth-child(2) {
    animation-delay: 0.1s;
}

.plc-amc-page .plc-amc-plan-card:nth-child(3),
.plc-amc-page .plc-amc-process-item:nth-child(3),
.plc-amc-page .plc-amc-check-card:nth-child(3) {
    animation-delay: 0.2s;
}

.plc-amc-page .plc-amc-process-item:nth-child(4),
.plc-amc-page .plc-amc-check-card:nth-child(4) {
    animation-delay: 0.3s;
}


@keyframes plcAmcContentIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes plcAmcCardIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode.plc-amc-page {
    --amc-white: #0f2028;
    --amc-soft: #132932;
    --amc-text: #e7f2f4;
    --amc-dark: #ffffff;
    --amc-muted: #aebfc4;
    --amc-line: rgba(255, 255, 255, 0.10);

    background: #0b1a21;
    color: #e7f2f4;
}

body.dark-mode.plc-amc-page .plc-amc-intro,
body.dark-mode.plc-amc-page .plc-amc-process,
body.dark-mode.plc-amc-page .plc-amc-checklist,
body.dark-mode.plc-amc-page .plc-amc-final {
    background: #0b1a21;
}

body.dark-mode.plc-amc-page .plc-amc-plans,
body.dark-mode.plc-amc-page .plc-amc-benefits,
body.dark-mode.plc-amc-page .plc-amc-faq {
    background: #10242c;
}

body.dark-mode.plc-amc-page .plc-amc-plan-card,
body.dark-mode.plc-amc-page .plc-amc-check-card,
body.dark-mode.plc-amc-page .plc-amc-faq-item,
body.dark-mode.plc-amc-page .plc-amc-benefit-list > div {
    background: #132932;
    border-color: rgba(255, 255, 255, 0.10);
}

body.dark-mode.plc-amc-page .plc-amc-process-item {
    background: #132932;
}

body.dark-mode.plc-amc-page .plc-amc-process-item:hover {
    background: #17343e;
}

body.dark-mode.plc-amc-page .plc-amc-image-tag,
body.dark-mode.plc-amc-page .plc-amc-floating-stat {
    background: #132932;
}

body.dark-mode.plc-amc-page .plc-amc-image-tag strong,
body.dark-mode.plc-amc-page .plc-amc-floating-stat strong {
    color: #ffffff;
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .plc-amc-page .plc-amc-hero-content {
    text-align: right;
}

html[dir="rtl"] .plc-amc-page .plc-amc-hero-buttons {
    justify-content: flex-start;
}

html[dir="rtl"] .plc-amc-page .plc-amc-hero-badge {
    right: auto;
    left: 6%;
}

html[dir="rtl"] .plc-amc-page .plc-amc-image-tag {
    left: auto;
    right: 25px;
}

html[dir="rtl"] .plc-amc-page .plc-amc-floating-stat {
    right: auto;
    left: -25px;
}

html[dir="rtl"] .plc-amc-page .plc-amc-faq-item button {
    text-align: right;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .plc-amc-page .plc-amc-container,
    .plc-amc-page .plc-amc-hero-content {
        width: min(100% - 50px, 1000px);
    }

    .plc-amc-page .plc-amc-intro-grid,
    .plc-amc-page .plc-amc-benefit-grid {
        gap: 45px;
    }

    .plc-amc-page .plc-amc-plan-grid {
        gap: 17px;
    }

    .plc-amc-page .plc-amc-plan-card {
        padding: 28px 23px;
    }

    .plc-amc-page .plc-amc-process-grid,
    .plc-amc-page .plc-amc-check-grid {
        grid-template-columns: 1fr 1fr;
    }

    .plc-amc-page .plc-amc-floating-stat {
        right: 20px;
    }

    html[dir="rtl"] .plc-amc-page .plc-amc-floating-stat {
        left: 20px;
        right: auto;
    }

}


/* =========================================================
   MOBILE / NAV COMPATIBILITY
========================================================= */

@media (max-width: 900px) {

    .plc-amc-page .plc-amc-hero {
        min-height: 650px;
    }

    .plc-amc-page .plc-amc-hero-content {
        text-align: center;
    }

    .plc-amc-page .plc-amc-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .plc-amc-page .plc-amc-hero-buttons {
        justify-content: center;
    }

    .plc-amc-page .plc-amc-hero-badge {
        left: 50%;
        right: auto;

        transform: translateX(-50%);
    }

    .plc-amc-page .plc-amc-intro-grid,
    .plc-amc-page .plc-amc-benefit-grid {
        grid-template-columns: 1fr;
    }

    .plc-amc-page .plc-amc-intro-content {
        order: 1;
    }

    .plc-amc-page .plc-amc-image-card {
        order: 2;
    }

    .plc-amc-page .plc-amc-benefit-image {
        order: 2;
    }

    .plc-amc-page .plc-amc-benefit-content {
        order: 1;
    }

    .plc-amc-page .plc-amc-plan-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .plc-amc-page .plc-amc-plan-featured {
        transform: none;
    }

    .plc-amc-page .plc-amc-plan-featured:hover {
        transform: translateY(-9px);
    }

    .plc-amc-page .plc-amc-benefit-image {
        min-height: auto;
    }

    .plc-amc-page .plc-amc-benefit-image > img {
        height: 480px;
    }

    .plc-amc-page .plc-amc-final-box {
        padding: 45px 35px;
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 650px) {

    .plc-amc-page .plc-amc-container,
    .plc-amc-page .plc-amc-hero-content {
        width: calc(100% - 36px);
    }

    .plc-amc-page .plc-amc-hero {
        min-height: 620px;
    }

    .plc-amc-page .plc-amc-hero-content {
        padding: 90px 0 160px;
    }

    .plc-amc-page .plc-amc-hero-content h1 {
        font-size: 43px;
    }

    .plc-amc-page .plc-amc-hero-content p {
        font-size: 15px;
    }

    .plc-amc-page .plc-amc-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .plc-amc-page .plc-amc-btn {
        width: 100%;
    }

    .plc-amc-page .plc-amc-hero-badge {
        width: calc(100% - 36px);
        bottom: 25px;
    }

    .plc-amc-page .plc-amc-intro,
    .plc-amc-page .plc-amc-plans,
    .plc-amc-page .plc-amc-process,
    .plc-amc-page .plc-amc-benefits,
    .plc-amc-page .plc-amc-checklist,
    .plc-amc-page .plc-amc-faq {
        padding: 80px 0;
    }

    .plc-amc-page .plc-amc-intro-content h2,
    .plc-amc-page .plc-amc-heading h2,
    .plc-amc-page .plc-amc-benefit-content h2,
    .plc-amc-page .plc-amc-final-box h2 {
        font-size: 34px;
    }

    .plc-amc-page .plc-amc-image-card {
        min-height: 400px;
    }

    .plc-amc-page .plc-amc-image-card img {
        min-height: 400px;
    }

    .plc-amc-page .plc-amc-checks,
    .plc-amc-page .plc-amc-benefit-list {
        grid-template-columns: 1fr;
    }

    .plc-amc-page .plc-amc-process-grid,
    .plc-amc-page .plc-amc-check-grid {
        grid-template-columns: 1fr;
    }

    .plc-amc-page .plc-amc-benefit-image > img {
        height: 400px;
    }

    .plc-amc-page .plc-amc-floating-stat {
        right: 15px;
        bottom: 20px;
    }

    html[dir="rtl"] .plc-amc-page .plc-amc-floating-stat {
        left: 15px;
        right: auto;
    }

    .plc-amc-page .plc-amc-final {
        padding: 65px 0;
    }

    .plc-amc-page .plc-amc-final-box {
        padding: 38px 25px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 400px) {

    .plc-amc-page .plc-amc-container,
    .plc-amc-page .plc-amc-hero-content {
        width: calc(100% - 28px);
    }

    .plc-amc-page .plc-amc-hero-content h1 {
        font-size: 37px;
    }

    .plc-amc-page .plc-amc-image-card {
        min-height: 340px;
    }

    .plc-amc-page .plc-amc-image-card img {
        min-height: 340px;
    }

    .plc-amc-page .plc-amc-benefit-image > img {
        height: 340px;
    }

    .plc-amc-page .plc-amc-floating-stat {
        position: relative;

        right: auto;
        bottom: auto;

        margin: -50px 15px 0;

        z-index: 3;
    }

    html[dir="rtl"] .plc-amc-page .plc-amc-floating-stat {
        left: auto;
        margin: -50px 15px 0;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .plc-amc-page *,
    .plc-amc-page *::before,
    .plc-amc-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes plcAmcHeroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

@keyframes plcAmcFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}
.plc-amc-page .plc-amc-hero {
    background:
        linear-gradient(
            135deg,
            #111111 0%,
            #087fca 100%
        );
}
.plc-amc-page .plc-amc-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 40, 0.88) 0%,
            rgba(6, 30, 40, 0.62) 50%,
            rgba(6, 30, 40, 0.30) 100%
        );
}
 /* =========================================================
   PURE LIVING CO.
   SERVICE DETAILS PAGE
   ISOLATED PAGE CSS
========================================================= */

.plc-service-page {
    --service-primary: #087fca;
    --service-primary-dark: #056aa8;
    --service-primary-light: #e7f5fc;

    --service-navy: #111111;
    --service-text: #263c45;
    --service-muted: #70818a;

    --service-white: #ffffff;
    --service-soft: #f5fafb;
    --service-soft-2: #edf6f7;

    --service-border: #d7e6ee;

    --service-shadow-sm:
        0 10px 30px rgba(0, 0, 0, 0.06);

    --service-shadow:
        0 22px 60px rgba(0, 0, 0, 0.10);

    --service-radius: 26px;

    background: var(--service-white);
    color: var(--service-text);

    overflow-x: hidden;
}

.plc-service-page main {
    overflow: hidden;
}

.plc-service-page img {
    display: block;
    max-width: 100%;
}

.plc-service-page a {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.plc-service-page .plc-service-container {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   COMMON LABELS
========================================================= */

.plc-service-page .plc-service-label,
.plc-service-page .plc-service-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.plc-service-page .plc-service-label {
    color: var(--service-primary);
}

.plc-service-page .plc-service-eyebrow {
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   HERO
========================================================= */

.plc-service-page .plc-service-hero {
    position: relative;

    min-height: 710px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            135deg,
            #111111,
            #087fca
        );
}

.plc-service-page .plc-service-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    animation: serviceHeroZoom 15s ease-in-out infinite alternate;
}

.plc-service-page .plc-service-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 38, 0.91) 0%,
            rgba(7, 28, 38, 0.72) 42%,
            rgba(7, 28, 38, 0.34) 100%
        );
}

.plc-service-page .plc-service-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -190px;
    bottom: -260px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    z-index: -1;
}

.plc-service-page .plc-service-hero-content {
    position: relative;

    width: min(1240px, calc(100% - 80px));

    margin: 0 auto;

    padding: 125px 0;

    text-align: left;

    animation: serviceHeroContent 0.9s ease both;
}

.plc-service-page .plc-service-hero-content h1 {
    max-width: 780px;

    margin: 20px 0 24px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6.5vw, 86px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.055em;
}

.plc-service-page .plc-service-hero-content h1 span {
    display: block;

    color: #bdecef;
}

.plc-service-page .plc-service-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.plc-service-page .plc-service-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.plc-service-page .plc-service-btn {
    min-height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;

    border-radius: 999px;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.plc-service-page .plc-service-btn:hover {
    transform: translateY(-4px);
}

.plc-service-page .plc-service-btn-primary {
    color: #ffffff;
    background: var(--service-primary);

    box-shadow:
        0 15px 32px rgba(8, 127, 202, 0.25);
}

.plc-service-page .plc-service-btn-primary:hover {
    background: var(--service-primary-dark);

    box-shadow:
        0 20px 40px rgba(8, 127, 202, 0.32);
}

.plc-service-page .plc-service-btn-outline {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.48);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.plc-service-page .plc-service-btn-outline:hover {
    color: var(--service-navy);
    background: #ffffff;
}

.plc-service-page .plc-service-btn-white {
    color: var(--service-primary-dark);
    background: #ffffff;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   HERO STATUS CARD
========================================================= */

.plc-service-page .plc-service-status {
    position: absolute;

    right: 6%;
    bottom: 55px;

    min-width: 260px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: 19px;

    background:
        rgba(9, 35, 45, 0.68);

    backdrop-filter: blur(18px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.16);

    animation:
        serviceStatusFloat 4s ease-in-out infinite;
}

.plc-service-page .plc-service-status-dot {
    position: relative;

    width: 13px;
    height: 13px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #62e0c1;

    box-shadow:
        0 0 0 7px rgba(98, 224, 193, 0.12);
}

.plc-service-page .plc-service-status strong,
.plc-service-page .plc-service-status span {
    display: block;
}

.plc-service-page .plc-service-status strong {
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 15px;
}

.plc-service-page .plc-service-status span {
    color: rgba(255, 255, 255, 0.70);

    font-size: 15px;
}


/* =========================================================
   SECTION 02 - SERVICE PULSE
========================================================= */

.plc-service-page .plc-service-pulse {
    padding: 105px 0;

    background: var(--service-white);
}

.plc-service-page .plc-service-pulse-grid {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1.4fr)
        minmax(270px, 0.8fr);

    gap: 60px;

    align-items: center;
}

.plc-service-page .plc-service-pulse-number {
    min-height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 4px 0;
}

.plc-service-page .plc-service-pulse-number > span {
    color: var(--service-primary);

    font-family: "Manrope", sans-serif;
    font-size: 70px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: -0.07em;
}

.plc-service-page .plc-service-pulse-number small {
    color: var(--service-muted);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.plc-service-page .plc-service-line {
    width: 1px;
    height: 75px;

    margin-left: 9px;

    background:
        linear-gradient(
            to bottom,
            var(--service-primary),
            transparent
        );
}

.plc-service-page .plc-service-pulse-content h2,
.plc-service-page .plc-service-heading h2,
.plc-service-page .plc-service-inside-content h2,
.plc-service-page .plc-service-experience-content h2,
.plc-service-page .plc-service-final-box h2 {
    margin: 14px 0 19px;

    color: var(--service-navy);

    font-family: "Manrope", sans-serif;
    font-size: clamp(35px, 4vw, 55px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -0.045em;
}

.plc-service-page .plc-service-pulse-content h2 span,
.plc-service-page .plc-service-heading h2 span,
.plc-service-page .plc-service-inside-content h2 span,
.plc-service-page .plc-service-experience-content h2 span,
.plc-service-page .plc-service-final-box h2 span {
    color: var(--service-primary);
}

.plc-service-page .plc-service-pulse-content p,
.plc-service-page .plc-service-heading > p,
.plc-service-page .plc-service-inside-content > p,
.plc-service-page .plc-service-experience-content > p {
    max-width: 650px;

    margin: 0;

    color: var(--service-muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   MINI STATS
========================================================= */

.plc-service-page .plc-service-mini-stats {
    display: grid;
    gap: 12px;
}

.plc-service-page .plc-service-mini-card {
    display: grid;

    grid-template-columns: 48px 1fr auto;

    align-items: center;
    gap: 13px;

    padding: 15px 17px;

    border: 1px solid var(--service-border);
    border-radius: 17px;

    background: var(--service-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.plc-service-page .plc-service-mini-card:hover {
    transform: translateX(5px);

    border-color:
        rgba(8, 127, 202, 0.30);

    box-shadow:
        var(--service-shadow-sm);
}

.plc-service-page .plc-service-mini-card > i {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--service-primary);
    background: var(--service-primary-light);
}

.plc-service-page .plc-service-mini-card strong {
    color: var(--service-navy);

    font-size: 15px;
}

.plc-service-page .plc-service-mini-card span {
    color: var(--service-muted);

    font-size: 15px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.plc-service-page .plc-service-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


/* =========================================================
   SECTION 03 - JOURNEY
========================================================= */

.plc-service-page .plc-service-journey {
    position: relative;

    padding: 110px 0;

    background: var(--service-soft);
}

.plc-service-page .plc-service-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.plc-service-page .plc-service-timeline::before {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    top: 53px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--service-primary),
            transparent
        );

    z-index: 0;
}

.plc-service-page .plc-service-step {
    position: relative;

    padding: 30px;

    border: 1px solid var(--service-border);
    border-radius: 23px;

    background: var(--service-white);

    z-index: 1;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.plc-service-page .plc-service-step:hover {
    transform: translateY(-9px);

    box-shadow:
        var(--service-shadow);
}

.plc-service-page .plc-service-step-number {
    position: absolute;

    top: 21px;
    right: 24px;

    color: var(--service-primary);

    font-size: 15px;
    font-weight: 800;
}

.plc-service-page .plc-service-step-icon {
    width: 57px;
    height: 57px;

    display: grid;
    place-items: center;

    margin-bottom: 48px;

    border-radius: 17px;

    color: #ffffff;
    background: var(--service-primary);

    box-shadow:
        0 12px 25px rgba(8, 127, 202, 0.20);
}

.plc-service-page .plc-service-step-content > span {
    color: var(--service-primary);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.10em;
}

.plc-service-page .plc-service-step-content h3 {
    margin: 8px 0 10px;

    color: var(--service-navy);

    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.plc-service-page .plc-service-step-content p {
    margin: 0;

    color: var(--service-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   SECTION 04 - INSIDE SERVICE
========================================================= */

.plc-service-page .plc-service-inside {
    padding: 115px 0;

    background: var(--service-white);
}

.plc-service-page .plc-service-inside-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 85px;

    align-items: center;
}

.plc-service-page .plc-service-inside-visual {
    position: relative;

    min-height: 590px;
}

.plc-service-page .plc-service-inside-visual > img {
    width: 100%;
    height: 590px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
        var(--service-shadow);

    transition:
        transform 0.7s ease;
}

.plc-service-page .plc-service-inside-visual:hover > img {
    transform: scale(1.025);
}


/* =========================================================
   HOTSPOTS
========================================================= */

.plc-service-page .plc-service-hotspot {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 13px;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 13px;

    color: #ffffff;
    background:
        rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(12px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16);

    animation:
        serviceHotspotFloat 3.5s ease-in-out infinite;
}

.plc-service-page .plc-service-hotspot > span {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #72e2ce;

    box-shadow:
        0 0 0 5px rgba(114, 226, 206, 0.13);
}

.plc-service-page .plc-service-hotspot strong,
.plc-service-page .plc-service-hotspot small {
    display: block;
}

.plc-service-page .plc-service-hotspot strong {
    font-size: 15px;
}

.plc-service-page .plc-service-hotspot small {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
}

.plc-service-page .plc-service-hotspot-one {
    left: 30px;
    top: 100px;
}

.plc-service-page .plc-service-hotspot-two {
    right: 25px;
    top: 175px;

    animation-delay: 0.5s;
}

.plc-service-page .plc-service-hotspot-three {
    left: 45px;
    bottom: 160px;

    animation-delay: 1s;
}

.plc-service-page .plc-service-hotspot-four {
    right: 35px;
    bottom: 75px;

    animation-delay: 1.5s;
}


/* =========================================================
   INSIDE CONTENT
========================================================= */

.plc-service-page .plc-service-inside-list {
    display: grid;
    gap: 13px;

    margin-top: 30px;
}

.plc-service-page .plc-service-inside-list > div {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 14px;

    padding: 17px;

    border: 1px solid var(--service-border);
    border-radius: 17px;

    background: var(--service-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.plc-service-page .plc-service-inside-list > div:hover {
    transform: translateX(5px);

    box-shadow:
        var(--service-shadow-sm);
}

.plc-service-page .plc-service-inside-list > div > i {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--service-primary);
    background: var(--service-primary-light);
}

.plc-service-page .plc-service-inside-list strong,
.plc-service-page .plc-service-inside-list span {
    display: block;
}

.plc-service-page .plc-service-inside-list strong {
    margin-bottom: 4px;

    color: var(--service-navy);

    font-size: 15px;
}

.plc-service-page .plc-service-inside-list span {
    color: var(--service-muted);

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   SECTION 05 - SERVICE MODES
========================================================= */

.plc-service-page .plc-service-modes {
    padding: 110px 0;

    background: var(--service-soft);
}

.plc-service-page .plc-service-mode-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.plc-service-page .plc-service-mode-card {
    position: relative;

    padding: 34px 30px 30px;

    border: 1px solid var(--service-border);
    border-radius: 25px;

    background: var(--service-white);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.plc-service-page .plc-service-mode-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(8, 127, 202, 0.35);

    box-shadow:
        var(--service-shadow);
}

.plc-service-page .plc-service-mode-card.featured {
    border:
        2px solid var(--service-primary);

    transform: translateY(-11px);
}

.plc-service-page .plc-service-mode-card.featured:hover {
    transform: translateY(-18px);
}

.plc-service-page .plc-service-mode-badge {
    position: absolute;

    top: 0;
    right: 23px;

    padding: 8px 13px;

    border-radius: 0 0 10px 10px;

    color: #ffffff;
    background: var(--service-primary);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.07em;
}

.plc-service-page .plc-service-mode-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.plc-service-page .plc-service-mode-top > span {
    color: var(--service-primary);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.plc-service-page .plc-service-mode-top > i {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--service-primary);
    background: var(--service-primary-light);
}

.plc-service-page .plc-service-mode-card h3 {
    margin: 0 0 12px;

    color: var(--service-navy);

    font-family: "Manrope", sans-serif;
    font-size: 26px;
}

.plc-service-page .plc-service-mode-card > p {
    min-height: 55px;

    margin: 0;

    color: var(--service-muted);

    font-size: 15px;
    line-height: 1.7;
}

.plc-service-page .plc-service-mode-card ul {
    display: grid;
    gap: 12px;

    margin: 25px 0;

    padding: 24px 0;

    border-top: 1px solid var(--service-border);
    border-bottom: 1px solid var(--service-border);

    list-style: none;
}

.plc-service-page .plc-service-mode-card li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--service-text);

    font-size: 15px;
}

.plc-service-page .plc-service-mode-card li i {
    color: var(--service-primary);
}

.plc-service-page .plc-service-mode-card > a {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    color: var(--service-primary);

    font-size: 15px;
    font-weight: 700;

    transition:
        gap 0.3s ease;
}

.plc-service-page .plc-service-mode-card > a:hover {
    gap: 14px;
}


/* =========================================================
   SECTION 06 - EXPERIENCE
========================================================= */

.plc-service-page .plc-service-experience {
    padding: 115px 0;

    background: var(--service-white);
}

.plc-service-page .plc-service-experience-box {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 70px;

    align-items: center;
}

.plc-service-page .plc-service-experience-points {
    display: grid;
    gap: 10px;

    margin-top: 30px;
}

.plc-service-page .plc-service-experience-points > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    align-items: center;

    padding: 13px 0;

    border-bottom: 1px solid var(--service-border);
}

.plc-service-page .plc-service-experience-points strong {
    color: var(--service-primary);

    font-size: 15px;
}

.plc-service-page .plc-service-experience-points span {
    color: var(--service-navy);

    font-size: 15px;
    font-weight: 600;
}

.plc-service-page .plc-service-experience-visual {
    position: relative;
}

.plc-service-page .plc-service-experience-visual > img {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
        var(--service-shadow);

    transition:
        transform 0.7s ease;
}

.plc-service-page .plc-service-experience-visual:hover > img {
    transform: scale(1.025);
}

.plc-service-page .plc-service-air-card {
    position: absolute;

    left: 28px;
    bottom: 28px;

    display: flex;

    align-items: center;
    gap: 13px;

    padding: 15px 18px;

    border-radius: 17px;

    background: var(--service-white);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.17);
}

.plc-service-page .plc-service-air-card > i {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: var(--service-primary);
}

.plc-service-page .plc-service-air-card strong,
.plc-service-page .plc-service-air-card span {
    display: block;
}

.plc-service-page .plc-service-air-card strong {
    color: var(--service-navy);

    font-size: 15px;
}

.plc-service-page .plc-service-air-card span {
    margin-top: 3px;

    color: var(--service-muted);

    font-size: 15px;
}


/* =========================================================
   SECTION 07 - FAQ
========================================================= */

.plc-service-page .plc-service-faq {
    padding: 110px 0;

    background: var(--service-soft);
}

.plc-service-page .plc-service-faq-list {
    max-width: 950px;
}

.plc-service-page .plc-service-faq-item {
    margin-bottom: 13px;

    border: 1px solid var(--service-border);
    border-radius: 18px;

    background: var(--service-white);

    overflow: hidden;
}

.plc-service-page .plc-service-faq-item button {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 25px;

    border: 0;
    outline: 0;

    color: var(--service-navy);
    background: transparent;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.plc-service-page .plc-service-faq-item button i {
    flex-shrink: 0;

    color: var(--service-primary);

    transition:
        transform 0.3s ease;
}

.plc-service-page .plc-service-faq-item.active button i {
    transform: rotate(45deg);
}

.plc-service-page .plc-service-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease;
}

.plc-service-page .plc-service-faq-answer p {
    margin: 0;

    padding:
        0 25px 24px;

    color: var(--service-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SECTION 08 - FINAL CTA
========================================================= */

.plc-service-page .plc-service-final {
    padding: 90px 0;

    background: var(--service-white);
}

.plc-service-page .plc-service-final-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 65px;

    border-radius: 31px;

    background:
        linear-gradient(
            125deg,
            #111111 0%,
            #087fca 100%
        );

    overflow: hidden;
}

.plc-service-page .plc-service-final-box::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -250px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}

.plc-service-page .plc-service-final-box::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: 90px;
    bottom: -190px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 50%;
}

.plc-service-page .plc-service-final-box > div,
.plc-service-page .plc-service-final-box > a {
    position: relative;

    z-index: 2;
}

.plc-service-page .plc-service-final-box .plc-service-label {
    color: rgba(255, 255, 255, 0.70);
}

.plc-service-page .plc-service-final-box h2 {
    max-width: 700px;

    color: #ffffff;
}

.plc-service-page .plc-service-final-box h2 span {
    color: #bdecef;
}

.plc-service-page .plc-service-final-box p {
    max-width: 610px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode.plc-service-page {

    --service-white: #0d2028;
    --service-soft: #112a33;
    --service-soft-2: #17343d;

    --service-navy: #ffffff;
    --service-text: #e4f0f2;
    --service-muted: #aabdc2;

    --service-border:
        rgba(255, 255, 255, 0.10);

    background: #09181f;
    color: #e4f0f2;
}

body.dark-mode.plc-service-page .plc-service-pulse,
body.dark-mode.plc-service-page .plc-service-inside,
body.dark-mode.plc-service-page .plc-service-experience,
body.dark-mode.plc-service-page .plc-service-final {
    background: #09181f;
}

body.dark-mode.plc-service-page .plc-service-journey,
body.dark-mode.plc-service-page .plc-service-modes,
body.dark-mode.plc-service-page .plc-service-faq {
    background: #10262f;
}

body.dark-mode.plc-service-page .plc-service-step,
body.dark-mode.plc-service-page .plc-service-mode-card,
body.dark-mode.plc-service-page .plc-service-faq-item {
    background: #132d36;
}

body.dark-mode.plc-service-page .plc-service-mini-card,
body.dark-mode.plc-service-page .plc-service-inside-list > div {
    background: #132d36;
}

body.dark-mode.plc-service-page .plc-service-air-card {
    background: #132d36;
}

body.dark-mode.plc-service-page .plc-service-air-card strong {
    color: #ffffff;
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .plc-service-page .plc-service-hero-content {
    text-align: right;
}

html[dir="rtl"] .plc-service-page .plc-service-status {
    right: auto;
    left: 6%;
}

html[dir="rtl"] .plc-service-page .plc-service-pulse-content {
    text-align: right;
}

html[dir="rtl"] .plc-service-page .plc-service-mini-card:hover,
html[dir="rtl"] .plc-service-page .plc-service-inside-list > div:hover {
    transform: translateX(-5px);
}

html[dir="rtl"] .plc-service-page .plc-service-step-number {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .plc-service-page .plc-service-air-card {
    left: auto;
    right: 28px;
}

html[dir="rtl"] .plc-service-page .plc-service-faq-item button {
    text-align: right;
}

html[dir="rtl"] .plc-service-page .plc-service-hero-actions {
    justify-content: flex-start;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .plc-service-page .plc-service-container,
    .plc-service-page .plc-service-hero-content {
        width: min(100% - 50px, 1000px);
    }

    .plc-service-page .plc-service-pulse-grid {
        grid-template-columns:
            110px
            1fr;

        gap: 35px;
    }

    .plc-service-page .plc-service-mini-stats {
        grid-column: 2;
        grid-template-columns:
            repeat(3, 1fr);
    }

    .plc-service-page .plc-service-mini-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plc-service-page .plc-service-mini-card > i {
        margin: 0 auto;
    }

    .plc-service-page .plc-service-mini-card span {
        display: block;
    }

    .plc-service-page .plc-service-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .plc-service-page .plc-service-timeline::before {
        display: none;
    }

    .plc-service-page .plc-service-inside-grid,
    .plc-service-page .plc-service-experience-box {
        gap: 45px;
    }

    .plc-service-page .plc-service-mode-card {
        padding: 29px 23px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .plc-service-page .plc-service-hero {
        min-height: 650px;
    }

    .plc-service-page .plc-service-hero-content {
        text-align: center;
    }

    .plc-service-page .plc-service-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .plc-service-page .plc-service-hero-actions {
        justify-content: center;
    }

    .plc-service-page .plc-service-status {
        right: 50%;
        bottom: 28px;

        transform: translateX(50%);
    }

    html[dir="rtl"] .plc-service-page .plc-service-status {
        left: 50%;
        right: auto;

        transform: translateX(-50%);
    }

    .plc-service-page .plc-service-pulse-grid {
        grid-template-columns: 1fr;
    }

    .plc-service-page .plc-service-pulse-number {
        min-height: auto;

        flex-direction: row;

        align-items: center;

        gap: 20px;
    }

    .plc-service-page .plc-service-line {
        width: 70px;
        height: 1px;

        margin: 0;
    }

    .plc-service-page .plc-service-mini-stats {
        grid-column: auto;
    }

    .plc-service-page .plc-service-inside-grid,
    .plc-service-page .plc-service-experience-box {
        grid-template-columns: 1fr;
    }

    .plc-service-page .plc-service-inside-content {
        order: 1;
    }

    .plc-service-page .plc-service-inside-visual {
        order: 2;
    }

    .plc-service-page .plc-service-experience-content {
        order: 1;
    }

    .plc-service-page .plc-service-experience-visual {
        order: 2;
    }

    .plc-service-page .plc-service-mode-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .plc-service-page .plc-service-mode-card.featured {
        transform: none;
    }

    .plc-service-page .plc-service-mode-card.featured:hover {
        transform: translateY(-9px);
    }

    .plc-service-page .plc-service-final-box {
        padding: 48px 38px;

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .plc-service-page .plc-service-container,
    .plc-service-page .plc-service-hero-content {
        width: calc(100% - 36px);
    }

    .plc-service-page .plc-service-hero {
        min-height: 630px;
    }

    .plc-service-page .plc-service-hero-content {
        padding:
            90px 0
            150px;
    }

    .plc-service-page .plc-service-hero-content h1 {
        font-size: 44px;
    }

    .plc-service-page .plc-service-hero-content p {
        font-size: 15px;
    }

    .plc-service-page .plc-service-hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .plc-service-page .plc-service-btn {
        width: 100%;
    }

    .plc-service-page .plc-service-status {
        width: calc(100% - 36px);
        min-width: 0;
    }

    .plc-service-page .plc-service-pulse,
    .plc-service-page .plc-service-journey,
    .plc-service-page .plc-service-inside,
    .plc-service-page .plc-service-modes,
    .plc-service-page .plc-service-experience,
    .plc-service-page .plc-service-faq {
        padding: 80px 0;
    }

    .plc-service-page .plc-service-pulse-number > span {
        font-size: 58px;
    }

    .plc-service-page .plc-service-pulse-content h2,
    .plc-service-page .plc-service-heading h2,
    .plc-service-page .plc-service-inside-content h2,
    .plc-service-page .plc-service-experience-content h2,
    .plc-service-page .plc-service-final-box h2 {
        font-size: 34px;
    }

    .plc-service-page .plc-service-mini-stats {
        grid-template-columns: 1fr;
    }

    .plc-service-page .plc-service-mini-card {
        grid-template-columns: 48px 1fr auto;
        text-align: left;
    }

    .plc-service-page .plc-service-mini-card > i {
        margin: 0;
    }

    .plc-service-page .plc-service-timeline {
        grid-template-columns: 1fr;
    }

    .plc-service-page .plc-service-step {
        padding: 25px;
    }

    .plc-service-page .plc-service-step-icon {
        margin-bottom: 32px;
    }

    .plc-service-page .plc-service-inside-visual {
        min-height: 430px;
    }

    .plc-service-page .plc-service-inside-visual > img {
        height: 430px;
    }

    .plc-service-page .plc-service-hotspot {
        padding: 8px 10px;
    }

    .plc-service-page .plc-service-hotspot strong,
    .plc-service-page .plc-service-hotspot small {
        font-size: 15px;
    }

    .plc-service-page .plc-service-hotspot-one {
        left: 15px;
        top: 50px;
    }

    .plc-service-page .plc-service-hotspot-two {
        right: 15px;
        top: 120px;
    }

    .plc-service-page .plc-service-hotspot-three {
        left: 15px;
        bottom: 110px;
    }

    .plc-service-page .plc-service-hotspot-four {
        right: 15px;
        bottom: 45px;
    }

    .plc-service-page .plc-service-experience-visual > img {
        height: 400px;
    }

    .plc-service-page .plc-service-air-card {
        left: 18px;
        bottom: 18px;
    }

    html[dir="rtl"] .plc-service-page .plc-service-air-card {
        right: 18px;
        left: auto;
    }

    .plc-service-page .plc-service-final {
        padding: 65px 0;
    }

    .plc-service-page .plc-service-final-box {
        padding: 38px 25px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 400px) {

    .plc-service-page .plc-service-container,
    .plc-service-page .plc-service-hero-content {
        width: calc(100% - 28px);
    }

    .plc-service-page .plc-service-hero-content h1 {
        font-size: 37px;
    }

    .plc-service-page .plc-service-status {
        width: calc(100% - 28px);
    }

    .plc-service-page .plc-service-inside-visual {
        min-height: 350px;
    }

    .plc-service-page .plc-service-inside-visual > img {
        height: 350px;
    }

    .plc-service-page .plc-service-hotspot {
        padding: 7px 8px;
    }

    .plc-service-page .plc-service-hotspot small {
        display: none;
    }

    .plc-service-page .plc-service-experience-visual > img {
        height: 340px;
    }

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes serviceHeroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

@keyframes serviceHeroContent {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes serviceStatusFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}

@keyframes serviceHotspotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .plc-service-page *,
    .plc-service-page *::before,
    .plc-service-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
/* =========================================================
   PRODUCTS HERO BANNER IMAGE
   Added without changing existing hero layout
========================================================= */

.pl-products-hero {
    position: relative;
    overflow: hidden;
}

.pl-products-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Keep existing hero content above the image */
.pl-products-hero .pl-container {
    position: relative;
    z-index: 2;
}

/* Keep existing decorative elements above background */
.pl-products-hero .pl-hero-orb,
.pl-products-hero .pl-hero-particle {
    z-index: 1;
}

/* Soft overlay so existing text remains readable */
.pl-products-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 25, 38, 0.78) 0%,
        rgba(5, 25, 38, 0.48) 45%,
        rgba(5, 25, 38, 0.18) 100%
    );
    z-index: 1;
    pointer-events: none;
}
/* =========================================================
   CONTACT HERO BANNER IMAGE
   ========================================================= */

.pa-contact-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.pa-contact-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
    pointer-events: none;
}

/* Blue overlay for readable content */
.pa-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 27, 43, 0.92) 0%,
            rgba(5, 39, 59, 0.78) 45%,
            rgba(5, 67, 91, 0.52) 100%
        );

    z-index: -2;
    pointer-events: none;
}

/* Keep existing content above banner */
.pa-contact-hero .pa-container {
    position: relative;
    z-index: 3;
}

.pa-contact-hero .pa-hero-glow,
.pa-contact-hero .pa-particle {
    z-index: 2;
}
.pc-banner {
    position: relative;
    overflow: hidden;
}

.pc-banner > img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
}
.pc-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(90%, 900px);
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 3;
}
/* CONTACT HERO HEIGHT */
.pa-contact-hero {
    position: relative;
    height: 550px !important;
    min-height: 550px !important;
    overflow: hidden;
}

.pa-contact-banner-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.plc-amc-hero {
    position: relative;
    height: 550px !important;
    min-height: 550px !important;
    overflow: hidden;
}

.plc-amc-hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.pc-banner {
    position: relative;
    height: 550px !important;
    min-height: 550px !important;
    overflow: hidden;
}

.pc-banner > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.bt-hero {
    position: relative;
    height: 550px !important;
    min-height: 550px !important;
    overflow: hidden;
}

.bt-hero > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
/* =========================================================
   PURE LIVING CO. — HOME 2
   PAGE SPECIFIC CSS
========================================================= */


/* =========================================================
   01. HOME 2 BASE
========================================================= */

.home2-page {
    --h2-navy: #071923;
    --h2-navy-2: #0b2734;
    --h2-teal: #23c7d9;
    --h2-cyan: #6ce8f1;

    --h2-white: #ffffff;
    --h2-light: #f3f8f9;
    --h2-soft: #eaf4f6;

    --h2-text: #132b35;
    --h2-muted: #718992;

    --h2-border: rgba(7, 25, 35, .10);

    background: #ffffff;
    color: var(--h2-text);

    overflow: hidden;
}


.home2-page *,
.home2-page *::before,
.home2-page *::after {
    box-sizing: border-box;
}


.home2-container {
    width: min(1240px, calc(100% - 70px));
    margin: 0 auto;
}


.home2-page img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   02. NAVBAR
========================================================= */

.home2-page .navbar {
    width: 100%;
}


/* =========================================================
   03. HERO
========================================================= */

.h2-hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--h2-navy);
}


.h2-hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(35, 199, 217, .20),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 100%,
            rgba(35, 199, 217, .08),
            transparent 30%
        ),

        linear-gradient(
            110deg,
            #05151d 0%,
            #071923 45%,
            #0b2a37 100%
        );
}


.h2-hero-background::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


.h2-hero-grid {
    position: relative;
    z-index: 2;

    min-height: 720px;

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 55px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.h2-hero-content {
    padding: 80px 0;
}


.h2-eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 11px;

    color: var(--h2-cyan);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.h2-eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    background: var(--h2-cyan);
}


.h2-hero-content h1 {
    margin: 0 0 28px;

    max-width: 650px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;
}


.h2-hero-content h1 span {
    color: var(--h2-cyan);
}


.h2-hero-content > p {
    max-width: 540px;

    margin: 0 0 35px;

    color: #a9c3cc;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.h2-hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


.h2-btn {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.h2-btn-primary {
    color: #06202a;

    background: var(--h2-cyan);
}


.h2-btn-primary:hover {
    color: #06202a;

    background: #ffffff;

    transform: translateY(-3px);
}


.h2-btn-outline {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.24);

    background: transparent;
}


.h2-btn-outline:hover {
    color: var(--h2-cyan);

    border-color: var(--h2-cyan);

    transform: translateY(-3px);
}


.h2-hero-trust {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;

    margin-top: 28px;
}


.h2-hero-trust span {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #7f9ba5;

    font-size: 11px;
}


.h2-hero-trust i {
    color: var(--h2-cyan);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.h2-hero-visual {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.h2-hero-image {
    position: relative;

    z-index: 4;

    width: min(410px, 75%);

    filter:
        drop-shadow(
            0 35px 50px rgba(0,0,0,.38)
        );
}


.h2-hero-image img {
    width: 100%;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   AIR RINGS
========================================================= */

.h2-air-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(108,232,241,.14);

    animation:
        h2AirPulse 4.5s ease-in-out infinite;
}


.h2-air-ring.ring-one {
    width: 290px;
    height: 290px;
}


.h2-air-ring.ring-two {
    width: 410px;
    height: 410px;

    animation-delay: .8s;
}


.h2-air-ring.ring-three {
    width: 530px;
    height: 530px;

    animation-delay: 1.6s;
}


@keyframes h2AirPulse {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(.94);

        opacity: .25;
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.03);

        opacity: .75;
    }
}


/* =========================================================
   FLOATING HERO CARDS
========================================================= */

.h2-floating-card {
    position: absolute;

    z-index: 6;

    min-width: 155px;

    padding: 17px 19px;

    border-radius: 13px;

    background: rgba(9, 35, 45, .88);

    border: 1px solid rgba(108,232,241,.16);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.22);
}


.h2-floating-card span {
    display: block;

    color: #7896a1;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}


.h2-floating-card strong {
    display: block;

    color: #ffffff;

    font-size: 20px;
}


.h2-floating-card small {
    display: block;

    margin-top: 3px;

    color: var(--h2-cyan);

    font-size: 10px;
}


.h2-aqi-card {
    top: 105px;
    right: 0;

    animation:
        h2Float 4s ease-in-out infinite;
}


.h2-filter-card {
    left: 5px;
    bottom: 110px;

    animation:
        h2Float 4s ease-in-out infinite 1s;
}


@keyframes h2Float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


.h2-progress {
    width: 115px;
    height: 4px;

    margin-top: 9px;

    overflow: hidden;

    border-radius: 20px;

    background: #193e4b;
}


.h2-progress span {
    display: block;

    width: 92%;
    height: 100%;

    margin: 0;

    background: var(--h2-cyan);
}


/* =========================================================
   04. TRUST STRIP
========================================================= */

.h2-trust {
    background: #f5fafb;

    border-bottom:
        1px solid var(--h2-border);
}


.h2-trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.h2-trust-item {
    min-height: 108px;

    padding: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    border-right:
        1px solid var(--h2-border);
}


.h2-trust-item:last-child {
    border-right: 0;
}


.h2-trust-item > i {
    color: var(--h2-teal);

    font-size: 23px;
}


.h2-trust-item strong {
    display: block;

    color: var(--h2-text);

    font-size: 14px;

    margin-bottom: 4px;
}


.h2-trust-item span {
    display: block;

    color: var(--h2-muted);

    font-size: 15px;
}


/* =========================================================
   05. COMMON SECTIONS
========================================================= */

.h2-section {
    padding: 110px 0;
}


.h2-section-heading {
    max-width: 680px;

    margin-bottom: 55px;
}


.h2-center-heading {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.h2-label {
    display: block;

    margin-bottom: 14px;

    color: var(--h2-teal);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.h2-section-heading h2 {
    margin: 0 0 18px;

    color: var(--h2-text);

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.h2-section-heading p {
    margin: 0;

    color: var(--h2-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   06. INTRO
========================================================= */

.h2-intro {
    background: #ffffff;
}


.h2-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


.h2-intro .h2-section-heading {
    margin: 0;
}


.h2-intro-content p {
    margin: 0 0 18px;

    color: var(--h2-muted);

    font-size: 15px;

    line-height: 1.85;
}


.h2-text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--pa-cyan);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: .3s ease;
}


.h2-text-link:hover {
    color: var(--h2-teal);

    gap: 15px;
}


/* =========================================================
   07. PRODUCTS
========================================================= */

.h2-products {
    background: #f5fafb;
}


.h2-products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.h2-product-card {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 20px;

    background: #dce9ec;
}


.h2-product-image {
    position: absolute;

    inset: 0;
}


.h2-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.h2-product-card:hover
.h2-product-image img {
    transform: scale(1.06);
}


.h2-product-content {
    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px;

    color: #ffffff;

    background:
        linear-gradient(
            transparent,
            rgba(3,20,27,.95)
        );
}


.h2-product-number {
    display: block;

    margin-bottom: 7px;

    color: var(--h2-cyan);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.h2-product-content h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 25px;
}


.h2-product-content p {
    margin: 0 0 18px;

    color: #c0d3d9;

    font-size: 12px;

    line-height: 1.6;
}


.h2-product-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--h2-cyan);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: .3s ease;
}


.h2-product-link:hover {
    gap: 13px;
}


/* =========================================================
   08. TECHNOLOGY
========================================================= */

.h2-technology {
    background: #ffffff;
}


.h2-tech-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 85px;

    align-items: center;
}


.h2-tech-visual {
    position: relative;

    min-height: 540px;

    overflow: hidden;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(35,199,217,.18),
            transparent 36%
        ),

        #071d27;
}


.h2-tech-visual::before,
.h2-tech-visual::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(108,232,241,.12);
}


.h2-tech-visual::before {
    width: 275px;
    height: 275px;
}


.h2-tech-visual::after {
    width: 430px;
    height: 430px;
}


.h2-tech-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 180px;
    height: 180px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(35,199,217,.16);

    filter: blur(30px);
}


.h2-tech-center {
    position: absolute;

    z-index: 2;

    left: 50%;
    top: 50%;

    width: 155px;
    height: 155px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #163b49,
            #071923
        );

    border:
        1px solid rgba(108,232,241,.25);

    color: #ffffff;
}


.h2-tech-center i {
    margin-bottom: 10px;

    color: var(--h2-cyan);

    font-size: 32px;
}


.h2-tech-center strong {
    font-size: 14px;

    letter-spacing: 1px;
}


.h2-tech-center span {
    margin-top: 5px;

    color: #7897a1;

    font-size: 8px;

    letter-spacing: 2px;
}


.h2-tech-point {
    position: absolute;

    z-index: 4;

    width: 170px;

    padding: 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 11px;

    background:
        rgba(8,35,45,.92);

    border:
        1px solid rgba(108,232,241,.15);

    backdrop-filter: blur(12px);

    color: #ffffff;
}


.h2-tech-point > i {
    color: var(--h2-cyan);

    font-size: 17px;
}


.h2-tech-point strong {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
}


.h2-tech-point span {
    color: #7e9ba5;

    font-size: 15px;
}


.tech-point-one {
    top: 65px;
    left: 35px;
}


.tech-point-two {
    top: 205px;
    right: 25px;
}


.tech-point-three {
    bottom: 65px;
    left: 65px;
}


.h2-tech-content h2 {
    margin: 0 0 20px;

    color: var(--h2-text);

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.h2-tech-content > p {
    margin: 0 0 30px;

    color: var(--h2-muted);

    font-size: 15px;

    line-height: 1.8;
}


.h2-tech-list {
    display: grid;

    gap: 18px;

    margin-bottom: 32px;
}


.h2-tech-list-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.h2-tech-list-item > i {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #0b8191;

    background: #dff6f8;
}


.h2-tech-list-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--h2-text);

    font-size: 15px;
}


.h2-tech-list-item span {
    color: var(--h2-muted);

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   09. FILTRATION
========================================================= */

.h2-filtration {
    background: var(--h2-navy);
}


.h2-filtration .h2-section-heading h2 {
    color: #ffffff;
}


.h2-filtration .h2-section-heading p {
    color: #91aeb8;
}


.h2-filter-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.h2-filter-card {
    min-height: 315px;

    padding: 35px;

    border-radius: 18px;

    background: #0b2734;

    border:
        1px solid rgba(108,232,241,.10);

    transition:
        transform .35s ease,
        border-color .35s ease;
}


.h2-filter-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(108,232,241,.35);
}


.h2-filter-number {
    color: var(--h2-cyan);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.h2-filter-icon {
    margin: 45px 0 22px;

    color: var(--h2-cyan);

    font-size: 32px;
}


.h2-filter-card h3 {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 22px;
}


.h2-filter-card p {
    margin: 0;

    color: #8ca8b2;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   10. ROOMS
========================================================= */

.h2-rooms {
    background: #ffffff;
}


.h2-room-grid {
    display: grid;

    grid-template-columns:
        1.4fr .8fr;

    grid-template-rows:
        280px 280px;

    gap: 18px;
}


.h2-room-card {
    position: relative;

    overflow: hidden;

    display: block;

    border-radius: 18px;

    text-decoration: none;

    background: #dbe7ea;
}


.h2-room-large {
    grid-row: span 2;
}


.h2-room-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.h2-room-card:hover img {
    transform: scale(1.05);
}


.h2-room-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(3,20,27,.88)
        );
}


.h2-room-overlay {
    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 23px;
}


.h2-room-overlay span {
    display: block;

    margin-bottom: 6px;

    color: var(--h2-cyan);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.h2-room-overlay h3 {
    margin: 0;

    color: #ffffff;

    font-size: 22px;
}


/* =========================================================
   11. SMART AIR
========================================================= */

.h2-smart {
    background: #f3f8f9;
}


.h2-smart-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 85px;

    align-items: center;
}


.h2-dashboard {
    padding: 28px;

    border-radius: 24px;

    background: #071923;

    box-shadow:
        0 30px 70px rgba(7,25,35,.18);
}


.h2-dashboard-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


.h2-dashboard-header strong {
    color: #ffffff;

    font-size: 13px;

    letter-spacing: 1px;
}


.h2-live {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #6ce8f1;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.h2-live::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #51e6a8;

    box-shadow:
        0 0 10px #51e6a8;
}


.h2-dashboard-aqi {
    padding: 25px;

    display: grid;

    grid-template-columns:
        140px 1fr;

    gap: 22px;

    align-items: center;

    border-radius: 17px;

    background: #0c2a38;
}


.h2-aqi-circle {
    width: 120px;
    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        7px solid white;

    border-radius: 50%;

    color: #ffffff;
}


.h2-aqi-circle strong {
    font-size: 32px;
}


.h2-aqi-circle span {
    color: #8faab3;

    font-size: 9px;
}


.h2-aqi-content > span {
    display: block;

    margin-bottom: 4px;

    color: #7797a2;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.h2-aqi-content strong {
    display: block;

    color: #ffffff;

    font-size: 18px;
}


.h2-aqi-content p {
    margin: 7px 0 0;

    color: #819fa9;

    font-size: 10px;

    line-height: 1.6;
}


.h2-dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin-top: 15px;
}


.h2-dashboard-stats > div {
    padding: 14px;

    border-radius: 9px;

    background: #0c2a38;
}


.h2-dashboard-stats span {
    display: block;

    margin-bottom: 6px;

    color: #708e99;

    font-size: 7px;

    letter-spacing: 1px;
}


.h2-dashboard-stats strong {
    color: #ffffff;

    font-size: 12px;
}


.h2-smart-content h2 {
    margin: 0 0 20px;

    color: var(--h2-text);

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.h2-smart-content > p {
    max-width: 550px;

    margin: 0 0 27px;

    color: var(--h2-muted);

    font-size: 15px;

    line-height: 1.8;
}


.h2-smart-points {
    display: grid;

    gap: 14px;
}


.h2-smart-points > div {
    display: flex;

    align-items: center;

    gap: 10px;
}


.h2-smart-points i {
    color: var(--h2-teal);

    font-size: 14px;
}


.h2-smart-points span {
    color: var(--h2-text);

    font-size: 17px;
}


/* =========================================================
   12. QUIET SECTION
========================================================= */

.h2-quiet {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3,18,25,.95),
            rgba(3,18,25,.58),
            rgba(3,18,25,.25)
        ),

        url("../images/quiet-home.jpg")
        center / cover no-repeat;
}


.h2-quiet-content {
    max-width: 600px;
}


.h2-quiet-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.h2-quiet-content p {
    max-width: 520px;

    margin: 0 0 30px;

    color: #b5cbd2;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   13. WHY PURE LIVING
========================================================= */

.h2-why {
    background: #ffffff;
}


.h2-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.h2-why-card {
    padding: 30px 24px;

    border:
        1px solid var(--h2-border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.h2-why-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(7,25,35,.08);
}


.h2-why-card > i {
    display: block;

    margin-bottom: 22px;

    color: var(--h2-teal);

    font-size: 25px;
}


.h2-why-card h3 {
    margin: 0 0 9px;

    color: var(--h2-text);

    font-size: 16px;
}


.h2-why-card p {
    margin: 0;

    color: var(--h2-muted);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   14. FINAL CTA
========================================================= */

.h2-final {
    padding: 115px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(76,201,232,.18),
            transparent 27%
        ),

        radial-gradient(
            circle at 20% 90%,
            rgba(35,199,217,.08),
            transparent 30%
        ),

        #071923;
}


.h2-final h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.h2-final p {
    max-width: 600px;

    margin: 0 auto 32px;

    color: #91aeb8;

    font-size: 14px;

    line-height: 1.8;
}


.h2-final-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    flex-wrap: wrap;
}


/* =========================================================
   15. DARK MODE
========================================================= */

body.dark-mode .home2-page {

    background: #061923;

    color: #eaf7fc;
}


/* Trust */

body.dark-mode .h2-trust {
    background: #071923;

    border-color:
        rgba(157,210,226,.12);
}


body.dark-mode .h2-trust-item {
    border-color:
        rgba(157,210,226,.12);
}


body.dark-mode .h2-trust-item strong {
    color: #eaf7fc;
}


/* Sections */

body.dark-mode .h2-intro,
body.dark-mode .h2-technology,
body.dark-mode .h2-rooms,
body.dark-mode .h2-why {
    background: #061923;
}


body.dark-mode .h2-products,
body.dark-mode .h2-smart {
    background: #09212c;
}


/* Headings */

body.dark-mode .h2-section-heading h2,
body.dark-mode .h2-intro-content p,
body.dark-mode .h2-tech-content h2,
body.dark-mode .h2-smart-content h2,
body.dark-mode .h2-why-card h3,
body.dark-mode .h2-smart-points span {
    color: #eaf7fc;
}


/* Muted */

body.dark-mode .h2-section-heading p,
body.dark-mode .h2-intro-content p,
body.dark-mode .h2-tech-content > p,
body.dark-mode .h2-smart-content > p,
body.dark-mode .h2-why-card p {
    color: #9db7c2;
}


/* Product background */

body.dark-mode .h2-product-card {
    background: #0b2735;
}


/* Why cards */

body.dark-mode .h2-why-card {
    background: #0b2735;

    border-color:
        #1d4657;
}


body.dark-mode .h2-why-card:hover {
    box-shadow:
        0 20px 45px rgba(0,0,0,.22);
}


/* Technology list */

body.dark-mode .h2-tech-list-item > i {
    color: #69dce9;

    background: #0d3443;
}


body.dark-mode .h2-tech-list-item strong {
    color: #eaf7fc;
}


body.dark-mode .h2-tech-list-item span {
    color: #9db7c2;
}


/* Smart section */

body.dark-mode .h2-smart-points span {
    color: #d7edf3;
}


/* =========================================================
   16. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .home2-container {
        width: min(
            100% - 50px,
            1240px
        );
    }


    .h2-hero-grid {
        gap: 25px;
    }


    .h2-tech-grid,
    .h2-smart-grid {
        gap: 45px;
    }


    .h2-why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .h2-trust-item {
        padding: 15px;
    }

}


/* =========================================================
   17. RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .h2-hero {
        min-height: auto;
    }


    .h2-hero-grid {

        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 45px;
    }


    .h2-hero-content {
        padding: 35px 0 0;
    }


    .h2-hero-visual {
        min-height: 540px;
    }


    .h2-intro-grid,
    .h2-tech-grid,
    .h2-smart-grid {
        grid-template-columns: 1fr;
    }


    .h2-intro-grid {
        gap: 35px;
    }


    .h2-tech-grid,
    .h2-smart-grid {
        gap: 55px;
    }


    .h2-products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .h2-filter-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .h2-room-grid {
        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            300px 250px;
    }


    .h2-room-large {
        grid-column: span 2;

        grid-row: auto;
    }


    .h2-quiet {
        min-height: 520px;
    }

}


/* =========================================================
   18. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .home2-container {
        width: calc(100% - 34px);
    }


    .h2-section {
        padding: 75px 0;
    }


    /* HERO */

    .h2-hero-content h1 {
        font-size: 47px;

        letter-spacing: -2.5px;
    }


    .h2-hero-content > p {
        font-size: 14px;
    }


    .h2-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .h2-btn {
        width: 100%;
    }


    .h2-hero-trust {
        gap: 10px;

        flex-direction: column;
    }


    .h2-hero-visual {
        min-height: 470px;

        transform: scale(.87);

        margin:
            -20px 0
            -30px;
    }


    .h2-aqi-card {
        right: -4px;
    }


    .h2-filter-card {
        left: -4px;
    }


    .h2-air-ring.ring-one {
        width: 230px;
        height: 230px;
    }


    .h2-air-ring.ring-two {
        width: 320px;
        height: 320px;
    }


    .h2-air-ring.ring-three {
        width: 410px;
        height: 410px;
    }


    /* TRUST */

    .h2-trust-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .h2-trust-item {
        min-height: 90px;

        justify-content: flex-start;

        border-bottom:
            1px solid var(--h2-border);
    }


    .h2-trust-item:nth-child(2) {
        border-right: 0;
    }


    /* PRODUCTS */

    .h2-products-grid {
        grid-template-columns: 1fr;
    }


    .h2-product-card {
        min-height: 470px;
    }


    /* TECHNOLOGY */

    .h2-tech-visual {
        min-height: 430px;
    }


    .h2-tech-visual::before {
        width: 220px;
        height: 220px;
    }


    .h2-tech-visual::after {
        width: 340px;
        height: 340px;
    }


    .h2-tech-point {
        width: 145px;
    }


    .tech-point-one {
        top: 35px;
        left: 15px;
    }


    .tech-point-two {
        top: 175px;
        right: 10px;
    }


    .tech-point-three {
        bottom: 35px;
        left: 25px;
    }


    /* FILTER */

    .h2-filter-grid {
        grid-template-columns: 1fr;
    }


    /* ROOMS */

    .h2-room-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            270px
            220px
            220px;
    }


    .h2-room-large {
        grid-column: auto;
    }


    /* DASHBOARD */

    .h2-dashboard-aqi {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;
    }


    .h2-dashboard-stats {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .h2-why-grid {
        grid-template-columns: 1fr;
    }


    /* QUIET */

    .h2-quiet {
        min-height: 500px;

        background:
            linear-gradient(
                90deg,
                rgba(3,18,25,.94),
                rgba(3,18,25,.68)
            ),

            url("../images/quiet-home.jpg")
            center / cover no-repeat;
    }


    .h2-quiet-content h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    /* FINAL */

    .h2-final {
        padding: 80px 0;
    }


    .h2-final h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

}


/* =========================================================
   19. EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 420px) {

    .h2-hero-content h1 {
        font-size: 41px;
    }


    .h2-floating-card {
        min-width: 135px;

        padding: 13px;
    }


    .h2-floating-card strong {
        font-size: 17px;
    }


    .h2-hero-visual {
        transform: scale(.78);

        margin:
            -45px 0
            -55px;
    }


    .h2-tech-point {
        width: 130px;

        padding: 10px;
    }


    .h2-tech-point strong {
        font-size: 9px;
    }


    .h2-tech-point span {
        font-size: 7px;
    }

}
/* =========================================================
   HERO BANNER
========================================================= */

.h2-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   BANNER IMAGE
========================================================= */

.h2-hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../images/hero-12.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -3;

    transform: scale(1.02);
}


/* =========================================================
   OVERLAY
========================================================= */

.h2-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 22, 31, .88) 0%,
            rgba(5, 22, 31, .68) 38%,
            rgba(5, 22, 31, .25) 68%,
            rgba(5, 22, 31, .05) 100%
        );

    z-index: -2;
}


/* =========================================================
   CONTENT
========================================================= */

.h2-hero-banner-content {
    position: relative;
    width: 100%;
    min-height: 720px;

    display: flex;
    align-items: center;
}


/* =========================================================
   HERO TEXT
========================================================= */

.h2-hero-content {
    max-width: 650px;
    padding: 80px 0;
    color: #ffffff;
}


.h2-hero-content .h2-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #6ce8f1;
}


.h2-hero-content h1 {
    margin: 0 0 25px;

    font-size: clamp(52px, 6vw, 88px);
    line-height: .98;
    font-weight: 700;

    letter-spacing: -3px;
}


.h2-hero-content h1 span {
    color: white;
}


.h2-hero-content p {
    max-width: 570px;

    margin: 0 0 34px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255,255,255,.78);
}


/* =========================================================
   BUTTONS
========================================================= */

.h2-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


.h2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}


.h2-btn-primary {
    background: #6ce8f1;
    color: #071923;
}


.h2-btn-primary:hover {
    transform: translateY(-3px);
}


.h2-btn-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: #ffffff;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}


.h2-btn-outline:hover {
    background: rgba(255,255,255,.16);
}


/* =========================================================
   TRUST
========================================================= */

.h2-hero-trust {
    display: flex;
    gap: 28px;

    margin-top: 35px;
    flex-wrap: wrap;
}


.h2-hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: rgba(255,255,255,.75);
}


.h2-hero-trust i {
    color: #6ce8f1;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.h2-floating-card {
    position: absolute;

    padding: 18px 20px;

    min-width: 150px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 20px 50px rgba(0,0,0,.20);

    color: #ffffff;
}


.h2-floating-card span {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;

    color: rgba(255,255,255,.65);
}


.h2-floating-card strong {
    display: block;

    font-size: 19px;
}


.h2-floating-card small {
    color: #6ce8f1;
}


/* AQI */

.h2-aqi-card {
    right: 8%;
    top: 27%;
}


/* FILTER */

.h2-filter-card {
    right: 15%;
    bottom: 18%;
}


.h2-progress {
    width: 110px;
    height: 5px;

    margin-top: 10px;

    overflow: hidden;

    border-radius: 20px;
    background: rgba(255,255,255,.2);
}


.h2-progress span {
    display: block;

    width: 92%;
    height: 100%;

    border-radius: inherit;
    background: #6ce8f1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .h2-hero,
    .h2-hero-banner-content {
        min-height: 650px;
    }

    .h2-hero-content {
        max-width: 600px;
    }

    .h2-aqi-card {
        right: 5%;
        top: 18%;
    }

    .h2-filter-card {
        right: 5%;
        bottom: 12%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .h2-hero,
    .h2-hero-banner-content {
        min-height: 680px;
    }


    .h2-hero-background {
        background-position: 65% center;
    }


    .h2-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,22,31,.94),
                rgba(5,22,31,.72)
            );
    }


    .h2-hero-content {
        padding: 100px 20px 70px;
    }


    .h2-hero-content h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }


    .h2-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    .h2-floating-card {
        display: none;
    }


    .h2-hero-trust {
        gap: 14px;
    }

}
/* =========================================================
   HERO BANNER — FINAL FIX
========================================================= */

.h2-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}


/* Banner */

.h2-hero-background {
    position: absolute !important;
    inset: 0 !important;

    background-image: url("../images/h2 heroo.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    z-index: -3 !important;
}


/* Overlay */

.h2-hero-overlay {
    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(4, 22, 31, .90) 0%,
            rgba(4, 22, 31, .68) 38%,
            rgba(4, 22, 31, .30) 70%,
            rgba(4, 22, 31, .08) 100%
        ) !important;

    z-index: -2 !important;
}


/* Main content */

.h2-hero-banner-content {
    position: relative !important;

    min-height: 720px !important;

    display: flex !important;
    align-items: center !important;

    padding-top: 55px !important;
}


/* Text */

.h2-hero-content {
    position: relative !important;

    z-index: 5 !important;

    max-width: 650px !important;

    padding: 70px 0 !important;

    color: #fff !important;
}


.h2-hero-content h1 {
    position: relative !important;
    z-index: 6 !important;

    margin-bottom: 25px !important;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.h2-floating-card {
    position: absolute !important;

    width: auto !important;
    max-width: none !important;

    height: auto !important;

    box-sizing: border-box !important;

    z-index: 10 !important;
}


/* =========================================================
   AQI CARD
========================================================= */

.h2-aqi-card {
    top: 24% !important;
    right: 7% !important;

    left: auto !important;
    bottom: auto !important;

    width: 155px !important;
    min-width: 155px !important;
    max-width: 155px !important;

    padding: 18px !important;

    border-radius: 16px !important;
}


/* =========================================================
   FILTER CARD — SMALL CARD
========================================================= */

.h2-filter-card {
    top: auto !important;
    left: auto !important;

    right: 12% !important;
    bottom: 13% !important;

    width: 175px !important;
    min-width: 175px !important;
    max-width: 175px !important;

    height: auto !important;
    min-height: 105px !important;

    padding: 18px !important;

    border-radius: 16px !important;

    box-sizing: border-box !important;
}


/* Filter text */

.h2-filter-card span {
    display: block !important;

    font-size: 10px !important;
    letter-spacing: 1.5px !important;
}


.h2-filter-card strong {
    display: block !important;

    font-size: 20px !important;

    margin-top: 5px !important;
}


/* Progress bar */

.h2-filter-card .h2-progress {
    width: 100% !important;
    max-width: 120px !important;

    height: 5px !important;

    margin-top: 10px !important;
}


.h2-filter-card .h2-progress span {
    display: block !important;

    width: 92% !important;
    height: 100% !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .h2-hero {
        min-height: 700px !important;
    }

    .h2-hero-banner-content {
        min-height: 700px !important;
        padding-top: 30px !important;
    }

    .h2-hero-content {
        padding: 80px 20px !important;
    }

    .h2-aqi-card,
    .h2-filter-card {
        display: none !important;
    }

}
/* =========================================================
   HERO — CENTER CONTENT
========================================================= */

.h2-hero-banner-content {
    position: relative !important;

    min-height: 720px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    padding: 70px 30px !important;
}


/* Hero content */

.h2-hero-content {
    position: relative !important;
    z-index: 5 !important;

    width: 100% !important;
    max-width: 850px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    text-align: center !important;

    color: #ffffff !important;
}


/* Eyebrow */

.h2-hero-content .h2-eyebrow {
    display: block !important;

    margin-bottom: 20px !important;

    text-align: center !important;
    padding-top: 50px;
}


/* Heading */

.h2-hero-content h1 {
    margin: 0 auto 25px !important;

    max-width: 850px !important;

    text-align: center !important;

    font-size: clamp(52px, 7vw, 90px) !important;
    line-height: .98 !important;
}


/* Paragraph */

.h2-hero-content p {
    max-width: 650px !important;

    margin: 0 auto 32px !important;

    text-align: center !important;

    color: rgba(255,255,255,.82) !important;
}


/* Buttons */

.h2-hero-buttons {
    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    gap: 14px !important;

    flex-wrap: wrap !important;
}


/* Trust */

.h2-hero-trust {
    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    gap: 28px !important;

    margin-top: 32px !important;

    flex-wrap: wrap !important;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.h2-aqi-card {
    top: 22% !important;
    right: 7% !important;
    left: auto !important;

    width: 155px !important;
    min-width: 155px !important;
    max-width: 155px !important;
}


.h2-filter-card {
    right: 8% !important;
    bottom: 12% !important;
    left: auto !important;

    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .h2-hero-banner-content {
        min-height: 680px !important;

        padding: 100px 20px 60px !important;
    }

    .h2-hero-content {
        max-width: 100% !important;
    }

    .h2-hero-content h1 {
        font-size: 50px !important;
    }

    .h2-hero-content p {
        font-size: 15px !important;
    }

    .h2-aqi-card,
    .h2-filter-card {
        display: none !important;
    }

}
/* =========================================================
   PURE LIVING CO.
   FINAL RESPONSIVE NAVIGATION FIX
   ALL TABLET + MOBILE SIZES
   ========================================================= */

@media (max-width: 1100px) {

    /* =========================
       HEADER
       ========================= */

    .site-header {
        width: 100%;
        padding: 10px 0 !important;
        z-index: 99999 !important;
    }

    .navbar {
        position: relative !important;
        width: calc(100% - 30px) !important;
        min-height: 64px !important;
        padding: 0 14px !important;
        gap: 10px !important;
    }


    /* =========================
       HAMBURGER BUTTON
       ========================= */

    .menu-toggle {
        display: grid !important;
        place-items: center !important;

        width: 44px !important;
        height: 44px !important;

        flex-shrink: 0 !important;
        margin-left: auto !important;

        order: 3 !important;

        border: 0 !important;
        border-radius: 10px !important;

        color: var(--navy) !important;
        background: var(--soft-white) !important;

        cursor: pointer !important;
        z-index: 100001 !important;
    }


    /* =========================
       NAV WRAPPER CLOSED
       ========================= */

    .nav-wrapper {
        position: absolute !important;

        top: calc(100% + 10px) !important;
        left: 0 !important;
        right: 0 !important;

        width: calc(100% - 30px) !important;
        max-height: calc(100vh - 95px) !important;

        margin: 0 auto !important;
        padding: 16px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        gap: 14px !important;

        overflow-y: auto !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        transform: translateY(-12px) !important;

        border: 1px solid var(--border) !important;
        border-radius: 18px !important;

        background: rgba(255,255,255,.98) !important;

        box-shadow: var(--shadow-lg) !important;

        backdrop-filter: blur(18px) !important;

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease !important;

        z-index: 100000 !important;
    }


    /* =========================
       NAV WRAPPER OPEN
       ========================= */

    .nav-wrapper.menu-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }


    /* =========================
       NAV LINKS
       ========================= */

    .nav-menu {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        gap: 3px !important;
    }

    .nav-item {
        width: 100% !important;
    }

    .nav-link {
        width: 100% !important;
        min-height: 48px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        padding: 0 14px !important;

        border-radius: 10px !important;

        white-space: normal !important;
    }

    .nav-link.active::after {
        display: none !important;
    }


    /* =========================
       DROPDOWN
       ========================= */

    .dropdown-menu {
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        display: none !important;

        margin: 3px 0 5px !important;
        padding: 5px !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        box-shadow: none !important;

        background: var(--soft-white) !important;
    }

    .home-dropdown.dropdown-open .dropdown-menu {
        display: block !important;
    }


    /* =========================
       HEADER ACTIONS
       ========================= */

    .nav-actions {
        width: 100% !important;

        display: flex !important;

        align-items: center !important;

        gap: 8px !important;

        padding-top: 14px !important;

        border-top: 1px solid var(--border) !important;
    }

    .nav-actions .nav-icon-btn {
        flex-shrink: 0 !important;
    }

    .header-login {
        flex: 1 !important;
        justify-content: center !important;
    }

    .header-cta {
        flex: 1 !important;
        min-width: 0 !important;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 768px) {

    .navbar {
        width: calc(100% - 24px) !important;
        min-height: 62px !important;
        padding: 0 12px !important;
    }

    .brand-logo img {
        width: 38px !important;
        height: 38px !important;
    }

    .menu-toggle {
        width: 42px !important;
        height: 42px !important;
    }

    .nav-wrapper {
        width: calc(100% - 24px) !important;
        padding: 14px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        width: calc(100% - 16px) !important;
        min-height: 60px !important;
        padding: 0 10px !important;
        border-radius: 15px !important;
    }

    .brand-logo {
        gap: 7px !important;
    }

    .brand-logo img {
        width: 35px !important;
        height: 35px !important;
    }

    .brand-logo strong {
        font-size: 14px !important;
    }

    .brand-logo small {
        font-size: 8px !important;
    }

    .menu-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .nav-wrapper {
        width: calc(100% - 16px) !important;
        max-height: calc(100vh - 85px) !important;

        padding: 12px !important;

        border-radius: 16px !important;
    }

    .nav-link {
        min-height: 46px !important;
        font-size: 14px !important;
    }

    .nav-actions {
        gap: 6px !important;
        flex-wrap: wrap !important;
    }

    .nav-actions .nav-icon-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .header-login,
    .header-cta {
        min-height: 40px !important;
        font-size: 13px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .navbar {
        width: calc(100% - 10px) !important;
    }

    .brand-logo strong {
        font-size: 13px !important;
    }

    .brand-logo small {
        display: none !important;
    }

    .nav-wrapper {
        width: calc(100% - 10px) !important;
    }

    .nav-actions {
        display: grid !important;
        grid-template-columns: 40px 40px 1fr 1fr !important;
    }

    .header-login,
    .header-cta {
        width: 100% !important;
    }
}
/* =========================================
   CONTACT FORM ICON ALIGNMENT FIX
   ========================================= */

.pa-input {
    position: relative !important;
    display: flex;
    align-items: center;
}

.pa-input > i {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 16px;
    height: 16px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;
    z-index: 5;

    color: #7da5b8;
    pointer-events: none;
}

/* Keep input text away from icon */
.pa-input input,
.pa-input select {
    padding-left: 42px !important;
}

/* Textarea icon should stay near top */
.pa-textarea {
    align-items: flex-start;
}

.pa-textarea > i {
    top: 20px !important;
    transform: none !important;
}

.pa-textarea textarea {
    padding-left: 42px !important;
}
/* =========================================
   CONTACT FORM ERROR — BELOW INPUT
   ========================================= */

.pa-form-group {
    position: relative;
}

.pa-field-error {
    display: block;
    margin-top: 7px;
    color: #ff3b3b !important;
    font-size: 12px !important;
    font-weight: 600;
    line-height: 1.4;
}

/* Error input border */
.pa-form-group.has-error .pa-input input,
.pa-form-group.has-error .pa-input select,
.pa-form-group.has-error .pa-input textarea {
    border-color: #ff3b3b !important;
}

/* General form error */
.pa-form-general-error {
    display: none;
    margin-top: 5px;
    color: #ff3b3b !important;
    font-size: 12px;
    font-weight: 600;
}

.pa-form-general-error.show {
    display: block;
}
/* =========================================================
   09 — QUIET TECHNOLOGY
   BLUE THEME OVERLAY
========================================================= */

.h2-quiet {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 24, 55, 0.94) 0%,
            rgba(8, 48, 100, 0.84) 35%,
            rgba(15, 78, 145, 0.62) 65%,
            rgba(20, 105, 180, 0.38) 100%
        ),
        url("../images/living-room.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* BLUE ATMOSPHERE */

.h2-quiet::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(100, 200, 255, 0.22),
            transparent 32%
        );

    pointer-events: none;
    z-index: 1;
}


/* CONTENT */

.h2-quiet .home2-container {
    position: relative;
    z-index: 3;
}


/* LABEL */

.h2-quiet .h2-label {
    color: rgba(220, 242, 255, 0.85);
}


/* HEADING */

.h2-quiet h2 {
    color: #ffffff;
}


/* DESCRIPTION */

.h2-quiet p {
    color: rgba(225, 241, 255, 0.82);
}


/* BUTTON */

.h2-quiet .h2-btn-primary {
    background: #ffffff;
    color: #0756a0;
}

.h2-quiet .h2-btn-primary:hover {
    background: #0b72c9;
    color: #ffffff;
}/* =========================================================
   09 — QUIET TECHNOLOGY
   BLUE IMAGE + OVERLAY + CENTER CONTENT
========================================================= */

.h2-quiet {
    position: relative !important;

    min-height: 620px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    text-align: center !important;

    /* BACKGROUND IMAGE + BLUE OVERLAY */
    background-image:
        linear-gradient(
            135deg,
            rgba(3, 27, 62, 0.88) 0%,
            rgba(5, 63, 125, 0.72) 45%,
            rgba(12, 105, 180, 0.45) 100%
        ),
        url("../images/living-room.jpg") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}


/* =========================================================
   CONTENT — EXACT CENTER
========================================================= */

.h2-quiet .home2-container {
    position: relative !important;
    z-index: 5 !important;

    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


.h2-quiet-content {
    position: relative !important;
    z-index: 6 !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    text-align: center !important;
}


/* =========================================================
   LABEL
========================================================= */

.h2-quiet .h2-label {
    display: inline-block !important;

    margin-bottom: 22px !important;

    color: #dff4ff !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}


/* =========================================================
   HEADING
========================================================= */

.h2-quiet h2 {
    max-width: 700px !important;

    margin: 0 auto 25px !important;

    color: #ffffff !important;

    font-size: clamp(48px, 6vw, 78px) !important;
    line-height: 1 !important;
    letter-spacing: -3px !important;
    font-weight: 600 !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.h2-quiet p {
    max-width: 590px !important;

    margin: 0 auto 35px !important;

    color: rgba(235, 248, 255, 0.88) !important;

    font-size: 16px !important;
    line-height: 1.8 !important;
}


/* =========================================================
   BUTTON
========================================================= */

.h2-quiet .h2-btn-primary {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    padding: 15px 27px !important;

    background: #ffffff !important;
    color: #075da8 !important;

    border-radius: 5px !important;

    transition: all 0.35s ease !important;
}


.h2-quiet .h2-btn-primary:hover {
    transform: translateY(-4px) !important;

    background: #0876c9 !important;
    color: #ffffff !important;
}


/* =========================================================
   BLUE LIGHT EFFECT
========================================================= */

.h2-quiet::after {
    content: "" !important;

    position: absolute !important;

    width: 600px !important;
    height: 600px !important;

    top: 50% !important;
    left: 50% !important;

    transform: translate(-50%, -50%) !important;

    background: radial-gradient(
        circle,
        rgba(80, 190, 255, 0.12),
        transparent 65%
    ) !important;

    pointer-events: none !important;

    z-index: 1 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .h2-quiet {
        min-height: 600px !important;

        padding: 70px 20px !important;

        background-image:
            linear-gradient(
                135deg,
                rgba(3, 27, 62, 0.90),
                rgba(5, 63, 125, 0.70)
            ),
            url("../images/quiet-technology.jpg") !important;

        background-size: cover !important;
        background-position: center center !important;
    }


    .h2-quiet-content {
        max-width: 100% !important;
    }


    .h2-quiet h2 {
        font-size: 44px !important;

        line-height: 1.05 !important;

        letter-spacing: -1.5px !important;
    }


    .h2-quiet p {
        font-size: 15px !important;

        line-height: 1.7 !important;
    }

}
/* =========================================================
   PRODUCTS HERO — STRONGER BLUE OVERLAY
========================================================= */

.pl-products-hero {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
}


/* =========================================================
   BANNER IMAGE
========================================================= */

.pl-products-banner-image {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    z-index: -3 !important;
}


/* =========================================================
   STRONG BLUE OVERLAY
========================================================= */

.pl-products-hero::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(3, 38, 82, 0.48) 0%,
            rgba(5, 76, 135, 0.40) 40%,
            rgba(8, 105, 170, 0.32) 70%,
            rgba(10, 125, 195, 0.22) 100%
        ) !important;

    z-index: -2 !important;

    pointer-events: none !important;
}


/* =========================================================
   BLUE LIGHT GLOW
========================================================= */

.pl-products-hero::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(100, 210, 255, 0.24),
            transparent 34%
        ) !important;

    z-index: -1 !important;

    pointer-events: none !important;
}


/* =========================================================
   CONTENT ABOVE OVERLAY
========================================================= */

.pl-products-hero .pl-container,
.pl-products-hero-grid,
.pl-products-hero-content,
.pl-hero-product {
    position: relative !important;
    z-index: 5 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .pl-products-hero::before {
        background:
            linear-gradient(
                135deg,
                rgba(3, 38, 82, 0.52),
                rgba(5, 76, 135, 0.35)
            ) !important;
    }

}
/* =====================================================
   REAL PRODUCT IMAGES
===================================================== */

.pl-product-image {
    position: relative;
    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.pl-product-real-image {
    position: relative;

    width: 80%;
    max-width: 280px;
    height: 290px;

    object-fit: contain;

    z-index: 3;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.pl-product-card:hover .pl-product-real-image {
    transform: translateY(-10px) scale(1.04);
}


.pl-card-glow {
    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(50, 150, 230, 0.20),
            transparent 70%
        );

    z-index: 1;
}


/* REMOVE OLD CSS-GENERATED PURIFIER */

.pl-product-image .pl-mini-purifier {
    display: none !important;
}
 /* =====================================================
    QUICK COMPARISON — REAL PRODUCT IMAGES
 ===================================================== */

.pc-model-visual {
    position: relative;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* REAL IMAGE */

.pc-model-real-image {
    position: relative;
    z-index: 3;

    width: 82%;
    max-width: 270px;
    height: 280px;

    object-fit: contain;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* HOVER */

.pc-model-card:hover .pc-model-real-image {
    transform: translateY(-10px) scale(1.05);
}


/* SOFT IMAGE GLOW */

.pc-model-glow {
    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35, 145, 225, 0.20),
            rgba(35, 145, 225, 0.05) 45%,
            transparent 70%
        );

    z-index: 1;
}


/* REMOVE OLD CSS PURIFIER */

.pc-model-visual .pc-device {
    display: none !important;
}


/* MOBILE */

@media (max-width: 600px) {

    .pc-model-visual {
        min-height: 280px;
    }

    .pc-model-real-image {
        width: 78%;
        max-width: 240px;
        height: 245px;
    }

}
/* =========================================================
   PRODUCTS FINDER — DARK MODE FIX
========================================================= */

body.dark-mode .pl-finder-section,
.dark-mode .pl-finder-section {
    background: #061d2b !important;
}


/* MAIN FINDER BOX */

body.dark-mode .pl-finder-box,
.dark-mode .pl-finder-box {
    background: #0a2535 !important;

    border: 1px solid rgba(72, 190, 235, 0.14) !important;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}


/* LEFT CONTENT */

body.dark-mode .pl-finder-content,
.dark-mode .pl-finder-content {
    background: transparent !important;
}


body.dark-mode .pl-finder-content h2,
.dark-mode .pl-finder-content h2 {
    color: #f1faff !important;
}


body.dark-mode .pl-finder-content h2 span,
.dark-mode .pl-finder-content h2 span {
    color: #22a9e8 !important;
}


body.dark-mode .pl-finder-content p,
.dark-mode .pl-finder-content p {
    color: #a9c4d3 !important;
}


/* =========================================================
   FINDER OPTIONS
========================================================= */

body.dark-mode .pl-finder-option,
.dark-mode .pl-finder-option {
    background: #f4f8fa !important;
    color: #0c8dd0 !important;

    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}


body.dark-mode .pl-finder-option span,
.dark-mode .pl-finder-option span {
    color: var(--primary) !important;
}


body.dark-mode .pl-finder-option i,
.dark-mode .pl-finder-option i {
    color: #159bd8 !important;
}


/* ACTIVE OPTION */

body.dark-mode .pl-finder-option.active,
.dark-mode .pl-finder-option.active {
    background: #0d3b55 !important;

    border-color: #159fe0 !important;

    box-shadow:
        0 0 0 1px rgba(21, 159, 224, 0.12),
        0 8px 25px rgba(0, 100, 160, 0.16) !important;
}


body.dark-mode .pl-finder-option.active span,
.dark-mode .pl-finder-option.active span {
    color: #36b7f0 !important;
}


body.dark-mode .pl-finder-option.active i,
.dark-mode .pl-finder-option.active i {
    color: #36b7f0 !important;
}


/* =========================================================
   RESULT CARD
========================================================= */

body.dark-mode .pl-finder-result,
.dark-mode .pl-finder-result {
    background: #0c3b55 !important;

    border: 1px solid rgba(42, 180, 235, 0.10) !important;
}


body.dark-mode .pl-result-icon,
.dark-mode .pl-result-icon {
    background: #159bd8 !important;

    color: #ffffff !important;
}


body.dark-mode .pl-finder-result span,
.dark-mode .pl-finder-result span {
    color: #76aabd !important;
}


body.dark-mode .pl-finder-result strong,
.dark-mode .pl-finder-result strong {
    color: #ffffff !important;
}


body.dark-mode .pl-finder-result a,
.dark-mode .pl-finder-result a {
    color: #38b9f1 !important;
}


/* =========================================================
   RIGHT VISUAL — MAIN FIX
========================================================= */

body.dark-mode .pl-finder-visual,
.dark-mode .pl-finder-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(31, 161, 220, 0.16) 0%,
            rgba(9, 67, 98, 0.16) 30%,
            rgba(4, 34, 51, 0.92) 72%,
            #061d2b 100%
        ) !important;

    border-radius: 0 28px 28px 0 !important;

    overflow: hidden !important;
}


/* =========================================================
   AIR CIRCLES
========================================================= */

body.dark-mode .pl-room-circle,
.dark-mode .pl-room-circle {
    border-color: rgba(61, 190, 238, 0.18) !important;
}


body.dark-mode .circle-one,
.dark-mode .circle-two,
.dark-mode .circle-three {
    background: transparent !important;
}


/* =========================================================
   PURIFIER
========================================================= */

body.dark-mode .pl-finder-purifier,
.dark-mode .pl-finder-purifier {
    background:
        linear-gradient(
            145deg,
            #173b4d,
            #0b2939
        ) !important;

    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(32, 170, 225, 0.12) !important;

    border: 1px solid rgba(120, 210, 240, 0.10) !important;
}


/* DISPLAY */

body.dark-mode .pl-finder-display,
.dark-mode .pl-finder-display {
    background: #f4fbff !important;

    box-shadow:
        0 0 25px rgba(65, 190, 240, 0.18) !important;
}


body.dark-mode .pl-finder-display strong,
.dark-mode .pl-finder-display strong {
    color: #159bd8 !important;
}


body.dark-mode .pl-finder-display small,
.dark-mode .pl-finder-display small {
    color: #7895a4 !important;
}


/* VENTS */

body.dark-mode .pl-finder-vents span,
.dark-mode .pl-finder-vents span {
    background: #5f8fa4 !important;
}


/* =========================================================
   FLOATING LABELS
========================================================= */

body.dark-mode .pl-room-label,
.dark-mode .pl-room-label {
    background: #12394d !important;

    color: #48bff0 !important;

    border: 1px solid rgba(72, 191, 240, 0.12) !important;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body.dark-mode .pl-finder-visual,
    .dark-mode .pl-finder-visual {
        border-radius: 0 0 28px 28px !important;
    }

}
/* =========================================================
   PRODUCTS — FINAL CTA DARK MODE
========================================================= */

body.dark-mode .pl-products-cta,
.dark-mode .pl-products-cta {
    position: relative !important;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(25, 145, 205, 0.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061d2b 0%,
            #082b40 50%,
            #061d2b 100%
        ) !important;

    overflow: hidden !important;
}


/* =========================================================
   CTA CONTENT
========================================================= */

body.dark-mode .pl-products-cta .pl-container,
.dark-mode .pl-products-cta .pl-container {
    position: relative !important;
    z-index: 5 !important;
}


body.dark-mode .pl-cta-content,
.dark-mode .pl-cta-content {
    position: relative !important;
    z-index: 6 !important;
}


body.dark-mode .pl-cta-content h2,
.dark-mode .pl-cta-content h2 {
    color: #f3fbff !important;
}


body.dark-mode .pl-cta-content h2 span,
.dark-mode .pl-cta-content h2 span {
    color: #27afea !important;
}


body.dark-mode .pl-cta-content p,
.dark-mode .pl-cta-content p {
    color: #a9c4d3 !important;
}


/* =========================================================
   SECTION TAG
========================================================= */

body.dark-mode .pl-products-cta .pl-section-tag,
.dark-mode .pl-products-cta .pl-section-tag {
    color: #35b7ee !important;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

body.dark-mode .pl-products-cta .pl-primary-btn,
.dark-mode .pl-products-cta .pl-primary-btn {
    background: #159ddd !important;

    color: #ffffff !important;

    box-shadow:
        0 12px 30px rgba(0, 140, 210, 0.20) !important;
}


body.dark-mode .pl-products-cta .pl-primary-btn:hover,
.dark-mode .pl-products-cta .pl-primary-btn:hover {
    background: #28b7ef !important;

    transform: translateY(-3px) !important;
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

body.dark-mode .pl-cta-light-btn,
.dark-mode .pl-cta-light-btn {
    background: rgba(255, 255, 255, 0.04) !important;

    color: #d9f2fc !important;

    border: 1px solid rgba(100, 200, 235, 0.22) !important;
}


body.dark-mode .pl-cta-light-btn:hover,
.dark-mode .pl-cta-light-btn:hover {
    background: rgba(35, 170, 225, 0.12) !important;

    border-color: #27afea !important;

    color: #ffffff !important;
}


/* =========================================================
   LEFT / RIGHT ORBS
========================================================= */

body.dark-mode .pl-cta-orb,
.dark-mode .pl-cta-orb {
    opacity: 1 !important;
}


body.dark-mode .pl-cta-orb.orb-left,
.dark-mode .pl-cta-orb.orb-left {
    background:
        radial-gradient(
            circle,
            rgba(20, 145, 205, 0.18),
            transparent 70%
        ) !important;
}


body.dark-mode .pl-cta-orb.orb-right,
.dark-mode .pl-cta-orb.orb-right {
    background:
        radial-gradient(
            circle,
            rgba(45, 185, 235, 0.20),
            transparent 70%
        ) !important;
}


/* =========================================================
   AIR VISUAL
========================================================= */

body.dark-mode .pl-cta-air,
.dark-mode .pl-cta-air {
    position: relative !important;
    z-index: 5 !important;
}


/* AIR RINGS */

body.dark-mode .pl-cta-ring,
.dark-mode .pl-cta-ring {
    border-color: rgba(54, 188, 235, 0.18) !important;

    background: transparent !important;
}


/* =========================================================
   PURIFIER
========================================================= */

body.dark-mode .pl-cta-purifier,
.dark-mode .pl-cta-purifier {
    background:
        linear-gradient(
            145deg,
            #193f51 0%,
            #0b2939 100%
        ) !important;

    border: 1px solid rgba(120, 215, 240, 0.10) !important;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.40),
        0 0 45px rgba(25, 170, 225, 0.12) !important;
}


/* DISPLAY */

body.dark-mode .pl-cta-display,
.dark-mode .pl-cta-display {
    background: #f2fbff !important;

    color: #159ddd !important;

    box-shadow:
        0 0 25px rgba(50, 190, 240, 0.20) !important;
}


/* AIR SLOTS */

body.dark-mode .pl-cta-slots span,
.dark-mode .pl-cta-slots span {
    background: #6194a8 !important;
}


/* =========================================================
   AIR LINES
========================================================= */

body.dark-mode .pl-cta-air-line,
.dark-mode .pl-cta-air-line {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(50, 190, 240, 0.65),
        transparent
    ) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body.dark-mode .pl-products-cta,
    .dark-mode .pl-products-cta {
        background:
            radial-gradient(
                circle at center,
                rgba(25, 145, 205, 0.14),
                transparent 40%
            ),
            #061d2b !important;
    }

}
/* =========================================================
   SECTION 04 — FILTRATION COMPARISON
   COMPLETE DARK MODE
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

body.dark-mode .pc-filtration-section,
html.dark-mode .pc-filtration-section,
.dark-mode .pc-filtration-section,
body.dark .pc-filtration-section {

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(20, 125, 185, 0.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061b28 0%,
            #082638 55%,
            #061b28 100%
        ) !important;

    color: #eaf7fc !important;
}


/* =========================================================
   CONTAINER
========================================================= */

body.dark-mode .pc-filtration-section .pc-container,
html.dark-mode .pc-filtration-section .pc-container,
.dark-mode .pc-filtration-section .pc-container,
body.dark .pc-filtration-section .pc-container {

    background: transparent !important;
}


/* =========================================================
   GRID
========================================================= */

body.dark-mode .pc-filtration-grid,
html.dark-mode .pc-filtration-grid,
.dark-mode .pc-filtration-grid,
body.dark .pc-filtration-grid {

    background: transparent !important;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

body.dark-mode .pc-filtration-copy,
html.dark-mode .pc-filtration-copy,
.dark-mode .pc-filtration-copy,
body.dark .pc-filtration-copy {

    color: #eaf7fc !important;
}


/* SECTION TAG */

body.dark-mode .pc-filtration-copy .pc-section-tag,
html.dark-mode .pc-filtration-copy .pc-section-tag,
.dark-mode .pc-filtration-copy .pc-section-tag,
body.dark .pc-filtration-copy .pc-section-tag {

    color: #31b8ee !important;
}


/* HEADING */

body.dark-mode .pc-filtration-copy h2,
html.dark-mode .pc-filtration-copy h2,
.dark-mode .pc-filtration-copy h2,
body.dark .pc-filtration-copy h2 {

    color: #f2fbff !important;
}


/* HEADING BLUE WORD */

body.dark-mode .pc-filtration-copy h2 span,
html.dark-mode .pc-filtration-copy h2 span,
.dark-mode .pc-filtration-copy h2 span,
body.dark .pc-filtration-copy h2 span {

    color: #20a9e5 !important;
}


/* PARAGRAPH */

body.dark-mode .pc-filtration-copy p,
html.dark-mode .pc-filtration-copy p,
.dark-mode .pc-filtration-copy p,
body.dark .pc-filtration-copy p {

    color: #9fbac8 !important;
}


/* =========================================================
   LEGEND
========================================================= */

body.dark-mode .pc-filter-legend,
html.dark-mode .pc-filter-legend,
.dark-mode .pc-filter-legend,
body.dark .pc-filter-legend {

    color: #d8edf5 !important;
}


body.dark-mode .pc-filter-legend div,
html.dark-mode .pc-filter-legend div,
.dark-mode .pc-filter-legend div,
body.dark .pc-filter-legend div {

    color: #d8edf5 !important;
}


body.dark-mode .pc-filter-legend strong,
html.dark-mode .pc-filter-legend strong,
.dark-mode .pc-filter-legend strong,
body.dark .pc-filter-legend strong {

    color: #d8edf5 !important;
}


/* =========================================================
   FILTER VISUAL
========================================================= */

body.dark-mode .pc-filter-visual,
html.dark-mode .pc-filter-visual,
.dark-mode .pc-filter-visual,
body.dark .pc-filter-visual {

    background:
        radial-gradient(
            circle at center,
            rgba(30, 155, 215, 0.12),
            transparent 58%
        ) !important;

    border-radius: 24px !important;
}


/* =========================================================
   FILTER COLUMNS
========================================================= */

body.dark-mode .pc-filter-column,
html.dark-mode .pc-filter-column,
.dark-mode .pc-filter-column,
body.dark .pc-filter-column {

    background: rgba(255, 255, 255, 0.025) !important;

    border: 1px solid rgba(85, 190, 230, 0.10) !important;

    border-radius: 18px !important;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18) !important;
}


/* ACTIVE COLUMN */

body.dark-mode .pc-filter-column.active,
html.dark-mode .pc-filter-column.active,
.dark-mode .pc-filter-column.active,
body.dark .pc-filter-column.active {

    background:
        linear-gradient(
            180deg,
            rgba(17, 116, 165, 0.20),
            rgba(8, 53, 77, 0.35)
        ) !important;

    border-color: rgba(39, 178, 230, 0.35) !important;

    box-shadow:
        0 18px 40px rgba(0, 125, 185, 0.12),
        inset 0 1px 0 rgba(100, 210, 245, 0.06) !important;
}


/* =========================================================
   MODEL LABEL
========================================================= */

body.dark-mode .pc-filter-model,
html.dark-mode .pc-filter-model,
.dark-mode .pc-filter-model,
body.dark .pc-filter-model {

    color: #dff5fc !important;
}


/* ACTIVE MODEL */

body.dark-mode .pc-filter-column.active .pc-filter-model,
html.dark-mode .pc-filter-column.active .pc-filter-model,
.dark-mode .pc-filter-column.active .pc-filter-model,
body.dark .pc-filter-column.active .pc-filter-model {

    color: #35baf0 !important;
}


/* =========================================================
   FILTER BLOCKS
========================================================= */

body.dark-mode .pc-filter-block,
html.dark-mode .pc-filter-block,
.dark-mode .pc-filter-block,
body.dark .pc-filter-block {

    color: #ffffff !important;

    border: 1px solid rgba(255, 255, 255, 0.06) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}


/* PRE FILTER */

body.dark-mode .pc-filter-block.pre,
html.dark-mode .pc-filter-block.pre,
.dark-mode .pc-filter-block.pre,
body.dark .pc-filter-block.pre {

    background:
        linear-gradient(
            135deg,
            #31576a,
            #254554
        ) !important;

    color: #d8f2fb !important;
}


/* HEPA */

body.dark-mode .pc-filter-block.hepa,
html.dark-mode .pc-filter-block.hepa,
.dark-mode .pc-filter-block.hepa,
body.dark .pc-filter-block.hepa {

    background:
        linear-gradient(
            135deg,
            #0879ae,
            #075d88
        ) !important;

    color: #ffffff !important;
}


/* CARBON */

body.dark-mode .pc-filter-block.carbon,
html.dark-mode .pc-filter-block.carbon,
.dark-mode .pc-filter-block.carbon,
body.dark .pc-filter-block.carbon {

    background:
        linear-gradient(
            135deg,
            #155e72,
            #104653
        ) !important;

    color: #e6faff !important;
}


/* ADVANCED */

body.dark-mode .pc-filter-block.advanced,
html.dark-mode .pc-filter-block.advanced,
.dark-mode .pc-filter-block.advanced,
body.dark .pc-filter-block.advanced {

    background:
        linear-gradient(
            135deg,
            #159fd2,
            #0878aa
        ) !important;

    color: #ffffff !important;

    box-shadow:
        0 8px 22px rgba(15, 155, 210, 0.18) !important;
}


/* =========================================================
   LEGEND DOTS
========================================================= */

body.dark-mode .legend-pre,
html.dark-mode .legend-pre,
.dark-mode .legend-pre,
body.dark .legend-pre {

    background: #31576a !important;
}


body.dark-mode .legend-hepa,
html.dark-mode .legend-hepa,
.dark-mode .legend-hepa,
body.dark .legend-hepa {

    background: #0879ae !important;
}


body.dark-mode .legend-carbon,
html.dark-mode .legend-carbon,
.dark-mode .legend-carbon,
body.dark .legend-carbon {

    background: #155e72 !important;
}


body.dark-mode .legend-advanced,
html.dark-mode .legend-advanced,
.dark-mode .legend-advanced,
body.dark .legend-advanced {

    background: #159fd2 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body.dark-mode .pc-filtration-section,
    html.dark-mode .pc-filtration-section,
    .dark-mode .pc-filtration-section,
    body.dark .pc-filtration-section {

        background:
            radial-gradient(
                circle at center,
                rgba(20, 125, 185, 0.10),
                transparent 45%
            ),
            #061b28 !important;
    }

    body.dark-mode .pc-filter-column,
    html.dark-mode .pc-filter-column,
    .dark-mode .pc-filter-column,
    body.dark .pc-filter-column {

        background: rgba(255, 255, 255, 0.025) !important;
    }

}
/* =================================================
   AMC HERO - EXPLORE PLANS DARK MODE FIX
================================================= */

.dark-mode .plc-amc-btn-light {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.dark-mode .plc-amc-btn-light:hover {
    background: #f1f1f1;
    color: #111111;
    border-color: #f1f1f1;
    opacity: 1;
    visibility: visible;
}

.dark-mode .plc-amc-btn-light i {
    color: #111111;
}
/* =========================================================
   PURE LIVING CO. — HOME 2 ONLY
   COMPLETE BLUE THEME
   Primary: #087fca
========================================================= */

.home2-page {

    --h2-navy: #111111 !important;
    --h2-navy-2: #1b1b1b !important;

    --h2-teal: #087fca !important;
    --h2-cyan: #087fca !important;

    --h2-white: #ffffff !important;
    --h2-light: #f4faff !important;
    --h2-soft: #e7f5fc !important;

    --h2-border: #d7e8f1 !important;
    --h2-muted: #667781 !important;

}


/* =========================================================
   HERO
========================================================= */

.home2-page .h2-hero {
    background: #111111 !important;
}

.home2-page .h2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(17,17,17,.95),
            rgba(17,17,17,.72),
            rgba(8,127,202,.20)
        ) !important;
}

.home2-page .h2-eyebrow {
    color: #087fca !important;
}

.home2-page .h2-hero-content h1 {
    color: #ffffff !important;
}

.home2-page .h2-hero-content h1 span {
    color: #087fca !important;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.home2-page .h2-btn-primary {
    background: #087fca !important;
    color: #ffffff !important;
    border-color: #087fca !important;
}

.home2-page .h2-btn-primary:hover {
    background: #056aa8 !important;
    color: #ffffff !important;
    border-color: #056aa8 !important;
}

.home2-page .h2-btn-outline {
    color: #ffffff !important;
    border-color: #ffffff !important;
    background: transparent !important;
}

.home2-page .h2-btn-outline:hover {
    color: #087fca !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}


/* =========================================================
   HERO TRUST
========================================================= */

.home2-page .h2-hero-trust i {
    color: #087fca !important;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.home2-page .h2-floating-card {
    background: #ffffff !important;
    border-color: #d7e8f1 !important;
}

.home2-page .h2-floating-card strong {
    color: #111111 !important;
}

.home2-page .h2-floating-card small {
    color: #087fca !important;
}

.home2-page .h2-progress span {
    background: #087fca !important;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.home2-page .h2-trust {
    background: #f4faff !important;
    border-color: #d7e8f1 !important;
}

.home2-page .h2-trust-item {
    border-color: #d7e8f1 !important;
}

.home2-page .h2-trust-item i {
    color: #087fca !important;
}

.home2-page .h2-trust-item strong {
    color: #111111 !important;
}

.home2-page .h2-trust-item span {
    color: #667781 !important;
}


/* =========================================================
   ALL NORMAL SECTIONS
========================================================= */

.home2-page .h2-section {
    background: #ffffff !important;
}

.home2-page .h2-intro,
.home2-page .h2-technology,
.home2-page .h2-rooms {
    background: #ffffff !important;
}

.home2-page .h2-products,
.home2-page .h2-filtration,
.home2-page .h2-smart {
    background: #f4faff !important;
}


/* =========================================================
   SECTION LABELS
========================================================= */

.home2-page .h2-label {
    color: white !important;
}

.home2-page .h2-label::before {
    background: #087fca !important;
}


/* =========================================================
   HEADINGS
========================================================= */

.home2-page .h2-section-heading h2,
.home2-page .h2-intro-content h2,
.home2-page .h2-tech-content h2,
.home2-page .h2-smart-content h2 {
    color: #111111 !important;
}

.home2-page .h2-section-heading p,
.home2-page .h2-intro-content p,
.home2-page .h2-tech-content > p,
.home2-page .h2-smart-content > p {
    color: #667781 !important;
}


/* =========================================================
   TEXT LINKS
========================================================= */

.home2-page .h2-text-link,
.home2-page .h2-product-link {
    color: #087fca !important;
}

.home2-page .h2-text-link i,
.home2-page .h2-product-link i {
    color: #087fca !important;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.home2-page .h2-product-card {
    background: #ffffff !important;
    border-color: #d7e8f1 !important;
}

.home2-page .h2-product-card:hover {
    box-shadow: 0 20px 45px rgba(8,127,202,.14) !important;
}

.home2-page .h2-product-number {
    color: #087fca !important;
}

.home2-page .h2-product-content h3 {
    color: white !important;
}

.home2-page .h2-product-content p {
    color: white !important;
}


/* =========================================================
   TECHNOLOGY VISUAL
========================================================= */

.home2-page .h2-tech-visual {
    background: #e7f5fc !important;
}

.home2-page .h2-tech-glow {
    background: rgba(8,127,202,.20) !important;
}

.home2-page .h2-tech-center i {
    color: #087fca !important;
}

.home2-page .h2-tech-point {
    background: #ffffff !important;
    border-color: #d7e8f1 !important;
}

.home2-page .h2-tech-point i {
    color: #087fca !important;
}

.home2-page .h2-tech-point strong {
    color: #111111 !important;
}

.home2-page .h2-tech-point span {
    color: #667781 !important;
}


/* =========================================================
   TECHNOLOGY LIST
========================================================= */

.home2-page .h2-tech-list-item > i {
    color: #087fca !important;
    background: #e7f5fc !important;
}

.home2-page .h2-tech-list-item strong {
    color: #111111 !important;
}

.home2-page .h2-tech-list-item span {
    color: #667781 !important;
}


/* =========================================================
   FILTRATION CARDS
========================================================= */

.home2-page .h2-filter-card {
    background: #ffffff !important;
    border-color: #d7e8f1 !important;
}

.home2-page .h2-filter-number {
    color: #087fca !important;
}

.home2-page .h2-filter-icon {
    background: #e7f5fc !important;
    color: #087fca !important;
}

.home2-page .h2-filter-icon i {
    color: #087fca !important;
}

.home2-page .h2-filter-card h3 {
    color: #111111 !important;
}

.home2-page .h2-filter-card p {
    color: #667781 !important;
}


/* =========================================================
   ROOM CARDS
========================================================= */

.home2-page .h2-room-card {
    border-color: #d7e8f1 !important;
}

.home2-page .h2-room-overlay {
    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(17,17,17,.88)
        ) !important;
}

.home2-page .h2-room-overlay span {
    color: white !important;
}


/* =========================================================
   SMART AIR
========================================================= */

.home2-page .h2-smart {
    background: #f4faff !important;
}

.home2-page .h2-dashboard {
    background: #ffffff !important;
    border-color: #d7e8f1 !important;
}

.home2-page .h2-dashboard-header {
    border-color: #d7e8f1 !important;
}

.home2-page .h2-live {
    color: #087fca !important;
}

.home2-page .h2-dashboard-aqi strong {
    color: #087fca !important;
}

.home2-page .h2-dashboard-stat strong {
    color: #087fca !important;
}


/* =========================================================
   COMMON ICONS
========================================================= */

.home2-page i {
    --h2-icon-color: #087fca;
}

.home2-page .h2-trust-item i,
.home2-page .h2-tech-point i,
.home2-page .h2-tech-list-item i,
.home2-page .h2-filter-icon i {
    color: #087fca !important;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .home2-page {

    --h2-navy: #111111 !important;
    --h2-navy-2: #181818 !important;

    --h2-teal: #087fca !important;
    --h2-cyan: #087fca !important;

    --h2-light: #101c24 !important;
    --h2-soft: #142733 !important;

    --h2-border: rgba(255,255,255,.10) !important;

    background: #0b1116 !important;
    color: #ffffff !important;
}


/* Dark sections */

body.dark-mode .home2-page .h2-section,
body.dark-mode .home2-page .h2-intro,
body.dark-mode .home2-page .h2-technology,
body.dark-mode .home2-page .h2-rooms {
    background: #0b1116 !important;
}

body.dark-mode .home2-page .h2-products,
body.dark-mode .home2-page .h2-filtration,
body.dark-mode .home2-page .h2-smart,
body.dark-mode .home2-page .h2-trust {
    background: #101c24 !important;
}


/* Dark headings */

body.dark-mode .home2-page .h2-section-heading h2,
body.dark-mode .home2-page .h2-intro-content h2,
body.dark-mode .home2-page .h2-tech-content h2,
body.dark-mode .home2-page .h2-smart-content h2 {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-section-heading p,
body.dark-mode .home2-page .h2-intro-content p,
body.dark-mode .home2-page .h2-tech-content > p,
body.dark-mode .home2-page .h2-smart-content > p {
    color: #a9bac4 !important;
}


/* Dark cards */

body.dark-mode .home2-page .h2-product-card,
body.dark-mode .home2-page .h2-filter-card,
body.dark-mode .home2-page .h2-dashboard {
    background: #142733 !important;
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-product-content h3,
body.dark-mode .home2-page .h2-filter-card h3 {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-product-content p,
body.dark-mode .home2-page .h2-filter-card p {
    color: #a9bac4 !important;
}


/* Dark floating cards */

body.dark-mode .home2-page .h2-floating-card {
    background: #ffffff !important;
    color: #111111 !important;
}


/* =========================================================
   FINAL FORCE — REMOVE OLD CYAN
========================================================= */

.home2-page [style*="6ce8f1"],
.home2-page [style*="23c7d9"],
.home2-page [style*="69dce9"] {
    color: #087fca !important;
    background-color: #087fca !important;
    border-color: #087fca !important;
}
/* =========================================================
   HOME 2 — DARK MODE BLUE THEME
   Primary: #087fca
========================================================= */

body.dark-mode .home2-page {

    --h2-navy: #0b1116 !important;
    --h2-navy-2: #101c24 !important;

    --h2-teal: #087fca !important;
    --h2-cyan: #087fca !important;

    --h2-white: #ffffff !important;
    --h2-light: #101c24 !important;
    --h2-soft: #142733 !important;

    --h2-border: rgba(255,255,255,.10) !important;
    --h2-muted: #a9bac4 !important;

    background: #0b1116 !important;
    color: #ffffff !important;
}


/* =========================================================
   DARK MODE — HERO
========================================================= */

body.dark-mode .home2-page .h2-hero {
    background: #0b1116 !important;
}

body.dark-mode .home2-page .h2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8,127,202,.20),
            rgba(11,17,22,.82),
            rgba(11,17,22,.96)
        ) !important;
}

body.dark-mode .home2-page .h2-hero-content h1 {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-hero-content h1 span {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-eyebrow {
    color: #087fca !important;
}


/* =========================================================
   DARK MODE — PRIMARY BUTTON
========================================================= */

body.dark-mode .home2-page .h2-btn-primary {
    background: #087fca !important;
    color: #ffffff !important;
    border-color: #087fca !important;
}

body.dark-mode .home2-page .h2-btn-primary:hover {
    background: #056aa8 !important;
    color: #ffffff !important;
    border-color: #056aa8 !important;
}


/* =========================================================
   DARK MODE — OUTLINE BUTTON
========================================================= */

body.dark-mode .home2-page .h2-btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #087fca !important;
}

body.dark-mode .home2-page .h2-btn-outline:hover {
    background: #087fca !important;
    color: #ffffff !important;
    border-color: #087fca !important;
}


/* =========================================================
   DARK MODE — TRUST STRIP
========================================================= */

body.dark-mode .home2-page .h2-trust {
    background: #101c24 !important;
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-trust-item {
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-trust-item i {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-trust-item strong {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-trust-item span {
    color: #a9bac4 !important;
}


/* =========================================================
   DARK MODE — SECTIONS
========================================================= */

body.dark-mode .home2-page .h2-section,
body.dark-mode .home2-page .h2-intro,
body.dark-mode .home2-page .h2-technology,
body.dark-mode .home2-page .h2-rooms {
    background: #0b1116 !important;
}

body.dark-mode .home2-page .h2-products,
body.dark-mode .home2-page .h2-filtration,
body.dark-mode .home2-page .h2-smart {
    background: #101c24 !important;
}


/* =========================================================
   DARK MODE — HEADINGS
========================================================= */

body.dark-mode .home2-page .h2-section-heading h2,
body.dark-mode .home2-page .h2-intro-content h2,
body.dark-mode .home2-page .h2-tech-content h2,
body.dark-mode .home2-page .h2-smart-content h2 {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-section-heading h2 span,
body.dark-mode .home2-page .h2-intro-content h2 span,
body.dark-mode .home2-page .h2-tech-content h2 span,
body.dark-mode .home2-page .h2-smart-content h2 span {
    color: #087fca !important;
}


/* =========================================================
   DARK MODE — PARAGRAPHS
========================================================= */

body.dark-mode .home2-page .h2-section-heading p,
body.dark-mode .home2-page .h2-intro-content p,
body.dark-mode .home2-page .h2-tech-content > p,
body.dark-mode .home2-page .h2-smart-content > p {
    color: #a9bac4 !important;
}


/* =========================================================
   DARK MODE — PRODUCT CARDS
========================================================= */

body.dark-mode .home2-page .h2-product-card {
    background: #142733 !important;
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-product-card:hover {
    border-color: #087fca !important;
    box-shadow: 0 20px 45px rgba(8,127,202,.20) !important;
}

body.dark-mode .home2-page .h2-product-number {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-product-content h3 {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-product-content p {
    color: #a9bac4 !important;
}

body.dark-mode .home2-page .h2-product-link {
    color: #087fca !important;
}


/* =========================================================
   DARK MODE — TECHNOLOGY
========================================================= */

body.dark-mode .home2-page .h2-tech-visual {
    background: #101c24 !important;
}

body.dark-mode .home2-page .h2-tech-glow {
    background: rgba(8,127,202,.20) !important;
}

body.dark-mode .home2-page .h2-tech-center i {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-tech-point {
    background: #142733 !important;
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-tech-point i {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-tech-point strong {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-tech-point span {
    color: #a9bac4 !important;
}


/* =========================================================
   DARK MODE — TECHNOLOGY LIST
========================================================= */

body.dark-mode .home2-page .h2-tech-list-item > i {
    background: rgba(8,127,202,.15) !important;
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-tech-list-item strong {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-tech-list-item span {
    color: #a9bac4 !important;
}


/* =========================================================
   DARK MODE — FILTRATION
========================================================= */

body.dark-mode .home2-page .h2-filter-card {
    background: #142733 !important;
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-filter-card:hover {
    border-color: #087fca !important;
}

body.dark-mode .home2-page .h2-filter-number {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-filter-icon {
    background: rgba(8,127,202,.15) !important;
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-filter-icon i {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-filter-card h3 {
    color: #ffffff !important;
}

body.dark-mode .home2-page .h2-filter-card p {
    color: #a9bac4 !important;
}


/* =========================================================
   DARK MODE — ROOM CARDS
========================================================= */

body.dark-mode .home2-page .h2-room-card {
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-room-card:hover {
    border-color: #087fca !important;
}

body.dark-mode .home2-page .h2-room-overlay {
    background:
        linear-gradient(
            180deg,
            transparent 20%,
            rgba(8,127,202,.88)
        ) !important;
}

body.dark-mode .home2-page .h2-room-overlay span {
    color: #ffffff !important;
}


/* =========================================================
   DARK MODE — SMART AIR DASHBOARD
========================================================= */

body.dark-mode .home2-page .h2-dashboard {
    background: #142733 !important;
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-dashboard-header {
    border-color: rgba(255,255,255,.10) !important;
}

body.dark-mode .home2-page .h2-live {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-dashboard-aqi strong {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-dashboard-stat strong {
    color: #087fca !important;
}


/* =========================================================
   DARK MODE — FLOATING CARDS
========================================================= */

body.dark-mode .home2-page .h2-floating-card {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: #087fca !important;
}

body.dark-mode .home2-page .h2-floating-card strong {
    color: #111111 !important;
}

body.dark-mode .home2-page .h2-floating-card small {
    color: #087fca !important;
}


/* =========================================================
   DARK MODE — LABELS / ACCENTS
========================================================= */

body.dark-mode .home2-page .h2-label,
body.dark-mode .home2-page .h2-text-link,
body.dark-mode .home2-page .h2-product-link {
    color: #087fca !important;
}

body.dark-mode .home2-page .h2-label::before {
    background: #087fca !important;
}


/* =========================================================
   DARK MODE — ICONS
========================================================= */

body.dark-mode .home2-page .h2-trust-item i,
body.dark-mode .home2-page .h2-tech-point i,
body.dark-mode .home2-page .h2-tech-list-item > i,
body.dark-mode .home2-page .h2-filter-icon i {
    color: #087fca !important;
}
/* =====================================================
   PRODUCTS HERO — FORCE OVERLAY
   ONLY PRODUCTS HERO
===================================================== */

.pl-products-hero {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
}


/* Banner image */

.pl-products-hero .pl-products-banner-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    z-index: -2 !important;
}


/* FORCE OVERLAY */

.pl-products-hero::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.50) 45%,
            rgba(8, 127, 202, 0.22) 100%
        ) !important;

    z-index: 0 !important;

    pointer-events: none !important;
}


/* Keep ALL hero content above overlay */

.pl-products-hero .pl-container {
    position: relative !important;
    z-index: 10 !important;
}

.pl-products-hero .pl-products-hero-grid {
    position: relative !important;
    z-index: 10 !important;
}

.pl-products-hero .pl-products-hero-content {
    position: relative !important;
    z-index: 20 !important;
}

.pl-products-hero .pl-hero-product {
    position: relative !important;
    z-index: 20 !important;
}


/* Floating elements above overlay */

.pl-products-hero .pl-hero-orb,
.pl-products-hero .pl-hero-particle {
    z-index: 15 !important;
}


/* =====================================================
   DARK MODE — STRONGER OVERLAY
===================================================== */

body.dark-mode .pl-products-hero::before {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.64) 45%,
            rgba(8, 127, 202, 0.28) 100%
        ) !important;
}