:root {
    --color-text: #131313;
    --primary-green: #015450;
    --sub-text: #717171;
    --green: #e8f3f1;
    --gold-main: #C5A059;
    --white: #fff;
    --bg-main:#F4F9FA;
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: "Work Sans", sans-serif;
    color: var(--color-text);
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
}

p {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0 0 10px;
}

img,
svg,
video,
canvas,
picture {
    display: block;
    max-width: 100%;
}

input,
button,
select,
textarea {
    font: inherit;
}

.page-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

/* header */

header.site-header {
    border-bottom: 1px solid #71717133;
    padding: 24px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

header.site-header > .page-container {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
}

nav.site-nav {
    display: flex;
}

nav.site-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

header.site-header p {
    margin: 0;
}

nav.site-nav ul a {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    text-decoration: none;
    color: var(--color-text);
}

.custom-btn {
    width: 208px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    border-radius: 10px;
    font-family: Work Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-main);
}

ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}

/* header end */

/* hero */
.hero-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: center;
}

.hero-list span {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-green);
}

.hero-list>li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: Work Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    max-width: 201px;
}


.hero-content p {
    color: var(--sub-text);
}

.hero-content p b {
    color: var( --color-text);
}

.hero-content #hero-heading {
    font-family: Work Sans;
    font-weight: 800;
    font-size: 88px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: capitalize;
    max-width: 645px;
    margin: 0 0 20px;
}

.hero-content #hero-heading em {
    color: var(--gold-main);
}

section#hero {
    padding: 122px 0;
    background: var(--bg-main);
}

section#hero>.page-container {
    display: flex;
    align-items: flex-start;
}
section#hero>.page-container>div {
    width: 57%;
}

section#hero>.page-container>aside {
    width: 43%;
}

section#hero aside>figure {
    margin: 0;
    position: relative;
}

section#hero aside>figure img {
    border-radius: 30px;
}

section#hero .achievement-list {
    padding: 20px;
    box-shadow: 0px 4px 15px 0px #00000033;
    border-radius: 20px;
    position: absolute;
    bottom: 20px;
    z-index: 1;
    background: #fff;
    max-width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

section#hero .achievement-list>ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    gap: 10px;
    align-items: center;
}

.achievement-list li {
    text-align: center;
}

.achievement-list li p {
    font-size: 14px;
    line-height: 140%;
    color: var(--sub-text);
    margin: 10px 0 0;
}

.achievement-list li span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 10px;
}

section#hero aside>figure .achievement-list li span img {
    border-radius: 0;
}

section#hero aside>figure>img {
    min-height: 568px;
    object-fit: cover;
}

section#hero>.page-container>div p {
    margin: 0 0 40px;
}

.hero-list {
    max-width: 645px;
}

span.top-label {
    padding: 5px 15px;
    box-shadow: 0px 0px 10px 0px #00000026;
    border: 1px solid #71717133;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    border-radius: 200px;
    display: inline-flex;
    background: #fff;
    margin: 0 auto;
}

/* hero ends */



/* how it works */

section#how-it-works {
    padding: 150px 0 75px;
}

section#how-it-works .page-container {
    display: flex;
    flex-flow: column;
}

.secondary-heading {
    font-family: Work Sans;
    font-weight: 800;
    font-size: 54px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    margin: 30px 0 20px;

}

.grey-text {
    color: var(--sub-text);
}

.text-center {
    text-align: center;
}
section#how-it-works ol {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 80px;
    text-align: center;
}

section#how-it-works ol .step-number {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 48px;
    line-height: 140%;
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    border-radius: 2000px;
    margin: 0 auto 40px;
    box-shadow: 0px 8px 30px 0px #01545026;
}

section#how-it-works ol .step-number>img {
    background: #C5A059;
    width: 50px;
    height: 50px;
    padding: 13px;
    border: 3px solid #fff;
    border-radius: 999px;
    position: absolute;
    bottom: 0;
    right: 0;
}
 .heading-3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0 0 30px;
}

.qr-code-list {
    margin: 60px 0;
    background: var(--primary-green);
    padding: 30px;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.qr-code-list .status-list {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4,1fr);
    width: 100%;
    max-width: 60%;
    padding-left: 20px;
}

.qr-code-list>.qr-code-item {
    width: 100%;
    max-width: 40%;
}

.qr-code-list .heading-4 {
    margin: 0 0 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.heading-4 {
    font-family: Work Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 140%;
    vertical-align: middle;
}

.qr-code-list>.qr-code-item p {
    margin: 0;
    font-size: 18px;
}

.qr-code-list .status-list:before {
    content: "";
    width: 2px;
    height: 60px;
    background: #E8F3F1;
    position: absolute;
    left: 0;
    top: -6px;
    opacity: 0.6;
}

.qr-code-list .status-list li {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
}

.qr-code-list .status-list li .status-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
    background: #FFFFFF4D;
    border: 1px solid #fff;
    border-radius: 999px;
}

.qr-code-list .status-list li .status-icon.active {
    background: var(--gold-main);
    border-color: var(--gold-main);
    box-shadow: 0px 0px 10px 0px #FFFFFF80;
}

/* Sequential status light animation
   Total cycle: 6s
   - 0s-3s: lights turn on one by one (0.75s each)
   - 3s-4.5s: all stay lit
   - 4.5s-5s: all fade out together
   - 5s-6s: pause before restart
*/

