* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #263238;
    background-color: #f5f7f6;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    hyphens: auto;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4caf50;
}

.nav-toggle {
    border: none;
    background: #e8f5e9;
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.22rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle-line {
    width: 20px;
    height: 2px;
    background-color: #2e7d32;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
    background-color: #c8e6c9;
    transform: translateY(-1px);
}

.main-nav {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 64px;
    right: 1.5rem;
    left: 1.5rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav li+li {
    border-top: 1px solid #eceff1;
}

.main-nav a {
    display: block;
    padding: 0.9rem 1.3rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #37474f;
}

.main-nav a.active {
    color: #4caf50;
}

.main-nav a:hover {
    background-color: #f1f8e9;
    color: #2e7d32;
}

.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
}

.nav-open .main-nav ul {
    transform: translateY(0);
    opacity: 1;
}

.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

main {
    flex: 1 0 auto;
}

.hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at top left, #e3f2fd 0, #e3f9e5 40%, #f5f7f6 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #1b5e20;
}

.hero-content p {
    margin: 0 0 1.5rem;
    font-size: 0.98rem;
    color: #455a64;
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.78rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}

.btn-primary {
    background-color: #4caf50;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(76, 175, 80, 0.35);
}

.btn-primary:hover {
    background-color: #43a047;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.45);
}

.btn-secondary {
    background-color: #ffffff;
    border-color: #c8e6c9;
    color: #2e7d32;
}

.btn-secondary:hover {
    background-color: #e8f5e9;
    border-color: #81c784;
}

.btn-outline {
    background-color: transparent;
    border-color: #4caf50;
    color: #2e7d32;
}

.btn-outline:hover {
    background-color: #e8f5e9;
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    font-size: 0.85rem;
    color: #455a64;
}

.hero-meta-item i {
    color: #4caf50;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.hero-image {
    border-radius: 24px;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
    transform-origin: center;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-lawn-image {
    background-image: url("../images/hero-lawn.jpg");
}

.hero-image-wrapper:hover .hero-image {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.hero-badge {
    position: absolute;
    bottom: -18px;
    left: 12px;
    background-color: #ffffff;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    font-size: 0.78rem;
}

.hero-badge span {
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-badge strong {
    color: #37474f;
}

.section-intro {
    text-align: left;
    margin-bottom: 2rem;
}

.section-intro h2 {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
    color: #1b5e20;
}

.section-intro p {
    margin: 0;
    color: #546e7a;
    font-size: 0.96rem;
    max-width: 32rem;
}

.approach {
    padding: 3rem 0 2.5rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.approach-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem 1rem;
    align-items: flex-start;
}

.approach-card i {
    font-size: 1.5rem;
    color: #4caf50;
    padding: 0.5rem;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #e8f5e9, #e3f2fd);
}

.approach-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #2e7d32;
}

.approach-card p {
    grid-column: 1/-1;
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: #546e7a;
}

.services-preview {
    padding: 3rem 0 2.5rem;
    background-color: #e8f5e9;
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-mowing-image {
    background-image: url("../images/service-mowing.jpg");
}

.service-fertilizing-image {
    background-image: url("../images/service-fertilizing.jpg");
}

.service-trimming-image {
    background-image: url("../images/service-trimming.jpg");
}

.service-content {
    padding: 1.3rem 1.2rem 1.4rem;
}

.service-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: #1b5e20;
}

.service-content p {
    margin: 0 0 0.7rem;
    font-size: 0.92rem;
    color: #546e7a;
}

.service-content ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #546e7a;
    font-size: 0.9rem;
}

.service-content li {
    margin-bottom: 0.25rem;
}

.plans {
    padding: 3rem 0 2.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.3rem;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.plan-card-featured {
    border-color: #4caf50;
    box-shadow: 0 14px 36px rgba(76, 175, 80, 0.18);
}

.plan-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: #1b5e20;
}

.plan-card p {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    color: #546e7a;
}

.plan-card ul {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #455a64;
}

.plan-note {
    font-size: 0.82rem;
    color: #78909c;
}

.why-us {
    padding: 3rem 0 2.8rem;
    background: linear-gradient(135deg, #e3f2fd 0, #e8f5e9 55%, #fff3e0 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.3rem;
}

.why-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 1.2rem 1.2rem 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-item i {
    font-size: 1.6rem;
    color: #4caf50;
    margin-bottom: 0.6rem;
    display: inline-block;
    transition: transform 0.2s ease;
}

.why-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #1b5e20;
}

.why-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #546e7a;
}

