* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #10201b;
    background:
        radial-gradient(circle at top left, rgba(215, 243, 107, 0.18), transparent 34rem),
        linear-gradient(180deg, #f6fbef 0%, #ffffff 42%, #f3f7ef 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 251, 239, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 56, 45, 0.1);
}

.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-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 15px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(18, 56, 45, 0.22);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    line-height: 1.15;
}

.brand small {
    color: #5c7068;
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
    font-weight: 700;
    color: #304840;
}

.main-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
    padding: 11px 17px;
    border-radius: 999px;
    box-shadow: 0 14px 26px rgba(18, 56, 45, 0.2);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--primary);
    border-radius: 14px;
    padding: 11px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 32px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(18, 56, 45, 0.96), rgba(20, 84, 66, 0.94)),
        radial-gradient(circle at 80% 20%, rgba(215, 243, 107, 0.4), transparent 22rem);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 110px;
    width: 380px;
    height: 380px;
    background: rgba(215, 243, 107, 0.18);
    border-radius: 999px;
    filter: blur(8px);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    color: #ffffff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
}

.eyebrow {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 0 rgba(215, 243, 107, 0.65);
    animation: pulse 1.8s infinite;
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(2.7rem, 7vw, 5.9rem);
    line-height: 0.91;
    letter-spacing: -0.08em;
    max-width: 760px;
}

.hero-text {
    font-size: 1.13rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--secondary);
    color: #173127;
    box-shadow: 0 18px 34px rgba(215, 243, 107, 0.26);
}

.btn-light {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

.trust-row {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 720px;
}

.trust-row div {
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-row strong,
.trust-row span {
    display: block;
}

.trust-row strong {
    color: var(--secondary);
    font-size: 1.02rem;
}

.trust-row span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.84rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.inspection-card {
    position: relative;
    margin-left: auto;
    width: min(100%, 420px);
    padding: 26px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 239, 0.94));
    color: #173127;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.inspection-card::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.65;
}

.card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-pill {
    background: #e8f8ba;
    color: #213a17;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.mini-bug {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 16px;
    font-size: 1.5rem;
}

.inspection-card h2 {
    position: relative;
    z-index: 1;
    margin: 32px 0 18px;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.scan-lines {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.scan-lines span {
    height: 16px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(18, 56, 45, 0.12), rgba(18, 56, 45, 0.04));
    overflow: hidden;
    position: relative;
}

.scan-lines span::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(215, 243, 107, 0.9), transparent);
    animation: scan 2.5s infinite;
}

.scan-lines span:nth-child(2) {
    width: 82%;
}

.scan-lines span:nth-child(3) {
    width: 62%;
}

.risk-list {
    display: grid;
    gap: 12px;
}

.risk-list div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
}

.risk-icon {
    color: var(--accent);
    font-size: 0.8rem;
}

.risk-list strong {
    font-size: 0.78rem;
    background: #f1f5e8;
    padding: 5px 8px;
    border-radius: 999px;
}

.floating-note {
    position: absolute;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #173127;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
    animation: floaty 5s ease-in-out infinite;
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note strong {
    font-size: 0.95rem;
}

.floating-note span {
    color: #607069;
    font-size: 0.8rem;
}

.note-one {
    left: 0;
    top: 90px;
}

.note-two {
    right: 18px;
    bottom: 70px;
    animation-delay: 0.8s;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.2;
}

.orb-one {
    width: 90px;
    height: 90px;
    left: 36px;
    bottom: 120px;
}

.orb-two {
    width: 44px;
    height: 44px;
    right: 18px;
    top: 40px;
}

.quick-strip {
    margin-top: -28px;
    position: relative;
    z-index: 3;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(18, 56, 45, 0.12);
    border: 1px solid rgba(18, 56, 45, 0.08);
}

.strip-grid div {
    padding: 18px 12px;
    text-align: center;
    border-radius: 18px;
    background: #f7faef;
    font-weight: 900;
}

.strip-grid span {
    display: block;
    color: var(--primary);
    opacity: 0.5;
    font-size: 0.75rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    color: var(--primary);
    margin-bottom: 12px;
}

.section-heading h2,
.about-panel h2,
.showcase-copy h2,
.faq-intro h2,
.contact-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: #12231d;
}