/* Dot 1: turns on at 0% (0s), stays on until 75% (4.5s), off at 83% (5s) */
@keyframes dot1 {
    0%        { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
    8%        { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 12px #FFFFFF80; }
    12%, 75%  { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 8px #FFFFFF60; }
    83%, 100% { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
}

/* Dot 2: turns on at 12.5% (0.75s) */
@keyframes dot2 {
    0%, 12.5%  { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
    20%        { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 12px #FFFFFF80; }
    25%, 75%   { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 8px #FFFFFF60; }
    83%, 100%  { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
}

/* Dot 3: turns on at 25% (1.5s) */
@keyframes dot3 {
    0%, 25%    { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
    33%        { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 12px #FFFFFF80; }
    37%, 75%   { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 8px #FFFFFF60; }
    83%, 100%  { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
}

/* Dot 4: turns on at 37.5% (2.25s) */
@keyframes dot4 {
    0%, 37.5%  { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
    45%        { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 12px #FFFFFF80; }
    50%, 75%   { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 0 8px #FFFFFF60; }
    83%, 100%  { background: #FFFFFF4D; border-color: #fff; box-shadow: none; }
}

.qr-code-list .status-list li:nth-child(1) .status-icon {
    animation: dot1 6s ease-in-out infinite;
}
.qr-code-list .status-list li:nth-child(2) .status-icon {
    animation: dot2 6s ease-in-out infinite;
}
.qr-code-list .status-list li:nth-child(3) .status-icon {
    animation: dot3 6s ease-in-out infinite;
}
.qr-code-list .status-list li:nth-child(4) .status-icon {
    animation: dot4 6s ease-in-out infinite;
}

/* Connector line animations */
@keyframes line1 {
    0%, 6%     { background: #E8F3F1; opacity: 0.3; }
    14%, 75%   { background: var(--gold-main); opacity: 0.7; }
    83%, 100%  { background: #E8F3F1; opacity: 0.3; }
}
@keyframes line2 {
    0%, 18%    { background: #E8F3F1; opacity: 0.3; }
    28%, 75%   { background: var(--gold-main); opacity: 0.7; }
    83%, 100%  { background: #E8F3F1; opacity: 0.3; }
}
@keyframes line3 {
    0%, 31%    { background: #E8F3F1; opacity: 0.3; }
    41%, 75%   { background: var(--gold-main); opacity: 0.7; }
    83%, 100%  { background: #E8F3F1; opacity: 0.3; }
}

.qr-code-list .status-list li:nth-child(2):before {
    animation: line1 6s ease-in-out infinite;
}
.qr-code-list .status-list li:nth-child(3):before {
    animation: line2 6s ease-in-out infinite;
}
.qr-code-list .status-list li:nth-child(4):before {
    animation: line3 6s ease-in-out infinite;
}
.custom-btn.secondary-btn {
    background: var(--gold-main);
    color: var(--color-text);
}

.custom-btn.secondary-btn:hover {
    color: #fff;
    background: var(--primary-green);
}

section#how-it-works>div>p {
    text-align: center;
    margin: 0 0 60px;
}
section#how-it-works ol {
    position: relative;
}

section#how-it-works ol li:nth-child(2):after , section#how-it-works ol li:nth-child(2):before {
    content: "";
    width: 100%;
    position: absolute;
    top: 73px;
    background: linear-gradient(90deg, #015450 0%, #C5A059 50%, #015450 100%);
    height: 2px;
    max-width: 806px;
}

section#how-it-works ol .step-number {z-index: 1;position: relative;background: #fff;}

section#how-it-works ol>li:nth-child(2) {
}

section#how-it-works ol li {position: relative;}

section#how-it-works ol>li:nth-child(2)::before {
    left: -220px;
}

section#how-it-works ol>li:nth-child(2)::after {
    right: -220px;
}

/* how it works ends */



/* comparison */

section#comparison .page-container {
    display: flex;
    flex-flow: column;
}

section#comparison {
    padding: 75px 0 150px;
}
.comparision-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin: 60px 0 0;
}

.comparison-item {
    padding: 30px;
    border-radius: 20px;
}

.comparison-item.grey-card {
    background: var(--Grey-Background, #F8FAFC);
    border: 1px solid #71717133;
}

.comparison-item.green-card {
    box-shadow: 0px 8px 15px 0px #00000040;
    background: var(--primary-green);
    color: #fff;
}

.comparison-item h3 {
    margin: 0 0 10px;
    padding: 0 0 20px;
    border-bottom: 2px solid;
}

.comparison-item.grey-card>h3 {
    border-color: rgb(113,113,113,0.14);
    color: var(--sub-text);
}

.comparison-item ul li {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-item ul li:not(:first-child) {
    border-top: 2px solid;
}

.comparison-item.grey-card ul li {
    border-color: rgb(113,113,113,0.14);
    color: var(--sub-text);
    text-decoration: line-through;
}

.comparison-item.green-card>.heading-3 {
    border-color: #c5a05980;
}

.comparison-item.green-card ul li {
    border-color: #e8f3f13d;
}
.comparison-item.green-card>.heading-3 .gold-text {
    color: var(--gold-main);
}

.comparison-item ul li>span.icon {
    width: 16px;
    height: 16px;
}

.comparison-item ul li>span.icon img {
    width: 100%;
    height: 100%;
}

.comparison-item.grey-card ul li span.icon {
    background: var(--sub-text);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1px;
    padding-top: 0.5px;
}

.comparison-item.grey-card ul li span.icon>img {
    width: 6.67px;
    height: 6.67px;
}


/* testimonials */

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin: 60px 0 0;
}

.testimonial-list>.testimonial-item {
    padding: 30px;
    background: #fff;
    border: 1px solid #7171714D;
    border-radius: 20px;
}

section#testimonials {
    background: #F8FAFC;
    padding: 150px 0;
}

section#testimonials>.page-container {
    display: flex;
    flex-flow: column;
}

.testimonial-list>.testimonial-item p[aria-label="5 out of 5 stars"] {
    margin: 0 0 30px;
}

.testimonial-list>.testimonial-item p img {
    width: 125px;
}

.testimonial-list>.testimonial-item .review-title {
    margin: 0 0 10px;
    font-family: Work Sans;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.testimonial-list>.testimonial-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.testimonial-list>.testimonial-item .review-title + p {
    margin: 0 0 30px;
    min-height: 162px;
}

.testimonial-list>.testimonial-item article {
    display: flex;
    flex-flow: column;
}

.testimonial-list>.testimonial-item article>footer {
    margin-top: auto;
    display: flex;
    border-top: 2px solid rgb(113 113 113 / 20%);
    align-items: center;
    padding: 30px 0 0;
}

.testimonial-list>.testimonial-item article>footer .client-info {
    display: flex;
    flex-flow: column;
    font-family: Work Sans;
    font-size: 16px;
    line-height: 140%;
}

.testimonial-list>.testimonial-item article>footer .client-image {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.testimonial-list .client-info cite {
    color: var(--sub-text);
    font-weight: 400;
    display: block;
    font-family: 'Work Sans';
    font-style: normal;
}

.testimonial-list .client-info>strong {
    font-weight: 600;
    display: block;
    margin: 0 0 5px;
}

/* testimonials ends */


/* services  */

.services-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.services-list>li {
    background: linear-gradient(270deg, #C5A059 0%, #015450 100%);
    padding: 6px 0 0;
    border-radius: 20px;
    overflow: hidden;
}

.services-list>li>article {
    background: #fff;
    padding: 30px;
    border: 1px solid #71717133;
    border-radius: 20px;
}

.services-list>li>article .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-green);
    border-radius: 20px;
    margin: 0 0 40px;
}

.services-list>li>article .heading-3 {
    color: var(--primary-green);
    margin: 0 0 10px;
}

.services-list>li>article ul {
    border-top: 2px solid #71717136;
    padding: 30px 0 0;
    margin: 30px 0 0;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.services-list>li>article ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Work Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.services-list .frequency-list {
    border-top: 2px solid #71717136;
    margin: 30px 0 0;
    padding: 30px 0 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--primary-green);
}

.trust-badge-list {
    margin: 40px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
}

.trust-badge-list>span {
    display: flex;
    align-items: center;
    gap: 11.6px;
}

.trust-badge-list .grey-text {
    padding-left: 20px;
    margin-left: 20px;
    position: relative;
}

.trust-badge-list .grey-text:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--sub-text);
    border-radius: 999px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.trust-badge-list>span:not(.grey-text) {
    color: var(--primary-green);
}

.trust-badge-list>span>img {
    position: relative;
    top: -1px;
}

section#services {
    padding: 150px 0;
    background: #F8FAFC;
}

section#services>.page-container {
    display: flex;
    flex-flow: column;
}

.services-wrapper {
    margin: 60px 0 0;
}

section#services p {
    text-align: center;
    margin: 0px 0 60px;
}


/* bag capacity */

section#bag-capacity {
    padding: 150px 0 75px;
}

section#bag-capacity>.page-container {
    display: flex;
    flex-flow: column;
    max-width: 900px;
}

section#bag-capacity .bag-guide-image {
    margin: 70px auto 0;
    max-width: 270px;
    position: relative;
}

section#bag-capacity .bag-guide-image>.weight-label {
    display: flex;
    flex-flow: column;
    font-family: Work Sans;
    font-weight: 800;
    font-size: 54px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary-green);
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

section#bag-capacity .bag-guide-image p {
    font-family: Work Sans;
    font-weight: 500;
    font-size: 16.74px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--sub-text);
    width: 166px;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

section#bag-capacity .bag-guide-image>.weight-label span {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

section#bag-capacity .bag-guide-image>.weight-label:after {
    content: "";
    width: 112px;
    height: 2px;
    background: #717171;
    opacity: 0.2;
    margin: 0 auto;
    display: flex;
    margin-top: 15px;
}


.bag-guide-content {
    border: 1px solid #71717133;
    margin: 60px 0 0;
    border-radius: 20px;
    overflow: hidden;
}

.bag-guide-content dl {
    margin: 0;
    display: flex;
    border-bottom: 1px solid #71717133;
    border-top: 1px solid #71717133;
}

.bag-guide-content dl>dt {
    width: 100%;
    max-width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bag-guide-content dl>dt span {
    background: var(--green);
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.bag-guide-content dl>dd {
    margin: 0;
    width: 100%;
    max-width: calc(100% - 90px);
    padding: 20px 30px;
    border-left: 1px solid #71717133;
}

.bag-guide-content dl>dd h4 {
    margin: 0 0 10px;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.bag-guide-content dl>dd .cloth-quantity {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.bag-guide-content dl>dd .cloth-quantity>li {
    background: var(--green);
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    color: var(--sub-text);
}

.bag-guide-content dl>dd .cloth-quantity>li>b {
    color: var(--primary-green);
}

.bag-guide-content dl:last-child {
    border-bottom: 0;
}

.bag-guide-content dl:first-child {
    border-top: 0;
}

a.see-item-link {
    border: 1px dashed #71717133;
    display: flex;
    margin: 40px 0 0;
    justify-content: center;
    align-items: center;
    padding: 13.5px;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    color: var(--primary-green);
    gap: 10px;
    text-decoration: none;
    border-radius: 10px;
}

.notice.message {
    border: 1px solid goldenrod;
    padding: 30px;
    background: #EEE4CA33;
    border-radius: 20px;
    margin: 40px 0 0;
    display: flex;
    gap: 20px;
}

.notice.message>span {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    background: #C5A059;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.notice.message>span img {
    height: 16px;
}

.notice.message h4 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
}

.notice.message .grey-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
}

p.bag-feature-text {
    margin: 40px 0 0;
    padding: 20px;
    background: #F4F9FA;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

p.bag-feature-text>span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sub-text);
    font-family: Work Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
}

section#time-saved {
    padding: 75px 0 150px;
}   

section#time-saved>.page-container {
    display: flex;
    flex-flow: column;
}

section#time-saved>.page-container .secondary-heading span {
    color: #C5A059;
}

.time-saved-list {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 30px;
    margin: 60px 0 0;
}

.time-saved-list>li b {
    font-family: Work Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    display: block;
    margin: 0 0 20px;
    color: var(--primary-green);
    text-align: center;
}

.time-saved-list>li p.cat {
    text-align: center;
    margin: 20px 0 0;
}

.time-saved-list>li p.cat span {
    color: var(--sub-text);
    font-family: Work Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
}

.time-saved-list>li .total-hour-spent.laundry , .time-saved-list>li .total-hour-spent.drying {
    width: 100%;
    height: 335px;
}

.time-saved-list>li .total-hour-spent {
    border-radius: 10px;
}

.time-saved-list>li .total-hour-spent.drying {
    background: rgb(1 84 80 / 70%);
}

.time-saved-list>li .total-hour-spent.laundry {
    background: var(--primary-green);
}

.time-saved-list>li .total-hour-spent.folding {
    height: 240px;
    background: #C5A059;
}

.time-saved-list>li .total-hour-spent.trips {
    height: 196px;
    background: #EEE4CA;
}
.time-saved-list>li .total-hour-spent.put-away {
    height: 153px;
    background: #01545033;
}

.time-saved-list>li .total-hour-spent.sorting {
    height: 110px;
    background: #E8F3F1;
}

.time-saved-list {
    align-items: flex-end;
}

.time-saved-list>li p.cat>span:has(img) {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid var(--sub-text);
    align-items: center;
    border-radius: 7px;
}

.time-saved-list>li p.cat>span:has(img)>img {
    width: 24px;
    height: 24px;
}

section#time-saved>p {
    margin: 60px 0 0;
}

section#time-saved>p>b {
    color: var(--primary-green);
}


