@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: rgba(148, 163, 184, 0.25);
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.container-wide {
    width: min(1480px, 96%);
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.alt-bg {
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.section-title p {
    color: var(--muted);
    font-size: 1.02rem;
}

.section-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.18);
}

.nav {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    position: relative;
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

.logo-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    pointer-events: none;
}

.logo-sparkle::before,
.logo-sparkle::after {
    content: "";
    position: absolute;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.logo-sparkle::before {
    width: 2px;
    height: 10px;
    left: 4px;
    top: 0;
}

.logo-sparkle::after {
    width: 10px;
    height: 2px;
    left: 0;
    top: 4px;
}

.sparkle-1 {
    top: 2px;
    left: 34px;
    animation: sparkleBlink 2.8s infinite ease-in-out;
}

.sparkle-2 {
    top: 34px;
    left: 48px;
    animation: sparkleBlink 2.8s infinite ease-in-out 1.2s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #bfdbfe;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 14px 22px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.22);
    animation: buttonPulse 3.2s infinite ease-in-out;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.28);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(37, 99, 235, 0.18);
    box-shadow: none;
    animation: none;
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.08);
}

.btn-small {
    padding: 10px 16px;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

.hero {
    position: relative;
    padding: 110px 0 90px;
    background:
            radial-gradient(circle at top left, rgba(6, 182, 212, 0.18), transparent 30%),
            radial-gradient(circle at right, rgba(37, 99, 235, 0.16), transparent 25%),
            linear-gradient(135deg, #f8fbff 0%, #eef6ff 45%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: #93c5fd;
    top: -70px;
    right: -100px;
}

.shape-2 {
    width: 220px;
    height: 220px;
    background: #67e8f9;
    left: -70px;
    bottom: 30px;
}

.cleaning-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cleaning-bubbles span {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.25));
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: inset 0 0 12px rgba(255,255,255,0.35);
    animation: bubbleFloat linear infinite;
    opacity: 0.7;
}

.cleaning-bubbles span:nth-child(1) { left: 6%; width: 22px; height: 22px; animation-duration: 11s; animation-delay: 0s; }
.cleaning-bubbles span:nth-child(2) { left: 18%; width: 14px; height: 14px; animation-duration: 8s; animation-delay: 1s; }
.cleaning-bubbles span:nth-child(3) { left: 34%; width: 26px; height: 26px; animation-duration: 12s; animation-delay: 2s; }
.cleaning-bubbles span:nth-child(4) { left: 52%; width: 16px; height: 16px; animation-duration: 9s; animation-delay: 0.5s; }
.cleaning-bubbles span:nth-child(5) { left: 66%; width: 30px; height: 30px; animation-duration: 13s; animation-delay: 1.5s; }
.cleaning-bubbles span:nth-child(6) { left: 78%; width: 18px; height: 18px; animation-duration: 10s; animation-delay: 2.4s; }
.cleaning-bubbles span:nth-child(7) { left: 88%; width: 12px; height: 12px; animation-duration: 7s; animation-delay: 0.8s; }
.cleaning-bubbles span:nth-child(8) { left: 94%; width: 24px; height: 24px; animation-duration: 12s; animation-delay: 3s; }

.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-sparkles span {
    position: absolute;
    width: 14px;
    height: 14px;
    opacity: 0;
    animation: sparkleBlink 3.5s infinite ease-in-out;
}

.hero-sparkles span::before,
.hero-sparkles span::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
    border-radius: 999px;
}

.hero-sparkles span::before {
    width: 2px;
    height: 14px;
    left: 6px;
    top: 0;
}

.hero-sparkles span::after {
    width: 14px;
    height: 2px;
    left: 0;
    top: 6px;
}

.hero-sparkles span:nth-child(1) { top: 18%; left: 14%; animation-delay: 0.2s; }
.hero-sparkles span:nth-child(2) { top: 30%; left: 80%; animation-delay: 1.1s; }
.hero-sparkles span:nth-child(3) { top: 62%; left: 22%; animation-delay: 2s; }
.hero-sparkles span:nth-child(4) { top: 70%; left: 74%; animation-delay: 2.8s; }

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-text {
    max-width: 850px;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 650px;
    margin-bottom: 28px;
}

.hero-badge,
.mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

.hero-badge {
    margin-bottom: 18px;
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary);
}

.mini-badge {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    width: 100%;
    min-height: 52px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-features div {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 600;
    color: var(--dark);
    backdrop-filter: blur(10px);
}

.hero-cards-wrapper {
    position: relative;
    z-index: 2;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(220px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.hero-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px);
    border-radius: 30px;
    padding: 34px 26px 28px;
    box-shadow: var(--shadow);
    animation: floatingCard 5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    min-height: 560px;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 60%;
    height: 250%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            rgba(255,255,255,0.65),
            rgba(255,255,255,0.18),
            transparent
    );
    transform: rotate(18deg);
    animation: sweepShine 5.5s linear infinite;
    pointer-events: none;
}

