* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #f8fafc;
    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(248, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    background:
        linear-gradient(135deg, var(--accent), #fb923c),
        linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.25);
}

.brand strong {
    display: block;
    color: var(--primary);
    line-height: 1.1;
}

.brand small {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #334155;
    font-size: 0.95rem;
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--accent);
}

.nav-cta {
    color: #fff !important;
    background: var(--primary);
    padding: 11px 16px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(23, 37, 84, 0.16);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto;
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 34%),
        radial-gradient(circle at 80% 15%, rgba(15, 118, 110, 0.16), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #eef6f4 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    background: rgba(15, 118, 110, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.showcase-copy h2,
.faq-intro h2,
.final-cta h2 {
    color: var(--primary);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin: 20px 0;
}

.hero p {
    max-width: 620px;
    color: #475569;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 18px 32px rgba(249, 115, 22, 0.28);
}

.btn-light {
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.hero-stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 600px;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.3rem;
}

.hero-stats span {
    color: #64748b;
    font-size: 0.86rem;
}

.hero-visual {
    min-height: 540px;
    position: relative;
    display: grid;
    place-items: center;
}

.storage-card {
    position: relative;
    width: min(430px, 100%);
    aspect-ratio: 0.86;
    border-radius: 34px;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(23, 37, 84, 0.96), rgba(15, 118, 110, 0.92)),
        var(--primary);
    box-shadow:
        0 35px 70px rgba(15, 23, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.storage-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.28);
    top: -90px;
    right: -90px;
}

.storage-roof {
    position: relative;
    z-index: 2;
    height: 76px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.9) 0 20px,
            rgba(255, 255, 255, 0.7) 20px 38px
        );
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
    border-radius: 16px 16px 8px 8px;
    margin-bottom: 22px;
}

.unit-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.unit-row.small {
    grid-template-columns: repeat(4, 1fr);
}

.unit-row span {
    height: 132px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(226, 232, 240, 0.95));
    position: relative;
    overflow: hidden;
}

.unit-row.small span {
    height: 92px;
}

.unit-row span::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-top: 4px solid rgba(23, 37, 84, 0.18);
    border-bottom: 4px solid rgba(23, 37, 84, 0.18);
}

.lock-badge {
    position: absolute;
    z-index: 3;
    left: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 12px 14px;
    backdrop-filter: blur(10px);
}

.lock-badge span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--accent);
    border-radius: 12px;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(15, 23, 42, 0.08);
    max-width: 220px;
}

.floating-card strong {
    display: block;
    color: var(--primary);
}

.floating-card span {
    color: #64748b;
    font-size: 0.86rem;
}

.card-one {
    top: 42px;
    left: 0;
}

.card-two {
    right: 0;
    bottom: 78px;
}

.trust-strip {
    padding: 22px 0;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-grid div {
    padding: 8px 0;
}

.trust-grid strong {
    display: block;
    color: var(--primary);
}

.trust-grid span {
    color: #64748b;
    font-size: 0.9rem;
}

.section {
    padding: 84px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.about-copy h2,
.showcase-copy h2,
.faq-intro h2,
.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    margin: 16px 0;
}

.section-heading p,
.about-copy p,
.showcase-copy p,
.faq-intro p,
.final-cta p {
    color: #64748b;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.process-card,
.testimonial-card,
.unit-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.06);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    right: -70px;
    bottom: -70px;
    background: rgba(249, 115, 22, 0.12);
}

.icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(249, 115, 22, 0.12);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card h3,
.process-card h3,
.unit-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p,
.process-card p,
.unit-card p,
.testimonial-card p {
    color: #64748b;
}

.service-card ul {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 9px;
}

.service-card li {
    color: #334155;
    font-size: 0.94rem;
}

.service-card li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: 900;
    margin-right: 8px;
}

.about-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.about-grid,
.showcase-grid,
.faq-grid,
.final-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.yard-map {
    position: relative;
    min-height: 430px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(23, 37, 84, 0.88)),
        var(--primary);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.yard-map::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 24px;
}