/* gurantee */

section#guarantee {
    background: var(--primary-green);
    padding: 150px 15px;
}

section#guarantee>.page-container {
    border-radius: 20px;
    overflow: hidden;
}

section#guarantee>.page-container .guarantee-content {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    padding: 60px;
    color: #fff;
}

section#guarantee>.page-container .guarantee-content>span {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C5A059;
    border-radius: 200px;
}

section#guarantee>.page-container .guarantee-content .secondary-heading {
    font-size: 48px;
    line-height: 120%;
    color: #fff;
}

section#guarantee>.page-container .guarantee-content ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    text-align: center;
    margin: 40px 0 0;
}

section#guarantee>.page-container .guarantee-content ul>li>.step {
    width: 60px;
    height: 60px;
    display: flex;
    background: #C5A059;
    margin: 0 auto 20px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #131313;
    border-radius: 999px;
}

section#guarantee>.page-container .guarantee-content ul>li b {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    margin: 0 0 20px;
    display: block;
}

section#guarantee>.page-container .guarantee-content ul>li p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin: 0;
}

section#faq {
    background: #F8FAFC;
    padding: 150px 0;
}

section#faq>.page-container {
    display: flex;
    flex-flow: column;
    text-align: center;
    max-width: 1126px;
}

section#faq>.page-container details {
    background: #FFFFFF;
    border: 1px solid #71717166;
    padding: 30px;
    border-radius: 20px;
    margin: 0 0 20px;
    cursor: pointer;
}

