:root {
    --green: #0e8f55;
    --green-dark: #087043;
    --green-soft: #eaf7f0;
    --ink: #14221b;
    --muted: #64736b;
    --line: #dce6e0;
    --white: #ffffff;
    --soft: #f5f8f6;
    --shadow: 0 18px 45px rgba(15, 45, 30, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    font-weight: 900;
    font-size: 22px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-size: 18px;
}

.brand-text small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    padding: 10px 11px;
    border-radius: 9px;
    color: #33443b;
    font-size: 14px;
    font-weight: 650;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-dark);
    background: var(--green-soft);
}

.main-nav .nav-cta {
    color: white;
    background: var(--green);
    margin-left: 4px;
}

.main-nav .nav-cta:hover {
    color: white;
    background: var(--green-dark);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    border-radius: 9px;
    padding: 8px 12px;
    font-size: 22px;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 100px;
    background:
        radial-gradient(circle at 84% 18%, rgba(14, 143, 85, 0.13), transparent 28%),
        linear-gradient(180deg, #fbfdfc 0%, #ffffff 100%);
}

.hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -190px;
    border: 60px solid rgba(14, 143, 85, 0.05);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow.light {
    color: #c9f2dc;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero-lead,
.page-hero p {
    max-width: 760px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 21px;
    border-radius: 10px;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: white;
    background: var(--green);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    border: 1px solid var(--line);
    background: white;
}

.btn-secondary:hover {
    background: var(--soft);
}

.btn-light {
    color: var(--green-dark);
    background: white;
    flex-shrink: 0;
}

.hero-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(14, 143, 85, 0.17);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.signal-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 35px;
    font-weight: 900;
}

.hero-card h2 {
    margin: 22px 0 8px;
    font-size: 27px;
}

.hero-card > p {
    color: var(--muted);
}

.mini-stats {
    display: grid;
    gap: 1px;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--line);
}

.mini-stats div {
    padding: 16px;
    background: white;
}

.mini-stats strong,
.mini-stats span {
    display: block;
}

.mini-stats span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 90px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 38px;
}

.section-heading h2,
.split h2,
.cta-box h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-heading p,
.split > div > p,
.cta-box p {
    color: var(--muted);
}

.cards {
    display: grid;
    gap: 22px;
}

.cards.three {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 143, 85, 0.35);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 900;
}

.service-card h3 {
    margin: 19px 0 8px;
    font-size: 22px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--green-dark);
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 17px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.feature > span {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.feature h3 {
    margin: 0;
    font-size: 19px;
}

.feature p {
    margin: 5px 0 0;
    color: var(--muted);
}

.page-hero {
    padding: 85px 0;
    background:
        radial-gradient(circle at 90% 20%, rgba(14, 143, 85, 0.12), transparent 22%),
        var(--soft);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(38px, 5vw, 62px);
}

.cta-section {
    padding: 40px 0 90px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 22px;
    color: white;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.cta-box p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.79);
}

.button-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #101b15;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0 42px;
}

.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 13px;
}

.footer-grid p {
    max-width: 430px;
    color: #aebcb4;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    color: #c5d1ca;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #94a39b;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: white;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 13px;
    }

    .main-nav .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards.three {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding: 72px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .hero-lead,
    .page-hero p {
        font-size: 17px;
    }

    .section {
        padding: 65px 0;
    }

    .page-hero {
        padding: 60px 0;
    }

    .hero-card,
    .service-card {
        padding: 24px;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* Fibre package cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.package-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 2px solid var(--green);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(15, 45, 30, 0.06);
}

.package-speed {
    color: var(--green-dark);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.package-card h3 {
    margin: 2px 0 20px;
    font-size: 19px;
}

.package-features {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
    flex: 1;
}

.package-features li {
    position: relative;
    padding: 10px 0 10px 27px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.package-button {
    width: 100%;
}

.header-logo {
    width: 210px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
    display: block;
}

.package-price {
    margin: 5px 0 20px;
    color: #087043;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.package-price span {
    display: block;
    margin-top: -3px;
    color: #64736b;
    font-size: 13px;
    font-weight: 600;
}

.wireless-disclaimers {
    max-width: 1160px;
    margin: 40px auto 70px;
    padding: 0 20px;
}

.wireless-disclaimers > h2 {
    margin-bottom: 25px;
    font-size: 32px;
    text-align: center;
}

.disclaimer-box {
    margin-bottom: 18px;
    padding: 25px 28px;
    background: #ffffff;
    border: 1px solid #dce6e0;
    border-left: 5px solid #0e8f55;
    border-radius: 12px;
}

.disclaimer-box h3 {
    margin: 0 0 10px;
    color: #087043;
    font-size: 21px;
}

.disclaimer-box p {
    margin: 8px 0;
    color: #64736b;
    line-height: 1.7;
}

@media (max-width: 640px) {

    .wireless-disclaimers {
        margin: 30px auto 50px;
        padding: 0 14px;
    }

    .wireless-disclaimers > h2 {
        font-size: 27px;
    }

    .disclaimer-box {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .header-logo {
        width: 170px;
        max-height: 55px;
    }
}

@media (max-width: 980px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}
