* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #12313a;
    background: #f7fbfc;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 251, 252, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(21, 94, 117, 0.12);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), #0891b2);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1px;
    box-shadow: 0 14px 30px rgba(21, 94, 117, 0.24);
}

.brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: #5b7680;
    font-size: 0.76rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
    color: #345963;
}

.site-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 11px 17px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(21, 94, 117, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(18, 49, 58, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
    border-radius: 2px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 60px;
    background:
        radial-gradient(circle at 10% 20%, rgba(224, 247, 250, 0.9), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.16), transparent 28%),
        linear-gradient(180deg, #f7fbfc, #eefafd);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 46px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
}

.hero h1,
.section-heading h2,
.about-content h2,
.showcase-content h2,
.faq-intro h2,
.final-card h2 {
    line-height: 1.05;
    color: #0d2d36;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    max-width: 780px;
}

.hero-text {
    margin-top: 24px;
    max-width: 620px;
    font-size: 1.12rem;
    color: #486a74;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(21, 94, 117, 0.24);
}

.btn-outline {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(21, 94, 117, 0.14);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
    max-width: 520px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(21, 94, 117, 0.1);
    box-shadow: 0 18px 50px rgba(18, 49, 58, 0.06);
}

.hero-stats strong {
    display: block;
    font-size: 1.55rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: #5b7680;
}

.hero-card {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}

.washer-graphic {
    position: relative;
    width: min(380px, 86vw);
    height: 440px;
    border-radius: 46px;
    background:
        linear-gradient(145deg, #ffffff, #e4f9fb);
    box-shadow:
        0 40px 90px rgba(18, 49, 58, 0.16),
        inset 0 -12px 30px rgba(21, 94, 117, 0.06);
    border: 1px solid rgba(21, 94, 117, 0.12);
}

.washer-top {
    position: absolute;
    left: 34px;
    top: 32px;
    width: calc(100% - 68px);
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), #0e7490);
}

.washer-top::before {
    content: "";
    position: absolute;
    right: 22px;
    top: 21px;
    width: 90px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.washer-door {
    position: absolute;
    left: 50%;
    top: 148px;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), rgba(224, 247, 250, 0.8) 42%, rgba(21, 94, 117, 0.16) 43%, rgba(21, 94, 117, 0.05) 70%);
    border: 16px solid #d8f4f7;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(21, 94, 117, 0.12);
}

.water-wave {
    position: absolute;
    left: -40px;
    bottom: 36px;
    width: 310px;
    height: 90px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.45), rgba(34, 211, 238, 0.35));
    border-radius: 45% 55% 50% 45%;
    animation: waveMove 4s ease-in-out infinite;
}

.washer-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.washer-controls span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.22);
}

.washer-controls span:nth-child(2) {
    background: var(--primary);
}

.washer-controls span:nth-child(3) {
    background: #22c55e;
}

.floating-ticket {
    position: absolute;
    padding: 15px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 94, 117, 0.12);
    box-shadow: 0 24px 60px rgba(18, 49, 58, 0.14);
    backdrop-filter: blur(12px);
}

.floating-ticket strong {
    display: block;
    color: #0d2d36;
}

.floating-ticket span {
    color: #5b7680;
    font-size: 0.86rem;
}

.ticket-one {
    left: 0;
    top: 108px;
    animation: floatY 4s ease-in-out infinite;
}

.ticket-two {
    right: 0;
    bottom: 92px;
    animation: floatY 4.8s ease-in-out infinite;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.18);
    border: 1px solid rgba(21, 94, 117, 0.08);
}

.bubble-one {
    width: 160px;
    height: 160px;
    left: -56px;
    top: 170px;
}

.bubble-two {
    width: 92px;
    height: 92px;
    right: 7%;
    top: 120px;
}

.trust-strip {
    padding: 22px 0;
    background: var(--primary);
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.92rem;
}

.section {
    padding: 86px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.showcase-content h2,
.faq-intro h2,
.final-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.about-content p,
.showcase-content p,
.faq-intro p,
.final-card p {
    margin-top: 16px;
    color: #55727c;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 270px;
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(21, 94, 117, 0.1);
    box-shadow: 0 24px 70px rgba(18, 49, 58, 0.07);
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--secondary);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
    background: #ecfeff;
    font-size: 1.7rem;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: #0d2d36;
    font-size: 1.2rem;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: #5a7680;
    font-size: 0.94rem;
}

.service-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.84rem;
}

.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 54px;
}

.about-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    border-radius: 44px;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 30%),
        linear-gradient(135deg, #e0f7fa, #ffffff);
    overflow: hidden;
}