section#faq>.page-container details>summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Work Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
}

section#faq>.page-container details>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: left;
    padding: 10px 0 0;
}
section#faq>.page-container details[open] summary>span {
    transform: rotate(180deg);
}

section#faq>.page-container .secondary-heading {
    margin-bottom: 60px;
}


/* ready  */

.secondary-heading span {
    color: #C5A059;
}
section#get-started .text-center {
    font-weight: 500;
}
section#get-started p {
    text-align: center;
    margin: 0;
}

section#get-started {
    padding: 80px 0;
    background: var(--green);
}

section#get-started ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 40px;
}

section#get-started ul>li {
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

section#get-started ul>li:nth-child(2):before , section#get-started ul>li:nth-child(2):after {
    content: "";
    width: 3px;
    height: 3px;
    background: var(--primary-green);
    position: absolute;
    border-radius: 999px;
    top: 50%;
    transform: translateY(-50%);
}

section#get-started ul>li:nth-child(2):before {
    left: 0;
}

section#get-started ul>li:nth-child(2):after {
    right: 0;
}


/* footer */

footer.site-footer {
    padding: 80px 0 40px;
    background: var(--primary-green);
}

footer.site-footer>.page-container>p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    padding: 40px 0 0;
    margin: 40px 0 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

footer.site-footer .footer-top {
    display: flex;
    align-items: flex-start;
}

footer.site-footer .footer-top>.footer-content {
    width: 100%;
    max-width: 25%;
    padding-right: 0;
}

footer.site-footer .footer-top>.footer-menus {width: 100%;max-width: 75%;padding-left: 77px;}

footer.site-footer .footer-top>.footer-content p {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    vertical-align: middle;
    margin: 20px 0 30px;
    color: #fff;
    max-width: 308px;
}

footer.site-footer .footer-top>.footer-menus nav {
    display: flex;
    justify-content: space-between;
}

footer.site-footer .footer-top>.footer-menus h3 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px;
    color: #C5A059;
    width: 100%;
}

.download-app {
    margin: 60px 0 0;
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 15px;
}

footer.site-footer .footer-top>.footer-menus a {
    font-family: Work Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    text-decoration: none;
}

footer.site-footer .footer-top>.footer-menus ul {
    display: flex;
    flex-flow: column;
    gap: 15px;
}

.download-app>a {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FFFFFF0D;
    padding: 12px 20px;
    border: 1px solid #FFFFFFCC;
    border-radius: 10px;
}

.region {
    width: 209px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FFFFFF0D;
    padding: 12px 20px;
    border: 1px solid #FFFFFFCC;
    border-radius: 10px;
    color: #fff;
    margin: 0 0 30px;
}

footer.site-footer .footer-top>.footer-content .social-media-list {
    display: flex;
    gap: 20px;
}

footer.site-footer .footer-top>.footer-content .social-media-list a {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FFFFFF0D;
    padding: 0;
    border: 1px solid #FFFFFFCC;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    justify-content: center;
}

section#app {
    padding: 150px 0;
}

section#app .row {
    display: flex;
    align-items: center;
}

section#app .row .mobile-app-image {
    width: 100%;
    max-width: 25%;
}

section#app .row .mobile-app-image figure {
    margin: 0;
}

section#app .row .mobile-app-content {
    width: 100%;
    max-width: 75%;
    padding-right: 30px;
}

section#app .row .mobile-app-content #app-heading {
    text-align: left;
}

section#app .row .mobile-app-content .resource {
    display: flex;
    gap: 30px;
    margin: 40px 0 0;
}

section#app .row .mobile-app-content .resource img {
    width: 100%;
}