.section-heading p,
.about-panel p,
.showcase-copy p,
.faq-intro p,
.contact-copy p {
    margin: 0;
    color: #61736b;
    font-size: 1.03rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 20px 50px rgba(18, 56, 45, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(215, 243, 107, 0.35);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(18, 56, 45, 0.13);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #f0f7d9;
    border-radius: 18px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.service-card p {
    color: #61736b;
    margin: 0 0 18px;
    font-size: 0.95rem;
}

.service-card a {
    position: relative;
    z-index: 2;
    font-weight: 900;
    color: var(--primary);
}

.about-section {
    background:
        linear-gradient(135deg, rgba(18, 56, 45, 0.05), rgba(215, 243, 107, 0.16));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.about-panel {
    padding: 36px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 24px 60px rgba(18, 56, 45, 0.08);
}

.check-list {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #33483f;
    font-weight: 800;
}

.check-list span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #183127;
    border-radius: 50%;
    font-weight: 900;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-card {
    min-height: 160px;
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 22px 54px rgba(18, 56, 45, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.trust-card.large {
    grid-row: span 2;
    min-height: 336px;
    background:
        radial-gradient(circle at 80% 20%, rgba(215, 243, 107, 0.35), transparent 12rem),
        var(--primary);
    color: #ffffff;
}

.trust-card.dark {
    background: #152720;
    color: #ffffff;
}

.trust-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.trust-card span {
    margin-top: 9px;
    color: #6b7d75;
}

.trust-card.large span,
.trust-card.dark span {
    color: rgba(255, 255, 255, 0.72);
}

.process-section {
    background: #10251e;
    color: #ffffff;
}

.process-section .section-heading h2 {
    color: #ffffff;
}

.process-section .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.process-section .section-kicker {
    color: var(--secondary);
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.process-step {
    padding: 26px;
    min-height: 250px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.process-step span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--secondary);
    color: #173127;
    font-weight: 900;
    margin-bottom: 26px;
}

.process-step h3 {
    margin: 0 0 10px;
    font-size: 1.23rem;
}

.process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
    align-items: center;
}

.showcase-copy .btn {
    margin-top: 24px;
}

.showcase-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
    gap: 14px;
}

.zone {
    padding: 22px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 22px 54px rgba(18, 56, 45, 0.09);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.zone::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -54px;
    bottom: -54px;
    background: rgba(215, 243, 107, 0.45);
    border-radius: 50%;
}

.zone span {
    position: relative;
    z-index: 1;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.09em;
}

.zone strong {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    line-height: 1.1;
}

.zone-kitchen {
    grid-column: span 3;
    grid-row: span 2;
    background: #f9ffe6;
}

.zone-office {
    grid-column: span 3;
}

.zone-warehouse {
    grid-column: span 2;
}

.zone-home {
    grid-column: span 4;
    background: var(--primary);
    color: #ffffff;
}

.zone-home span {
    color: var(--secondary);
}

.benefits-section {
    padding-top: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 20px 50px rgba(18, 56, 45, 0.08);
}

.benefit-number {
    color: var(--primary);
    font-weight: 900;
    opacity: 0.48;
}

.benefit-card h3 {
    margin: 18px 0 10px;
    font-size: 1.3rem;
}

.benefit-card p {
    margin: 0;
    color: #61736b;
}

.testimonials-section {
    background: #f4f8ed;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 20px 50px rgba(18, 56, 45, 0.08);
}

.stars {
    color: #f2aa31;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.testimonial-card p {
    margin: 0 0 22px;
    color: #455b52;
    font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: #77877f;
    font-size: 0.9rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: 0 16px 38px rgba(18, 56, 45, 0.06);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    text-align: left;
    font: inherit;
    font-weight: 900;
    color: #13251f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.faq-item button::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 20px;
    color: #61736b;
}

.faq-item.active .faq-answer {
    max-height: 180px;
}

.contact-section {
    background:
        radial-gradient(circle at top right, rgba(215, 243, 107, 0.24), transparent 26rem),
        var(--primary);
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.contact-copy h2 {
    color: #ffffff;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-section .section-kicker {
    color: var(--secondary);
}

.contact-details {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.contact-details a,
.contact-details span {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 800;
}

.contact-card {
    padding: 30px;
    border-radius: 32px;
    background: #ffffff;
    color: #12231d;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-card h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.contact-card p {
    margin: 0 0 20px;
    color: #61736b;
}

.fake-form {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.fake-form div {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f3f7ed;
    color: #56675f;
    font-size: 0.94rem;
}

.site-footer {
    background: #0b1915;
    color: #ffffff;
    padding: 34px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.62);
    margin: 8px 0 0;
}

.footer-grid span {
    display: block;
    text-align: right;
    color: rgba(255, 255, 255, 0.68);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    background: #25d366;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 12px rgba(215, 243, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(215, 243, 107, 0);
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(310%);
    }
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 86px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 24px 70px rgba(18, 56, 45, 0.2);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
    }

    .hero::before {
        inset: 16px;
        border-radius: 30px;
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 38px 0;
        gap: 34px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .inspection-card {
        margin: 0 auto;
    }

    .service-grid,
    .process-line,
    .testimonial-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase-board {
        grid-auto-rows: 120px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section-pad {
        padding: 62px 0;
    }

    .brand small {
        display: none;
    }

    .hero::before {
        inset: 8px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 15vw, 4.2rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .trust-row,
    .service-grid,
    .process-line,
    .testimonial-grid,
    .benefits-grid,
    .trust-cards,
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-note,
    .orb {
        display: none;
    }

    .inspection-card {
        border-radius: 26px;
        padding: 20px;
    }

    .risk-list div {
        grid-template-columns: auto 1fr;
    }

    .risk-list strong {
        grid-column: 2;
        justify-self: start;
    }

    .trust-card.large {
        min-height: 220px;
    }

    .showcase-board {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .zone,
    .zone-kitchen,
    .zone-office,
    .zone-warehouse,
    .zone-home {
        grid-column: auto;
        grid-row: auto;
        min-height: 150px;
    }

    .footer-grid {
        display: grid;
    }

    .footer-grid span {
        text-align: left;
    }

    .whatsapp-float {
        left: 18px;
        right: 18px;
        text-align: center;
    }
}