.why-item:hover i {
    transform: translateY(-2px) scale(1.08);
}

.contact-cta {
    padding: 20px;
}

.contact-cta-inner {
    background: linear-gradient(135deg, #4caf50 0, #81d4fa 100%);
    border-radius: 22px;
    padding: 2rem 1.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr);
    gap: 1.4rem;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.contact-text h2 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
}

.contact-text p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    max-width: 30rem;
}

.contact-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-detail i {
    color: #e8f5e9;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    justify-content: center;
}

.contact-actions .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.contact-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
    padding: 20px;
    background-color: #263238;
    color: #eceff1;
    margin-top: 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 2rem;
    padding: 2.2rem 0 1.8rem;
    font-size: 0.9rem;
}

.footer-brand p {
    margin: 0.7rem 0 0;
    color: #b0bec5;
    font-size: 0.86rem;
    max-width: 20rem;
}

.footer-links h3,
.footer-contact h3 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li+li {
    margin-top: 0.25rem;
}

.footer-links a {
    color: #cfd8dc;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: #81d4fa;
}

.footer-contact p {
    margin: 0 0 0.3rem;
    color: #cfd8dc;
    font-size: 0.88rem;
}

.footer-contact a {
    color: #e0f2f1;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #e0f7fa;
    font-size: 0.85rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background-color: #4caf50;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid rgba(207, 216, 220, 0.18);
    padding: 0.8rem 0;
    font-size: 0.78rem;
    color: #b0bec5;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.page-hero {
    padding: 3rem 0 2.2rem;
    background: radial-gradient(circle at top left, #e3f2fd 0, #e8f5e9 45%, #f5f7f6 100%);
    text-align: left;
}

.page-hero h1 {
    margin: 0 0 0.7rem;
    font-size: 1.4rem;
    color: #1b5e20;
}

.page-hero p {
    margin: 0;
    font-size: 0.96rem;
    color: #546e7a;
    max-width: 34rem;
}

.small-hero {
    padding-bottom: 1.8rem;
}

.service-section {
    padding: 2.5rem 0;
}

.service-section.alt {
    background-color: #f1f8e9;
}

.service-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 1.6rem;
    align-items: center;
}

.service-section h2 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    color: #1b5e20;
}

.service-section p {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    color: #546e7a;
}

.service-section ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #455a64;
}

.service-section li {
    margin-bottom: 0.25rem;
}

.service-large-image {
    height: 200px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.about-team-image {
    background-image: url("../images/about-team.jpg");
}

.contact-garden-image {
    background-image: url("../images/contact-garden.jpg");
}

.service-cta {
    padding: 2.8rem 0 3rem;
    text-align: center;
    background-color: #e8f5e9;
}

.service-cta h2 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    color: #1b5e20;
}

.service-cta p {
    margin: 0 0 1.1rem;
    font-size: 0.96rem;
    color: #546e7a;
}

.about-story,
.about-values,
.about-sustainability,
.about-cta {
    padding: 2.5rem 0;
}

.about-values {
    background-color: #f1f8e9;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 1.7rem;
    align-items: center;
}

.about-text h2 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    color: #1b5e20;
}

.about-text p {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    color: #546e7a;
}

.about-media {
    display: grid;
    gap: 0.7rem;
}

.about-image {
    height: 220px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.about-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: #33691e;
}

.about-highlight i {
    color: #4caf50;
}

.values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
}