.app-features {
    margin: 40px 0 30px;
    max-width: 630px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.app-features ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.app-features li>span {
    width: 50px;
    height: 50px;
    border: 1px solid #71717133;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-features li>span img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.verified-badge>p {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 40px 0 60px;
    font-family: Work Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
}

.verified-badge>p img + img {
    margin-left: 20px;
    margin-right: 20px;
    padding-right: 0;
}

.verified-badge>p span {
    width: 8px;
    height: 8px;
    background: var(--sub-text);
    border-radius: 999px;
    opacity: 0.7;
    margin-right: 20px;
    position: relative;
    top: 1px;
}
section#testimonials>.page-container a.custom-btn.btn-primary.header-btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.qr-code-list .status-list li {
    position: relative;
}

.qr-code-list .status-list li:not(:first-child):before {
    content: "";
    width: 30px;
    height: 2px;
    background: #E8F3F1;
    opacity: 0.3;
    display: block;
    position: absolute;
    left: -14px;
    top: 20px;
}
section#app .row .mobile-app-content .grey-text {
    max-width: 630px;
}

header.site-header .custom-btn {
    width: 150px;
}


/* ═══════════════════════════════════════
   SUB-PAGE STYLES
   ═══════════════════════════════════════ */

/* Page Hero */
.page-hero {
    background: var(--primary-green);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.page-hero-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 120%;
    margin: 0 0 16px;
    color: #fff;
}

.page-hero-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #E8F3F1;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sub-page section padding */
.section-pad {
    padding: 80px 0;
}

.bg-white {
    background: #fff;
}

.bg-light {
    background: var(--bg-main);
}

/* Prose content (terms, privacy, care guidelines) */
.prose-content {
    max-width: 860px;
    margin: 0 auto;
}

.prose-content h2 {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    color: var(--primary-green);
    margin: 48px 0 16px;
    padding-top: 16px;
    border-top: 1px solid #71717120;
}

.prose-content h2:first-of-type {
    border-top: none;
    margin-top: 32px;
}

.prose-content h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin: 28px 0 12px;
    color: var(--color-text);
}

.prose-content p {
    font-size: 16px;
    line-height: 170%;
    color: var(--sub-text);
    margin: 0 0 16px;
}

.prose-content ul,
.prose-content ol {
    padding-left: 24px;
    margin: 0 0 16px;
    list-style: disc;
}

.prose-content ol {
    list-style: decimal;
}

.prose-content li {
    font-size: 16px;
    line-height: 170%;
    color: var(--sub-text);
    margin: 0 0 8px;
}

.prose-content a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.18s ease;
}

.prose-content a:hover {
    color: var(--gold-main);
}

.prose-content strong {
    color: var(--color-text);
}

.prose-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 16px 0;
}

.prose-content th,
.prose-content td {
    padding: 10px 14px;
    border: 1px solid #71717133;
    text-align: left;
}

.prose-content th {
    background: var(--bg-main);
    color: var(--color-text);
    font-weight: 600;
}

.prose-content tr:nth-child(even) {
    background: var(--bg-main);
}

/* Table of Contents */
.toc-nav {
    background: var(--bg-main);
    border: 1px solid #71717133;
    border-radius: 20px;
    padding: 24px 28px;
    margin: 24px 0;
}

.toc-nav p {
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px;
    font-size: 18px;
}

.toc-nav ol {
    margin: 0;
    padding-left: 20px;
    list-style: decimal;
}

.toc-nav ol li {
    line-height: 2;
}

.toc-nav ol a {
    color: var(--primary-green);
    text-decoration: none;
}

.toc-nav ol a:hover {
    text-decoration: underline;
    color: var(--gold-main);
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info-section h2 {
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text);
    margin: 0 0 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-box.filled {
    background: var(--primary-green);
}

.contact-icon-box.filled img {
    filter: brightness(0) invert(1);
}

.contact-info-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--sub-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-text);
}

.contact-info-value a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease;
}

.contact-info-value a:hover {
    color: var(--gold-main);
    text-decoration: underline;
}

.contact-quick-links {
    background: var(--green);
    border: 1px solid #01545020;
    border-radius: 20px;
    padding: 24px;
    margin-top: 32px;
}

.contact-quick-links h4 {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-green);
    margin: 0 0 16px;
}

.contact-quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sub-text);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.18s ease;
}

.contact-quick-links a:hover {
    color: var(--primary-green);
}

/* Form styles */
.form-container {
    background: #fff;
    border: 1px solid #71717133;
    border-radius: 20px;
    padding: 40px;
}

.form-container h2 {
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text);
    margin: 0 0 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-label .required {
    color: #d32f2f;
}

.form-field {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #71717140;
    border-radius: 10px;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.form-field:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px #01545020;
}

.form-field.error {
    border-color: #d32f2f;
}

.form-field::placeholder {
    color: #717171;
}

textarea.form-field {
    resize: vertical;
    min-height: 120px;
}

select.form-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-error {
    display: block;
    font-size: 13px;
    color: #d32f2f;
    margin-top: 6px;
    min-height: 20px;
}

.char-counter {
    font-size: 12px;
    color: var(--sub-text);
    margin-top: 6px;
}

.form-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-submit {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    border-radius: 10px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    text-decoration: none;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.18s ease;
}

.btn-submit:hover {
    background: var(--gold-main);
}

.form-success {
    display: none;
    background: var(--green);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px;
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.form-success.visible {
    display: block;
}

/* About page - Mission block */
.mission-block {
    max-width: 800px;
    margin: 0 auto;
}

.mission-block p {
    font-size: 18px;
    line-height: 170%;
    color: var(--sub-text);
}

/* About page - Role cards */
.role-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .role-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.role-card {
    background: #fff;
    border: 1px solid #71717133;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.role-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.role-icon-box img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.role-card h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    margin: 0 0 12px;
    color: var(--primary-green);
}

.role-card p {
    font-size: 16px;
    line-height: 160%;
    color: var(--sub-text);
    margin: 0;
}

/* About page - Values grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-main);
    border: 1px solid #71717120;
    border-radius: 20px;
    padding: 30px;
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.value-text h3 {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--color-text);
}

.value-text p {
    font-size: 16px;
    line-height: 160%;
    color: var(--sub-text);
    margin: 0;
}

/* About page - Location card */
.location-card {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    background: #fff;
    border: 1px solid #71717133;
    border-radius: 20px;
    padding: 40px;
}

.location-card h3 {
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--color-text);
}