.gate,
.camera,
.guard {
    position: absolute;
    z-index: 3;
    background: #fff;
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.gate {
    top: 28px;
    left: 28px;
}

.camera {
    top: 28px;
    right: 28px;
}

.guard {
    bottom: 28px;
    left: 28px;
}

.lane {
    position: absolute;
    left: 52px;
    right: 52px;
    height: 26px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
}

.lane-one {
    top: 160px;
}

.lane-two {
    bottom: 135px;
}

.block {
    position: absolute;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    border-radius: 18px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(249, 115, 22, 0.95) 0 22px,
            rgba(251, 146, 60, 0.95) 22px 44px
        );
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.block-a {
    width: 150px;
    height: 82px;
    left: 56px;
    top: 210px;
}

.block-b {
    width: 180px;
    height: 82px;
    right: 56px;
    top: 104px;
}

.block-c {
    width: 170px;
    height: 82px;
    right: 80px;
    bottom: 50px;
}

.check-list {
    margin-top: 26px;
    display: grid;
    gap: 16px;
}

.check-list div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 16px;
}

.check-list span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--secondary);
    border-radius: 999px;
    font-weight: 900;
}

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    position: relative;
    min-height: 230px;
}

.step-number {
    display: inline-block;
    color: rgba(23, 37, 84, 0.16);
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
}

.showcase-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.12), transparent 26%),
        #f8fafc;
}

.unit-cards {
    display: grid;
    gap: 18px;
}

.unit-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    column-gap: 20px;
    align-items: center;
}

.unit-card span {
    display: grid;
    place-items: center;
    min-height: 72px;
    border-radius: 18px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--secondary);
    font-weight: 900;
}

.unit-card.featured {
    background: var(--primary);
}

.unit-card.featured h3,
.unit-card.featured p {
    color: #fff;
}

.unit-card.featured span {
    background: var(--accent);
    color: #fff;
}

.text-link {
    display: inline-block;
    margin-top: 22px;
    color: var(--accent);
    font-weight: 900;
}

.testimonials-section {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-card strong {
    color: var(--primary);
}

.faq-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.faq-grid {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 20px;
    color: var(--primary);
    font-weight: 900;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #64748b;
}

.faq-item.active .faq-answer {
    max-height: 160px;
}

.final-cta {
    padding: 78px 0;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.25), transparent 34%),
        linear-gradient(135deg, var(--primary), #0f172a);
    color: #fff;
}

.final-cta .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.final-cta h2,
.final-cta p {
    color: #fff;
}

.contact-panel {
    display: grid;
    gap: 14px;
}

.contact-panel a {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-panel a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.contact-panel span {
    display: block;
    opacity: 0.75;
    font-size: 0.88rem;
}

.contact-panel strong {
    display: block;
    margin-top: 4px;
    font-size: 1.05rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    height: 48px;
    border-radius: 999px;
    color: #fff;
    background: #16a34a;
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(22, 163, 74, 0.32);
}

.site-footer {
    padding: 24px 0;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .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: 12px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 12px;
        border-radius: 14px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 6px;
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .final-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .trust-grid,
    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-one {
        left: 16px;
    }

    .card-two {
        right: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding-top: 48px;
    }

    .hero-actions,
    .footer-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-stats,
    .trust-grid,
    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 400px;
    }

    .storage-card {
        padding: 22px;
        border-radius: 28px;
    }

    .unit-row span {
        height: 100px;
    }

    .unit-row.small span {
        height: 72px;
    }

    .lock-badge {
        left: 22px;
        bottom: 22px;
    }

    .floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        margin-top: 12px;
    }

    .hero-visual {
        display: block;
    }

    .section {
        padding: 64px 0;
    }

    .yard-map {
        min-height: 360px;
    }

    .block-a {
        left: 36px;
        width: 120px;
    }

    .block-b {
        right: 36px;
        width: 135px;
    }

    .block-c {
        right: 44px;
        width: 140px;
    }

    .unit-card {
        grid-template-columns: 1fr;
    }

    .unit-card span {
        width: 96px;
        margin-bottom: 14px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        min-width: 116px;
    }
}