* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.72)),
        url('/assets/images/hero-cleaning.jpg') center center / cover no-repeat;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.navbar {
    padding: 28px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.nav-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 80px;
    max-width: 760px;
}

.eyebrow,
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin-bottom: 36px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(20, 184, 166, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-full {
    width: 100%;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 24px;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

/* Services */
.services {
    padding: 110px 0;
    background: #f8fafc;
}

.services h2,
.trust-section h2,
.quote h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.services h2 {
    max-width: 620px;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: #475569;
}

/* Trust Section */
.trust-section {
    padding: 110px 0;
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.trust-list {
    display: grid;
    gap: 24px;
}

.trust-list div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
}

.trust-list strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-list span {
    color: #475569;
}

/* Quote Form */
.quote {
    padding: 110px 0;
    background: #f8fafc;
}

.quote-box {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.quote-box h2 {
    margin-bottom: 32px;
}

input,
textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 18px;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    font: inherit;
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #14b8a6;
}

textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: #020617;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    padding: 40px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        width: min(1120px, calc(100% - 32px));
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 20px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .quote-box {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}