.location-card p {
    font-size: 16px;
    line-height: 160%;
    color: var(--sub-text);
    margin: 0;
}

.location-card a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.location-card a:hover {
    color: var(--gold-main);
    text-decoration: underline;
}

/* Sub-page CTA section */
.sub-cta-section {
    background: var(--green);
    padding: 80px 0;
    text-align: center;
}

.sub-cta-section .secondary-heading {
    margin-top: 0;
}

.sub-cta-section p {
    font-size: 18px;
    color: var(--sub-text);
    margin: 0 0 30px;
}

/* Sub-page chip label */
.chip {
    padding: 5px 15px;
    box-shadow: 0px 0px 10px 0px #00000026;
    border: 1px solid #71717133;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
    border-radius: 200px;
    display: inline-flex;
    background: #fff;
    letter-spacing: 0.5px;
    color: var(--color-text);
}

/* Care guidelines - item cards */
.care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.care-card {
    background: #fff;
    border: 1px solid #71717133;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
}

.care-card-icon {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.care-card-icon.filled {
    background: var(--primary-green);
}

.care-card-icon.filled img {
    filter: brightness(0) invert(1);
}

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

.care-card h3 {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 12px;
    color: var(--primary-green);
}

.care-card p {
    font-size: 16px;
    line-height: 160%;
    color: var(--sub-text);
    margin: 0 0 16px;
}

.care-card ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.care-card li {
    font-size: 15px;
    line-height: 140%;
    color: var(--sub-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Process steps (care guidelines) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.process-steps > li {
    position: relative;
}

.process-step-number {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: 600;
    font-size: 36px;
    line-height: 140%;
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    border-radius: 2000px;
    margin: 0 auto 24px;
    box-shadow: 0px 8px 30px 0px #01545026;
    background: #fff;
    z-index: 1;
}

.process-step-number > img {
    background: var(--gold-main);
    width: 36px;
    height: 36px;
    padding: 8px;
    border: 3px solid #fff;
    border-radius: 999px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.process-steps .heading-3 {
    font-size: 20px;
    margin: 0 0 12px;
}

/* Sub-page nav styling for inner pages */
.sub-header-nav {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.sub-header-nav a {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.18s ease;
}

.sub-header-nav a:hover,
.sub-header-nav a.active {
    color: var(--primary-green);
}

/* Utility */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }


/* ═══════════════════════════════════════
   CAROUSEL DOT INDICATORS
   ═══════════════════════════════════════ */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #71717140;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 24px;
    background: var(--primary-green);
}

/* Dots inside dark sections */
section#guarantee .carousel-dots .carousel-dot {
    background: #ffffff40;
}

section#guarantee .carousel-dots .carousel-dot.active {
    background: var(--gold-main);
}

/* ═══════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ═══════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in grids */
.comparision-wrapper .comparison-item.reveal:nth-child(2),
.role-card.reveal:nth-child(2),
.value-card.reveal:nth-child(2),
.care-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.role-card.reveal:nth-child(3),
.value-card.reveal:nth-child(3),
.care-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.value-card.reveal:nth-child(4),
.care-card.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

section#faq details.reveal:nth-child(2) { transition-delay: 0.05s; }
section#faq details.reveal:nth-child(3) { transition-delay: 0.1s; }
section#faq details.reveal:nth-child(4) { transition-delay: 0.15s; }
section#faq details.reveal:nth-child(5) { transition-delay: 0.2s; }

.contact-info-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-info-item.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════
   MICRO-INTERACTIONS & POLISH
   ═══════════════════════════════════════ */

/* Card hover lift */
.comparison-item,
.testimonial-item,
.services-list > li,
.role-card,
.value-card,
.care-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
    .comparison-item:hover,
    .testimonial-item:hover,
    .services-list > li:hover,
    .role-card:hover,
    .value-card:hover,
    .care-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
}

/* FAQ smooth open */
section#faq details {
    transition: box-shadow 0.25s ease;
}

section#faq details[open] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

section#faq details summary {
    cursor: pointer;
    transition: color 0.2s ease;
}

section#faq details[open] summary {
    color: var(--primary-green);
}