.hero-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 28px;
    min-height: 210px;
}

.hero-card-top h3 {
    color: var(--dark);
    font-size: 1.45rem;
    line-height: 1.2;
    margin: 0;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-break: break-word;
}

.hero-price {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--primary);
    margin: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-list {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
    flex-grow: 1;
}

.hero-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.55;
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 800;
}

.trust-bar {
    background: var(--dark);
    color: var(--white);
    padding: 18px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.benefits-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    gap: 22px;
}

.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card,
.testimonial-card,
.process-card,
.contact-form,
.contact-info-box,
.stat-card,
.modal-box {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.benefit-card,
.process-card,
.testimonial-card,
.stat-card,
.contact-form,
.contact-info-box {
    position: relative;
    overflow: hidden;
}

.benefit-card::before,
.process-card::before,
.testimonial-card::before,
.stat-card::before,
.contact-form::before,
.contact-info-box::before {
    content: "";
    position: absolute;
    top: -140%;
    left: -35%;
    width: 55%;
    height: 280%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.12),
            transparent
    );
    transform: rotate(18deg);
    transition: 0.8s ease;
    opacity: 0;
    pointer-events: none;
}

.benefit-card:hover::before,
.process-card:hover::before,
.testimonial-card:hover::before,
.stat-card:hover::before,
.contact-form:hover::before,
.contact-info-box:hover::before {
    left: 120%;
    opacity: 1;
}

.benefit-card {
    padding: 28px;
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.13);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(6, 182, 212, 0.12));
    animation: iconBob 3.4s ease-in-out infinite;
}

.benefit-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--muted);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.why-text h2 {
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.why-text p {
    color: var(--muted);
    margin-bottom: 22px;
}

.feature-list {
    display: grid;
    gap: 18px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-check {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 12px;
    font-weight: 800;
}

.feature-item h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    color: var(--muted);
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-card {
    padding: 26px 22px;
    border-radius: 22px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-weight: 600;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-card {
    padding: 28px 24px;
    border-radius: var(--radius);
}

.process-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.process-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--muted);
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    padding: 28px;
    border-radius: var(--radius);
}

.stars {
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.testimonial-card p {
    color: var(--text);
    margin-bottom: 16px;
}

.testimonial-card h4 {
    color: var(--dark);
    font-size: 1rem;
}

.contact-section {
    background:
            radial-gradient(circle at top right, rgba(6, 182, 212, 0.15), transparent 20%),
            linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-info-box,
.contact-form,
.modal-box {
    padding: 30px;
    border-radius: 24px;
}

.contact-info-box h2,
.modal-header h2 {
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.contact-info-box > p,
.modal-header p {
    color: var(--muted);
    margin-bottom: 24px;
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-info p {
    color: var(--text);
    font-size: 1rem;
}

.contact-form,
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    color: var(--dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.7);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
    transform: translateY(-1px);
}

#quoteService {
    background: #f8fbff;
    color: var(--primary-dark);
    font-weight: 700;
}

.form-message {
    font-weight: 700;
    min-height: 24px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-content h3 {
    margin-bottom: 6px;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    background: var(--white);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #eef4ff;
    color: var(--dark);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    background: #dbeafe;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(-45vh) translateX(16px) scale(1);
    }
    100% {
        transform: translateY(-100vh) translateX(-12px) scale(1.08);
        opacity: 0;
    }
}

@keyframes sparkleBlink {
    0%, 100% {
        opacity: 0;
        transform: scale(0.6) rotate(0deg);
    }
    30% {
        opacity: 1;
        transform: scale(1) rotate(45deg);
    }
    60% {
        opacity: 0.7;
        transform: scale(0.85) rotate(90deg);
    }
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes sweepShine {
    0% {
        left: -60%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 120%;
        opacity: 0.9;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 12px 25px rgba(37, 99, 235, 0.22);
    }
    50% {
        box-shadow: 0 16px 32px rgba(37, 99, 235, 0.34);
    }
}

@keyframes iconBob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 1600px) {
    .hero-cards-grid {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
    }
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-cards-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

@media (max-width: 760px) {
    .section {
        padding: 72px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        right: 5%;
        width: min(260px, 90vw);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.98);
        box-shadow: 0 20px 35px rgba(2, 6, 23, 0.24);
    }

    .nav-links.show {
        display: flex;
    }

    .hero {
        padding: 90px 0 70px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits-grid,
    .process-grid,
    .stats-box,
    .trust-items {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 46px;
    }

    .sparkle-1 {
        left: 26px;
    }

    .sparkle-2 {
        left: 40px;
    }

    .modal-box {
        padding: 24px 18px;
    }

    .hero-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .hero-card-top {
        min-height: auto;
        gap: 16px;
    }

    .hero-card-top h3 {
        font-size: 1.3rem;
        min-height: auto;
    }

    .hero-price {
        font-size: 1.9rem;
    }
}

@media (max-width: 600px) {
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }

    .container-wide {
        width: min(1120px, 92%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}