* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #F3F4F6;
    color: #111827;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

.site-header {
    background: #0F172A;
    padding: 22px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
}

.btn {
    display: inline-block;
    background: #16A34A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s;
}

.btn:hover {
    background: #12823b;
    transform: translateY(-2px);
}

.btn.small {
    padding: 10px 18px;
    font-size: 14px;
}

.btn.large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn.dark {
    background: #0F172A;
}

.hero {
    position: relative;
    min-height: 760px;
    background:
        linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
        url('/assets/images/bin-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.launch-badge {
    display: inline-block;
    background: #16A34A;
    color: #FFFFFF;
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 23px;
    max-width: 760px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 35px;
}

.hero h2 span {
    color: #22C55E;
}

.counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 28px;
    border-radius: 16px;
    margin-bottom: 35px;
    backdrop-filter: blur(8px);
}

.counter strong {
    display: block;
    font-size: 38px;
    color: #22C55E;
}

.features {
    padding: 90px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #FFFFFF;
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #D1D5DB;
}

.feature-card h3 {
    color: #16A34A;
    margin-bottom: 14px;
    font-size: 22px;
}

.feature-card p {
    line-height: 1.7;
    color: #374151;
}

.packages {
    background: #FFFFFF;
    padding: 90px 0;
    text-align: center;
}

.packages h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 820px;
    margin: auto;
}

.price-card {
    background: #F3F4F6;
    border: 2px solid #D1D5DB;
    padding: 40px;
    border-radius: 22px;
}

.price-card.featured {
    border-color: #16A34A;
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.18);
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.price {
    font-size: 54px;
    font-weight: 900;
    color: #16A34A;
}

.cta {
    background: #16A34A;
    color: #FFFFFF;
    text-align: center;
    padding: 90px 20px;
}

.cta h2 {
    font-size: 44px;
    margin-bottom: 18px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 35px;
}

.waitlist-page {
    min-height: 760px;
    background:
        linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.88)),
        url('/assets/images/bin-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: #FFFFFF;
}

.waitlist-wrap {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
}

.waitlist-copy h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.waitlist-copy p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-card {
    background: #FFFFFF;
    color: #111827;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-card p {
    color: #4B5563;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

input {
    width: 100%;
    padding: 15px;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #16A34A;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.14);
}

button {
    width: 100%;
    margin-top: 28px;
    padding: 17px;
    border: none;
    border-radius: 12px;
    background: #16A34A;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

button:hover {
    background: #12823b;
}

.message {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-weight: 700;
}

.success {
    background: #DCFCE7;
    color: #166534;
}

.error {
    background: #FEE2E2;
    color: #991B1B;
}

.info {
    background: #DBEAFE;
    color: #1D4ED8;
}

footer {
    background: #0F172A;
    color: #FFFFFF;
    text-align: center;
    padding: 28px;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 44px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .waitlist-wrap {
        grid-template-columns: 1fr;
    }

    .waitlist-copy h1 {
        font-size: 42px;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 18px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 28px;
    }
}

.brand-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.hero-logo {
    max-width: 260px;
    margin-bottom: 25px;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    list-style: none;
    margin-top: 25px;
}

.area-list li {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.top-banner {
    background: #16A34A;
    color: #FFFFFF;
    text-align: center;
    padding: 12px 18px;
    font-weight: 800;
}

.home-hero {
    background:
        linear-gradient(rgba(15, 23, 42, 0.90), rgba(15, 23, 42, 0.90)),
        url('/assets/images/bin-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 100px 0;
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 420px;
    gap: 60px;
    align-items: center;
}

.home-hero-copy h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.home-hero-copy h2 {
    font-size: 38px;
    margin: 30px 0;
}

.home-hero-copy h2 span {
    color: #22C55E;
}

.home-hero-card {
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}

.home-hero-card img {
    max-width: 240px;
    margin-bottom: 20px;
}

.counter.light {
    background: #F3F4F6;
    color: #111827;
    border: 1px solid #D1D5DB;
    margin-bottom: 20px;
}

.ashfield-section,
.early-section,
.about-local {
    padding: 85px 0;
    text-align: center;
    background: #FFFFFF;
}

.ashfield-section h2,
.coming-soon h2,
.early-section h2,
.about-local h2,
.section-title {
    font-size: 42px;
    margin-bottom: 18px;
}

.ashfield-section p,
.section-subtitle,
.about-local p {
    font-size: 19px;
    color: #4B5563;
    max-width: 760px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.area-grid span {
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    border-radius: 14px;
    padding: 15px;
    font-weight: 800;
}

.packages hr {
    border: none;
    border-top: 1px solid #D1D5DB;
    margin: 22px 0;
}

.coming-soon {
    background: #0F172A;
    color: #FFFFFF;
    padding: 90px 0;
    text-align: center;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.future-grid div {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 28px;
    border-radius: 20px;
    text-align: left;
    font-size: 22px;
}

.future-grid strong {
    display: block;
    margin: 10px 0;
}

.future-grid span {
    display: block;
    color: #D1D5DB;
    font-size: 15px;
    line-height: 1.6;
}

.early-section {
    background: #ECFDF5;
}

.early-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    text-align: left;
    align-items: center;
}

.early-wrap p {
    font-size: 20px;
    color: #374151;
    line-height: 1.7;
}

.early-wrap ul {
    list-style: none;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #D1D5DB;
}

.early-wrap li {
    padding: 10px 0;
    font-weight: 800;
}

.early-wrap li::before {
    content: "✔ ";
    color: #16A34A;
}

footer img {
    max-width: 150px;
    margin-bottom: 12px;
}

@media (max-width: 950px) {
    .home-hero-inner,
    .early-wrap {
        grid-template-columns: 1fr;
    }

    .area-grid,
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-hero-copy h1 {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .area-grid,
    .future-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 70px 0;
    }

    .home-hero-copy h1 {
        font-size: 36px;
    }

    .home-hero-copy h2 {
        font-size: 28px;
    }
}

.area-grid a {
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    border-radius: 14px;
    padding: 15px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
}

.area-grid a:hover {
    background: #16A34A;
    color: #FFFFFF;
}