/* Button press effect */
.custom-btn,
.btn-submit {
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.custom-btn:active,
.btn-submit:active {
    transform: scale(0.97);
}

/* Smooth header shadow on scroll (via JS class) */
header.site-header {
    transition: box-shadow 0.3s ease;
}

header.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Step number pulse on reveal */
@keyframes stepPulse {
    0% { box-shadow: 0 8px 30px #01545026; }
    50% { box-shadow: 0 8px 30px #01545050; }
    100% { box-shadow: 0 8px 30px #01545026; }
}

section#how-it-works ol .step-number {
    transition: transform 0.3s ease;
}

/* Service icon subtle animation */
.services-list .service-icon {
    transition: transform 0.3s ease;
}

.services-list > li:hover .service-icon {
    transform: scale(1.05);
}

/* Guarantee badge entrance */
section#guarantee .guarantee-content > span {
    transition: transform 0.3s ease;
}

section#guarantee .guarantee-content:hover > span {
    transform: scale(1.08);
}


/* ═══════════════════════════════════════
   HAMBURGER MENU BUTTON
   ═══════════════════════════════════════ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ═══════════════════════════════════════
   RESPONSIVE — 1200px
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
    .hero-content #hero-heading {
        font-size: 64px;
    }

    nav.site-nav ul {
        gap: 30px;
        padding-right: 30px;
    }

    section#how-it-works ol li:nth-child(2):after,
    section#how-it-works ol li:nth-child(2):before {
        max-width: 500px;
    }

    section#how-it-works ol li:nth-child(2)::before {
        left: -140px;
    }

    section#how-it-works ol li:nth-child(2)::after {
        right: -140px;
    }

    .time-saved-list {
        grid-template-columns: repeat(3, 1fr);
    }

    section#app .row .mobile-app-content {
        max-width: 65%;
    }

    section#app .row .mobile-app-image {
        max-width: 35%;
    }
}


/* ═══════════════════════════════════════
   HORIZONTAL SCROLL UTILITY
   ═══════════════════════════════════════ */

.scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-wrapper > * {
    scroll-snap-align: start;
}


/* ═══════════════════════════════════════
   RESPONSIVE — 992px (Tablet)
   ═══════════════════════════════════════ */

@media (max-width: 992px) {
    body {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    /* Header — show hamburger, hide desktop nav */
    .menu-toggle {
        display: block;
        order: 3;
    }

    nav.site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-flow: column;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav.site-nav.open {
        right: 0;
    }

    nav.site-nav ul {
        flex-flow: column;
        gap: 0;
        padding-right: 0;
    }

    nav.site-nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #71717120;
        font-size: 18px;
    }

    header.site-header .custom-btn {
        width: auto;
        padding: 0 20px;
        font-size: 14px;
        height: 40px;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Hero */
    section#hero {
        padding: 60px 0;
    }

    section#hero>.page-container {
        flex-flow: column;
    }

    section#hero>.page-container>div,
    section#hero>.page-container>aside {
        width: 100%;
    }

    .hero-content #hero-heading {
        font-size: 48px;
        max-width: 100%;
    }

    section#hero aside>figure>img {
        min-height: 350px;
    }

    section#hero>.page-container>aside {
        margin-top: 40px;
    }

    /* How it works — horizontal scroll */
    section#how-it-works {
        padding: 80px 0 40px;
    }

    .secondary-heading {
        font-size: 36px;
    }

    section#how-it-works ol {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    section#how-it-works ol::-webkit-scrollbar {
        display: none;
    }

    section#how-it-works ol > li {
        min-width: 280px;
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    section#how-it-works ol li:nth-child(2):after,
    section#how-it-works ol li:nth-child(2):before {
        display: none;
    }

    section#how-it-works ol .step-number {
        width: 100px;
        height: 100px;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .heading-3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* QR code section */
    .qr-code-list {
        flex-flow: column;
        text-align: center;
    }

    .qr-code-list>.qr-code-item {
        max-width: 100%;
    }

    .qr-code-list .status-list {
        max-width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }

    .qr-code-list .status-list:before {
        display: none;
    }

    /* Comparison — horizontal scroll */
    section#comparison {
        padding: 40px 0 80px;
    }

    .comparision-wrapper {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .comparision-wrapper::-webkit-scrollbar {
        display: none;
    }

    .comparision-wrapper > .comparison-item {
        min-width: 320px;
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    /* Testimonials — horizontal scroll */
    section#testimonials {
        padding: 80px 0;
    }

    .testimonial-list {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .testimonial-list::-webkit-scrollbar {
        display: none;
    }

    .testimonial-list > .testimonial-item {
        min-width: 300px;
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .testimonial-list>.testimonial-item .review-title + p {
        min-height: auto;
    }

    /* Services — horizontal scroll */
    section#services {
        padding: 80px 0;
    }

    .services-list {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .services-list::-webkit-scrollbar {
        display: none;
    }

    .services-list > li {
        min-width: 300px;
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    /* Bag capacity */
    section#bag-capacity {
        padding: 80px 0 40px;
    }

    .bag-guide-content dl>dd .cloth-quantity {
        gap: 15px;
    }

    /* Time saved — horizontal scroll to preserve bar chart */
    section#time-saved {
        padding: 40px 0 80px;
    }

    .time-saved-list {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        align-items: flex-end;
    }

    .time-saved-list::-webkit-scrollbar {
        display: none;
    }

    .time-saved-list > li {
        min-width: 130px;
        flex: 0 0 130px;
        scroll-snap-align: start;
    }

    /* Guarantee — horizontal scroll */
    section#guarantee {
        padding: 80px 15px;
    }

    section#guarantee>.page-container .guarantee-content {
        padding: 40px 20px;
    }

    section#guarantee>.page-container .guarantee-content .secondary-heading {
        font-size: 36px;
    }

    section#guarantee>.page-container .guarantee-content ul {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* FAQ */
    section#faq {
        padding: 80px 0;
    }

    section#faq>.page-container details>summary {
        font-size: 18px;
    }

    /* Get started */
    section#get-started ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* App section */
    section#app {
        padding: 80px 0;
    }

    section#app .row {
        flex-flow: column-reverse;
    }

    section#app .row .mobile-app-content,
    section#app .row .mobile-app-image {
        max-width: 100%;
        width: 100%;
    }

    section#app .row .mobile-app-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    section#app .row .mobile-app-content #app-heading {
        text-align: center;
    }

    section#app .row .mobile-app-content .grey-text {
        max-width: 100%;
        text-align: center;
    }

    .app-features {
        max-width: 100%;
    }

    section#app .row .mobile-app-image figure {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Footer */
    footer.site-footer {
        padding: 50px 0 30px;
    }

    footer.site-footer .footer-top {
        flex-flow: column;
        gap: 40px;
    }

    footer.site-footer .footer-top>.footer-content {
        max-width: 100%;
    }

    footer.site-footer .footer-top>.footer-menus {
        max-width: 100%;
        padding-left: 0;
    }

    footer.site-footer .footer-top>.footer-menus nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Sub-pages */
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .section-pad {
        padding: 50px 0;
    }

    .sub-header-nav {
        gap: 20px;
        padding-right: 20px;
    }

    /* Process steps (care guidelines) — horizontal scroll */
    .process-steps {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .process-steps::-webkit-scrollbar {
        display: none;
    }

    .process-steps > li {
        min-width: 250px;
        flex: 0 0 250px;
        scroll-snap-align: start;
    }

    .form-container {
        padding: 25px;
    }
}