.fold-stack {
    width: min(320px, 78vw);
}

.fold-stack span {
    display: block;
    height: 72px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #dff7fb);
    box-shadow: 0 18px 36px rgba(18, 49, 58, 0.08);
    border: 1px solid rgba(21, 94, 117, 0.08);
}

.fold-stack span:nth-child(2) {
    width: 86%;
    margin-left: auto;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.fold-stack span:nth-child(3) {
    width: 92%;
    background: linear-gradient(135deg, #ecfeff, #ffffff);
}

.fold-stack span:nth-child(4) {
    width: 76%;
    margin-left: auto;
    background: linear-gradient(135deg, #fef3c7, #ffffff);
}

.quality-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(21, 94, 117, 0.24);
}

.quality-badge strong,
.quality-badge small {
    display: block;
}

.quality-badge small {
    margin-top: 4px;
    opacity: 0.82;
}

.check-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.check-list div {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #f5fbfc;
    border: 1px solid rgba(21, 94, 117, 0.08);
}

.check-list span {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
}

.check-list p {
    margin: 0;
}

.process {
    background:
        linear-gradient(180deg, #f7fbfc, #ecfeff);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-card {
    padding: 32px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(21, 94, 117, 0.1);
    box-shadow: 0 24px 70px rgba(18, 49, 58, 0.07);
}

.step-number {
    display: inline-flex;
    margin-bottom: 36px;
    color: var(--accent);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.process-card h3 {
    color: #0d2d36;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.process-card p {
    color: #5a7680;
}

.showcase {
    background: #0d2d36;
    color: #ffffff;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 42px;
}

.showcase-content h2 {
    color: #ffffff;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.72);
}

.showcase .eyebrow {
    color: #a5f3fc;
}

.package-list {
    display: grid;
    gap: 16px;
}

.package-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.package-card.featured {
    background: #ffffff;
    color: #0d2d36;
}

.package-card h3 {
    margin-bottom: 6px;
}

.package-card p {
    color: inherit;
    opacity: 0.72;
}

.package-card strong {
    white-space: nowrap;
    color: var(--accent);
    font-size: 1.1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(21, 94, 117, 0.1);
    box-shadow: 0 24px 70px rgba(18, 49, 58, 0.07);
}

.testimonial-card p {
    color: #42646e;
    font-size: 1.02rem;
}

.testimonial-card div {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(21, 94, 117, 0.1);
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: #0d2d36;
}

.testimonial-card span {
    color: #6b8790;
    font-size: 0.88rem;
}

.faq {
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 38px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 104px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 24px;
    background: #f5fbfc;
    border: 1px solid rgba(21, 94, 117, 0.1);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    color: #0d2d36;
    cursor: pointer;
    padding: 22px 24px;
    text-align: left;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.faq-item button::after {
    content: "+";
    color: var(--primary);
    font-size: 1.3rem;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: #5a7680;
}

.final-cta {
    padding: 86px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.16), transparent 30%),
        linear-gradient(135deg, var(--primary), #083344);
}

.final-card {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: center;
    padding: 42px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.18);
}

.final-card h2 {
    color: #ffffff;
}

.final-card p {
    color: rgba(255, 255, 255, 0.78);
}

.final-card .eyebrow {
    color: #a5f3fc;
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 28px;
    background: #ffffff;
}

.contact-panel a:not(.btn) {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f5fbfc;
    color: #0d2d36;
    font-weight: 800;
    word-break: break-word;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #22c55e;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(34, 197, 94, 0.32);
}

.whatsapp-float span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.site-footer {
    padding: 28px 0;
    background: #082f3a;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
        border-radius: 45% 55% 50% 45%;
    }

    50% {
        transform: translateX(28px) rotate(3deg);
        border-radius: 55% 45% 45% 55%;
    }
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .final-card {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 480px;
    }

    .service-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 84px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 24px 60px rgba(18, 49, 58, 0.16);
        border: 1px solid rgba(21, 94, 117, 0.1);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 6px;
    }

    .hero {
        padding: 58px 0 40px;
    }

    .hero-stats,
    .trust-grid,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        text-align: left;
    }

    .hero-card {
        min-height: 430px;
    }

    .washer-graphic {
        height: 400px;
    }

    .washer-door {
        width: 190px;
        height: 190px;
    }

    .floating-ticket {
        position: static;
        margin-top: 14px;
        width: 100%;
    }

    .ticket-one,
    .ticket-two {
        animation: none;
    }

    .hero-card {
        display: block;
    }

    .package-card,
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-card {
        padding: 28px;
        border-radius: 30px;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .brand small {
        display: none;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .about-visual {
        min-height: 350px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}