* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #2d5016;
--accent: #7fb539;
--dark: #1a1a1a;
--white: #ffffff;
--light: #f8faf6;
--gray: #666666;
--border: #e8e8e8;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
}

h1, h2, h3, h4 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
color: var(--dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 18px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content h3 {
color: var(--white);
font-size: 1rem;
margin-bottom: 5px;
}

.privacy-content p {
font-size: 0.9rem;
flex: 1;
min-width: 250px;
}

.privacy-buttons {
display: flex;
gap: 12px;
}

.privacy-buttons a {
color: var(--accent);
font-size: 0.9rem;
text-decoration: underline;
}

.privacy-buttons button {
background: var(--accent);
color: var(--white);
border: none;
padding: 10px 24px;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.3s ease;
}

.privacy-buttons button:hover {
background: var(--primary);
}

.header {
background: var(--white);
padding: 18px 0;
border-bottom: 1px solid var(--border);
position: relative;
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary);
}

.nav {
display: flex;
gap: 32px;
}

.nav a {
color: var(--dark);
font-weight: 500;
font-size: 0.95rem;
position: relative;
}

.nav a:hover,
.nav a.active {
color: var(--primary);
}

.nav a.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: var(--accent);
}

.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary);
transition: all 0.3s ease;
}

.mega-hero {
position: relative;
padding: 100px 0 80px;
background: linear-gradient(135deg, var(--primary) 0%, #3d6b1f 100%);
overflow: hidden;
}

.hero-bg-shape {
position: absolute;
width: 600px;
height: 600px;
background: rgba(127, 181, 57, 0.1);
border-radius: 50%;
top: -200px;
right: -100px;
}

.hero-bg-shape-two {
position: absolute;
width: 400px;
height: 400px;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
bottom: -150px;
left: -100px;
}

.mega-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.mega-hero-content {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
color: var(--white);
padding: 8px 20px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 25px;
backdrop-filter: blur(10px);
}

.mega-hero-content h1 {
color: var(--white);
font-size: 3rem;
margin-bottom: 20px;
line-height: 1.2;
}

.mega-hero-content p {
font-size: 1.05rem;
line-height: 1.7;
opacity: 0.95;
margin-bottom: 35px;
}

.hero-stats {
display: flex;
gap: 40px;
margin-bottom: 35px;
}

.stat-item {
text-align: left;
}

.stat-number {
font-size: 2.2rem;
font-weight: 700;
color: var(--accent);
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 0.9rem;
opacity: 0.9;
}

.hero-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
display: inline-block;
padding: 14px 30px;
border-radius: 6px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

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

.btn-outline {
background: transparent;
color: var(--white);
border-color: var(--white);
}

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

.btn-secondary {
background: transparent;
color: var(--primary);
border-color: var(--primary);
}

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

.mega-hero-image {
position: relative;
}

.image-frame {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-frame img {
width: 100%;
height: auto;
display: block;
}

.floating-card {
position: absolute;
bottom: 30px;
left: -30px;
background: var(--white);
padding: 20px 25px;
border-radius: 10px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
gap: 15px;
}

.card-icon {
width: 45px;
height: 45px;
background: var(--accent);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
font-weight: 700;
flex-shrink: 0;
}

.card-content {
flex: 1;
}

.card-title {
font-weight: 600;
font-size: 0.95rem;
color: var(--dark);
margin-bottom: 2px;
}

.card-text {
font-size: 0.85rem;
color: var(--gray);
}

section {
padding: 70px 0;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-tag {
display: inline-block;
color: var(--accent);
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}

.section-header h2 {
margin-bottom: 12px;
}

.section-header p {
color: var(--gray);
font-size: 1.05rem;
max-width: 700px;
margin: 0 auto;
}

.services {
background: var(--white);
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.service-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 10px;
padding: 35px;
transition: all 0.3s ease;
position: relative;
}

.service-card:hover {
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
transform: translateY(-5px);
border-color: var(--accent);
}

.service-number {
font-size: 3rem;
font-weight: 700;
color: green;
line-height: 1;
margin-bottom: 20px;
}

.service-card h3 {
margin-bottom: 15px;
color: var(--dark);
}

.service-card p {
color: var(--gray);
margin-bottom: 20px;
font-size: 0.95rem;
line-height: 1.7;
}

.service-link {
color: var(--primary);
font-weight: 600;
font-size: 0.9rem;
}

.service-link:hover {
color: var(--accent);
}

.about-section {
background: var(--light);
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}

.about-image {
position: relative;
}

.about-image img {
border-radius: 12px;
width: 100%;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.experience-badge {
position: absolute;
bottom: 30px;
right: 30px;
background: var(--primary);
color: var(--white);
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-number {
font-size: 2.5rem;
font-weight: 700;
line-height: 1;
margin-bottom: 8px;
}

.badge-text {
font-size: 0.85rem;
line-height: 1.4;
opacity: 0.95;
}

.about-content .section-tag {
display: block;
text-align: left;
}

.about-content h2 {
margin-bottom: 20px;
}

.about-content p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.about-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 30px 0;
}

.feature-box {
background: var(--white);
padding: 20px;
border-radius: 8px;
border-left: 3px solid var(--accent);
}

.feature-box h4 {
margin-bottom: 8px;
color: var(--dark);
}

.feature-box p {
font-size: 0.9rem;
color: var(--gray);
margin: 0;
}

.process-section {
background: var(--white);
}

.process-timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.process-timeline::before {
content: '';
position: absolute;
left: 20px;
top: 20px;
bottom: 20px;
width: 2px;
background: var(--border);
}

.timeline-item {
position: relative;
padding-left: 60px;
margin-bottom: 40px;
}

.timeline-item:last-child {
margin-bottom: 0;
}

.timeline-dot {
position: absolute;
left: 11px;
top: 5px;
width: 20px;
height: 20px;
background: var(--accent);
border-radius: 50%;
border: 4px solid var(--white);
box-shadow: 0 0 0 2px var(--accent);
}

.timeline-content h3 {
margin-bottom: 10px;
color: var(--dark);
}

.timeline-content p {
color: var(--gray);
line-height: 1.7;
font-size: 0.95rem;
}

.pricing-section {
background: var(--light);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.pricing-card {
background: var(--white);
border: 2px solid var(--border);
border-radius: 12px;
padding: 35px;
transition: all 0.3s ease;
position: relative;
}

.pricing-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
border-color: var(--accent);
box-shadow: 0 10px 40px rgba(127, 181, 57, 0.15);
}

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--white);
padding: 6px 20px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}

.pricing-header {
text-align: center;
padding-bottom: 25px;
border-bottom: 1px solid var(--border);
margin-bottom: 25px;
}

.pricing-header h3 {
margin-bottom: 15px;
color: var(--dark);
}

.price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
line-height: 1;
}

.price-period {
font-size: 0.85rem;
color: var(--gray);
margin-top: 5px;
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
}

.pricing-features li {
padding: 12px 0;
font-size: 0.95rem;
color: var(--gray);
line-height: 1.6;
}

.pricing-features li::before {
content: '✓';
color: var(--accent);
font-weight: 700;
margin-right: 10px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
width: 100%;
text-align: center;
}

.testimonials-section {
background: var(--white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--accent);
}

.testimonial-text {
color: var(--dark);
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.author-name {
font-weight: 600;
color: var(--dark);
font-size: 0.95rem;
}

.author-location {
font-size: 0.85rem;
color: var(--gray);
}

.coverage-section {
background: var(--light);
}

.coverage-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.coverage-text .section-tag {
display: block;
text-align: left;
}

.coverage-text h2 {
margin-bottom: 20px;
}

.coverage-text p {
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
}

.coverage-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin: 25px 0;
}

.coverage-item {
background: var(--white);
padding: 12px 18px;
border-radius: 6px;
font-size: 0.9rem;
font-weight: 500;
color: var(--dark);
text-align: center;
border: 1px solid var(--border);
}

.coverage-image img {
border-radius: 12px;
width: 100%;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-cta {
background: var(--white);
}

.cta-box {
background: linear-gradient(135deg, var(--primary) 0%, #3d6b1f 100%);
border-radius: 15px;
padding: 60px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.cta-content {
flex: 1;
}

.cta-content h2 {
color: black;
margin-bottom: 15px;
font-size: 1.6rem;
}

.cta-content p {
color: var(--white);
opacity: 0.95;
font-size: 1.05rem;
line-height: 1.7;
}

.cta-actions {
display: flex;
flex-direction: column;
gap: 20px;
}

.btn-primary-large {
display: inline-block;
background: var(--accent);
color: var(--white);
padding: 16px 40px;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
text-align: center;
white-space: nowrap;
}

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

.cta-contact {
display: flex;
flex-direction: column;
gap: 10px;
}

.contact-item {
display: flex;
gap: 8px;
font-size: 0.9rem;
}

.contact-label {
color: rgba(255, 255, 255, 0.8);
}

.contact-value {
color: var(--white);
font-weight: 600;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 35px 0 20px;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 25px;
gap: 30px;
flex-wrap: wrap;
}

.footer-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 10px;
}

.footer-info p {
font-size: 0.9rem;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 0.9rem;
opacity: 0.8;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
font-size: 0.85rem;
opacity: 0.7;
}

.page-hero {
background: var(--primary);
color: var(--white);
padding: 70px 0;
text-align: center;
}

.page-hero h1 {
color: var(--white);
margin-bottom: 12px;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
}

.seasonal-services,
.hedge-intro,
.benefits,
.service-details,
.hedge-types,
.trimming-process,
.hedge-tips {
padding: 70px 0;
}

.seasonal-services {
background: var(--white);
}

.seasonal-grid,
.types-grid,
.details-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.seasonal-card,
.type-card,
.detail-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 10px;
padding: 30px;
}

.seasonal-card h3,
.type-card h3,
.detail-card h3 {
margin-bottom: 15px;
color: var(--dark);
}

.seasonal-card p,
.type-card p {
color: var(--gray);
font-size: 0.95rem;
line-height: 1.7;
}

.benefits {
background: var(--light);
}

.benefits-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.benefits-content h2 {
margin-bottom: 20px;
}

.benefits-content > p {
color: var(--gray);
margin-bottom: 25px;
line-height: 1.8;
}

.benefit-items {
display: flex;
flex-direction: column;
gap: 20px;
}

.benefit-item {
display: flex;
gap: 15px;
}

.benefit-item h4 {
margin-bottom: 5px;
color: var(--dark);
}

.benefit-item p {
color: var(--gray);
font-size: 0.95rem;
line-height: 1.6;
}

.benefits-image img {
border-radius: 12px;
width: 100%;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.detail-card ul {
list-style: none;
}

.detail-card li {
padding: 10px 0;
color: var(--gray);
font-size: 0.95rem;
}

.detail-card li::before {
content: '✓';
color: var(--accent);
font-weight: 700;
margin-right: 10px;
}

.hedge-intro {
background: var(--white);
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.intro-content h2 {
margin-bottom: 20px;
}

.intro-content p {
color: var(--gray);
margin-bottom: 18px;
line-height: 1.8;
}

.intro-image img {
border-radius: 12px;
width: 100%;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.process-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.step-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 10px;
padding: 30px;
text-align: center;
}

.step-card h3 {
margin-bottom: 15px;
color: var(--dark);
}

.step-card p {
color: var(--gray);
font-size: 0.95rem;
line-height: 1.7;
}

.hedge-tips {
background: var(--light);
}

.tips-content h2 {
text-align: center;
margin-bottom: 50px;
}

.tips-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.tip-card {
background: var(--white);
border-radius: 10px;
padding: 25px;
border-left: 4px solid var(--accent);
}

.tip-card h4 {
margin-bottom: 12px;
color: var(--primary);
}

.tip-card p {
color: var(--gray);
font-size: 0.95rem;
line-height: 1.7;
}

.contact-section {
padding: 70px 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info h2 {
margin-bottom: 15px;
}

.contact-info > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.8;
}

.contact-methods {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 40px;
}

.contact-method {
display: flex;
gap: 15px;
}

.method-content h3 {
font-size: 1rem;
margin-bottom: 5px;
color: var(--dark);
}

.method-content p {
color: var(--gray);
font-size: 0.95rem;
}

.business-hours {
background: var(--light);
padding: 25px;
border-radius: 10px;
}

.business-hours h3 {
margin-bottom: 15px;
color: var(--dark);
}

.hours-list {
display: flex;
flex-direction: column;
gap: 10px;
}

.hours-item {
display: flex;
justify-content: space-between;
font-size: 0.95rem;
}

.hours-item span:first-child {
color: var(--dark);
font-weight: 500;
}

.hours-item span:last-child {
color: var(--gray);
}

.contact-form-wrapper h2 {
margin-bottom: 10px;
}

.contact-form-wrapper > p {
color: var(--gray);
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-weight: 600;
font-size: 0.95rem;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 6px;
font-family: 'Outfit', sans-serif;
font-size: 0.95rem;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
align-items: flex-start;
cursor: pointer;
font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
margin-top: 4px;
cursor: pointer;
}

.checkbox-label span {
font-size: 0.9rem;
color: var(--gray);
}

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.contact-form button {
align-self: flex-start;
}

.map-section {
background: var(--light);
padding: 70px 0;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
padding: 100px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.thankyou-content h1 {
margin-bottom: 20px;
}

.thankyou-content p {
color: var(--gray);
margin-bottom: 15px;
font-size: 1.05rem;
line-height: 1.7;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
margin-bottom: 20px;
}

.error-content > p {
color: var(--gray);
font-size: 1.05rem;
margin-bottom: 40px;
line-height: 1.7;
}

.error-suggestions {
background: var(--light);
padding: 30px;
border-radius: 10px;
margin-bottom: 30px;
text-align: left;
}

.error-suggestions h3 {
margin-bottom: 15px;
}

.error-suggestions ul {
list-style: none;
}

.error-suggestions li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 12px;
}

.error-suggestions a {
color: var(--primary);
text-decoration: underline;
}

.policy-section {
padding: 70px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
margin-bottom: 10px;
}

.policy-date {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 40px;
}

.policy-block {
margin-bottom: 40px;
}

.policy-block h2 {
margin-bottom: 20px;
font-size: 1.6rem;
}

.policy-block h3 {
margin: 25px 0 15px;
font-size: 1.2rem;
}

.policy-block p {
color: var(--gray);
margin-bottom: 15px;
line-height: 1.8;
}

.policy-block ul {
margin: 15px 0 15px 25px;
}

.policy-block li {
color: var(--gray);
margin-bottom: 10px;
line-height: 1.8;
word-break: break-all;
}

@media (max-width: 968px) {
.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
gap: 15px;
display: none;
z-index: 999;
}

.nav.active {
display: flex;
}

.menu-toggle {
display: flex;
}

.mega-hero-grid,
.about-grid,
.benefits-grid,
.intro-grid,
.contact-grid,
.coverage-content {
grid-template-columns: 1fr;
gap: 40px;
}

.mega-hero-image,
.about-image,
.benefits-image,
.intro-image,
.coverage-image {
order: -1;
}

.floating-card {
left: 20px;
bottom: 20px;
}

.hero-stats {
gap: 30px;
}

.services-grid,
.pricing-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}

.about-features {
grid-template-columns: 1fr;
}

.coverage-list {
grid-template-columns: repeat(2, 1fr);
}

.cta-box {
flex-direction: column;
padding: 40px;
text-align: center;
}

.cta-actions {
width: 100%;
}

.btn-primary-large {
width: 100%;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

.mega-hero-content h1 {
font-size: 2.5rem;
}
}

@media (max-width: 640px) {
.container {
padding: 0 15px;
}

section {
padding: 50px 0;
}

.mega-hero {
padding: 70px 0 50px;
}

.mega-hero-content h1 {
font-size: 2rem;
}

.mega-hero-content p {
font-size: 1rem;
}

.hero-stats {
flex-direction: column;
gap: 20px;
}

.stat-number {
font-size: 2rem;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
width: 100%;
text-align: center;
}

.floating-card {
position: static;
margin-top: 20px;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.section-header {
margin-bottom: 35px;
}

.seasonal-grid,
.types-grid,
.details-grid,
.tips-grid,
.process-steps {
grid-template-columns: 1fr;
gap: 20px;
}

.service-card,
.pricing-card,
.testimonial-card,
.seasonal-card,
.type-card,
.detail-card,
.step-card,
.tip-card {
padding: 25px;
}

.experience-badge {
right: 20px;
bottom: 20px;
padding: 20px;
}

.badge-number {
font-size: 2rem;
}

.process-timeline::before {
left: 15px;
}

.timeline-item {
padding-left: 50px;
}

.timeline-dot {
left: 6px;
}

.coverage-list {
grid-template-columns: 1fr;
}

.cta-box {
padding: 30px 20px;
}

.cta-content h2 {
font-size: 1.7rem;
}

.cta-content p {
font-size: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 12px 24px;
font-size: 0.9rem;
}

.footer-content {
flex-direction: column;
gap: 20px;
}

.footer-links {
flex-direction: column;
gap: 10px;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.privacy-buttons {
width: 100%;
flex-direction: column;
}

.privacy-buttons button {
width: 100%;
}

.error-number {
font-size: 5rem;
}

.error-suggestions {
padding: 20px;
}
}

@media (max-width: 400px) {
body {
font-size: 14px;
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }

.mega-hero {
padding: 50px 0 40px;
}

.mega-hero-content h1 {
font-size: 1.7rem;
}

.logo a {
font-size: 1.1rem;
}

.hero-badge {
font-size: 0.8rem;
padding: 6px 15px;
}

.stat-number {
font-size: 1.8rem;
}

.stat-label {
font-size: 0.85rem;
}

.service-number {
font-size: 2.5rem;
}

.service-card,
.pricing-card,
.testimonial-card,
.seasonal-card,
.type-card,
.detail-card,
.step-card,
.tip-card {
padding: 20px;
}

.section-header {
margin-bottom: 30px;
}

.section-tag {
font-size: 0.8rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 11px 20px;
font-size: 0.85rem;
}

.price {
font-size: 2rem;
}

.cta-box {
padding: 25px 15px;
}

.cta-content h2 {
font-size: 1.5rem;
}

.experience-badge {
padding: 15px;
}

.badge-number {
font-size: 1.7rem;
}

.badge-text {
font-size: 0.8rem;
}

.error-number {
font-size: 4rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.2rem; }

.mega-hero-content h1 {
font-size: 1.6rem;
}

.hero-stats {
gap: 15px;
}

.stat-number {
font-size: 1.6rem;
}

.service-card,
.pricing-card {
padding: 18px;
}

.cta-box {
padding: 20px 12px;
}
}