/* ═══════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
    .hero-content #hero-heading {
        font-size: 40px;
    }

    .hero-list {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 10px;
    }

    .hero-list>li {
        font-size: 13px;
        gap: 8px;
    }

    .hero-list span {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 6px;
    }

    .hero-list span img {
        width: 16px;
        height: 16px;
    }

    section#hero .achievement-list {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        max-width: 100%;
    }

    section#hero aside>figure {
        display: flex;
        flex-flow: column;
    }

    section#hero aside>figure>img {
        min-height: 300px;
    }

    /* Achievement list — keep 3 cols, compact */
    section#hero .achievement-list>ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .achievement-list li p {
        font-size: 12px;
    }

    .app-features ul {
        grid-template-columns: 1fr;
    }

    .trust-badge-list {
        flex-flow: column;
        gap: 8px;
        align-items: center;
    }

    .trust-badge-list .grey-text {
        padding-left: 0;
        margin-left: 0;
    }

    .trust-badge-list .grey-text:before {
        display: none;
    }

    .verified-badge>p {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    p.bag-feature-text {
        flex-flow: column;
        gap: 15px;
        align-items: center;
    }

    /* Sub-pages */
    .sub-header-nav {
        display: none;
    }

    .prose-content h2 {
        font-size: 22px;
    }

    .contact-grid {
        gap: 40px;
    }
}


/* ═══════════════════════════════════════
   RESPONSIVE — 576px (Mobile)
   ═══════════════════════════════════════ */

@media (max-width: 576px) {
    .page-container {
        padding: 0 15px;
    }

    header.site-header {
        padding: 15px 0;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    .hero-content #hero-heading {
        font-size: 32px;
    }

    section#hero {
        padding: 40px 0;
    }

    section#hero>.page-container>div p {
        margin-bottom: 25px;
        font-size: 15px;
    }

    section#hero aside>figure>img {
        min-height: 250px;
        border-radius: 15px;
    }

    section#hero .achievement-list {
        padding: 15px;
        border-radius: 15px;
    }

    .secondary-heading {
        font-size: 28px;
    }

    section#how-it-works {
        padding: 50px 0 25px;
    }

    section#how-it-works ol > li {
        min-width: 250px;
        flex: 0 0 75%;
    }

    section#how-it-works ol .step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    section#how-it-works ol .step-number>img {
        width: 36px;
        height: 36px;
    }

    .heading-3 {
        font-size: 20px;
    }

    .qr-code-list {
        padding: 20px;
        margin: 30px 0;
    }

    .qr-code-list .status-list li:not(:first-child):before {
        display: none;
    }

    /* Comparison — tighter on mobile */
    section#comparison {
        padding: 25px 0 50px;
    }

    .comparision-wrapper > .comparison-item {
        min-width: 280px;
        flex: 0 0 88%;
    }

    .comparison-item {
        padding: 20px;
    }

    .comparison-item ul li {
        padding: 15px 0;
        font-size: 15px;
    }

    /* Testimonials */
    section#testimonials {
        padding: 50px 0;
    }

    .testimonial-list > .testimonial-item {
        min-width: 280px;
        flex: 0 0 88%;
        padding: 20px;
    }

    /* Services */
    section#services {
        padding: 50px 0;
    }

    section#services p {
        margin: 0 0 30px;
    }

    .services-list > li {
        min-width: 280px;
        flex: 0 0 88%;
    }

    /* Bag capacity */
    section#bag-capacity {
        padding: 50px 0 25px;
    }

    .bag-guide-content dl {
        flex-flow: column;
    }

    .bag-guide-content dl>dt {
        max-width: 100%;
        padding: 15px;
        justify-content: flex-start;
    }

    .bag-guide-content dl>dd {
        max-width: 100%;
        border-left: none;
        border-top: 1px solid #71717133;
        padding: 15px;
    }

    /* Time saved */
    section#time-saved {
        padding: 25px 0 50px;
    }

    .time-saved-list > li {
        min-width: 110px;
        flex: 0 0 110px;
    }

    .time-saved-list>li b {
        font-size: 14px;
    }

    .time-saved-list>li .total-hour-spent.laundry,
    .time-saved-list>li .total-hour-spent.drying {
        height: 180px;
    }

    .time-saved-list>li .total-hour-spent.folding {
        height: 130px;
    }

    .time-saved-list>li .total-hour-spent.trips {
        height: 100px;
    }

    .time-saved-list>li .total-hour-spent.put-away {
        height: 80px;
    }

    .time-saved-list>li .total-hour-spent.sorting {
        height: 60px;
    }

    /* Guarantee */
    section#guarantee {
        padding: 50px 10px;
    }

    section#guarantee>.page-container .guarantee-content {
        padding: 30px 15px;
    }

    section#guarantee>.page-container .guarantee-content .secondary-heading {
        font-size: 28px;
    }

    section#guarantee>.page-container .guarantee-content ul>li b {
        font-size: 18px;
    }

    /* FAQ */
    section#faq {
        padding: 50px 0;
    }

    section#faq>.page-container details {
        padding: 20px;
    }

    section#faq>.page-container details>summary {
        font-size: 16px;
        gap: 10px;
    }

    /* Get started */
    section#get-started {
        padding: 50px 0;
    }

    section#get-started ul {
        flex-flow: column;
        align-items: center;
        gap: 5px;
    }

    section#get-started ul>li:nth-child(2):before,
    section#get-started ul>li:nth-child(2):after {
        display: none;
    }

    /* App */
    section#app {
        padding: 50px 0;
    }

    section#app .row .mobile-app-image figure {
        max-width: 220px;
    }

    section#app .row .mobile-app-content .resource {
        flex-flow: column;
        gap: 15px;
    }

    section#app .row .mobile-app-content .resource img {
        max-height: 50px;
        width: auto;
    }

    /* Footer — 2-col grid */
    footer.site-footer .footer-top>.footer-menus nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .download-app {
        margin-top: 30px;
    }

    .download-app>a {
        padding: 10px 15px;
    }

    /* Sub-pages */
    .page-hero {
        padding: 40px 0 30px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .section-pad {
        padding: 40px 0;
    }

    .sub-cta-section {
        padding: 50px 0;
    }

    .sub-cta-section .secondary-heading {
        font-size: 28px;
    }

    .form-container {
        padding: 20px;
    }

    .toc-nav {
        padding: 18px 20px;
    }

    .process-steps > li {
        min-width: 220px;
        flex: 0 0 75%;
    }

    .process-step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}