.value-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.1rem 1rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.value-card i {
    font-size: 1.4rem;
    color: #4caf50;
    margin-bottom: 0.5rem;
}

.value-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #1b5e20;
}

.value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #546e7a;
}

.about-cta {
    text-align: center;
    background: radial-gradient(circle at top, #e3f2fd 0, #e8f5e9 40%, #f5f7f6 90%);
}

.about-cta h2 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    color: #1b5e20;
}

.about-cta p {
    margin: 0 0 1.2rem;
    font-size: 0.95rem;
    color: #546e7a;
}

.contact-section {
    padding: 2.5rem 0 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 2rem;
}

.contact-form-wrapper h2,
.contact-info h2 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    color: #1b5e20;
}

.contact-info p {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    color: #546e7a;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.4rem 1.3rem 1.5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.form-field {
    margin-bottom: 0.9rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #37474f;
}

.form-field input,
.form-field textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #cfd8dc;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #263238;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.18);
    background-color: #ffffff;
}

.checkbox-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem 0.6rem;
    align-items: flex-start;
}

.checkbox-field input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
}

.checkbox-field label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #546e7a;
}

.form-note {
    margin: 0.7rem 0 0;
    font-size: 0.8rem;
    color: #78909c;
}

.contact-info .contact-details {
    margin: 1rem 0 1.2rem;
}

.contact-map h3 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
    color: #1b5e20;
}

.map-embed iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
}

.map-link-text {
    margin: 0.4rem 0 0;
    font-size: 0.86rem;
}

.map-link-text a {
    color: #1e88e5;
}

.thankyou-section {
    padding: 20px;
}

.thankyou-inner {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    max-width: 520px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #e8f5e9, #e3f2fd);
    color: #4caf50;
    font-size: 1.8rem;
}

.thankyou-section h2 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    color: #1b5e20;
}

.thankyou-section p {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: #546e7a;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
}

.policy-section {
    padding: 2.6rem 0 3rem;
    background-color: #fafafa;
}

.policy-content {
    max-width: 720px;
    font-size: 0.95rem;
    color: #455a64;
}

.policy-content h2 {
    margin: 1.4rem 0 0.5rem;
    font-size: 1rem;
    color: #1b5e20;
}

.policy-content p {
    margin: 0 0 0.7rem;
}

.policy-content ul {
    margin: 0 0 0.7rem;
    padding-left: 1.2rem;
}

.policy-content li {
    margin-bottom: 0.25rem;
}

.policy-updated {
    font-size: 0.82rem;
    color: #78909c;
    margin: 0 0 0.6rem;
}

.leaf-hover {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leaf-hover::after {
    content: "";
    position: absolute;
    inset: auto -40%;
    top: -80px;
    height: 120px;
    background: radial-gradient(circle at center, rgba(129, 212, 250, 0.3), transparent 60%);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.leaf-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.leaf-hover:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.service-card,
.plan-card,
.value-card,
.why-item,
.contact-form,
.thankyou-inner {
    border-radius: 18px;
}

@media (min-width: 640px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .approach-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plans-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .contact-cta-inner {
        grid-template-columns: minmax(0, 1.6fr) auto;
        align-items: center;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1.3fr) auto auto auto;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .service-section-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .service-section.alt .service-section-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    }

    .about-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    }

    .values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        align-items: flex-start;
    }

    .thankyou-actions {
        flex-direction: row;
    }
}

@media (min-width: 960px) {
    .header-inner {
        padding: 0.8rem 0;
    }

    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        background: none;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        position: static;
        display: flex;
        background: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        border-radius: 0;
        gap: 0.3rem;
    }

    .main-nav li+li {
        border-top: none;
    }

    .main-nav a {
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        font-size: 0.9rem;
    }

    .main-nav a:hover {
        background-color: #e8f5e9;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-image {
        height: 260px;
    }

    .service-large-image {
        height: 240px;
    }

    .about-image {
        height: 240px;
    }

    .contact-cta-inner {
        padding: 2.4rem 2.2rem;
    }
}