:root {
    --blue: #1a3c6e;
    --blue-dark: #0f2a4f;
    --blue-light: #2a5a9e;
    --orange: #f47920;
    --orange-dark: #d4620a;
    --orange-light: #f79a4a;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-dark);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--blue);
    font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 12px;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--blue); }
.bg-primary h2, .bg-primary h3, .bg-primary p { color: var(--white); }
.bg-primary .section-label { color: var(--orange-light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.125rem; }
.btn-block { width: 100%; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    background: var(--blue);
    padding: 8px 0;
}

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

.header-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
}

.header-phone {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.header-phone:hover { color: var(--orange-light); }

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-height: 60px;
    width: auto;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    transition: all var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 4px 0;
    position: relative;
    text-decoration: none;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--orange);
}

.header-cta {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--blue);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, #0d1f3a 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(244,121,32,0.15) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(244,121,32,0.2);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(244,121,32,0.3);
}

.hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-features span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.service-icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,60,110,0.05);
    border-radius: var(--radius);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover { gap: 8px; }

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

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

.about-preview-content > p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list strong {
    color: var(--blue);
}

.benefits-list div {
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.area-group h4 {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 4px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.area-group li::before {
    content: '—';
    color: var(--orange);
    margin-right: 8px;
}

.cta-content {
    text-align: center;
    max-width: 650px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: var(--blue);
    padding: 60px 0 60px;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue-light));
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: rgba(255,255,255,0.6);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255,255,255,0.4);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
    color: var(--white);
    max-width: 800px;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 700px;
    line-height: 1.6;
}

.services-detailed {
    display: grid;
    gap: 32px;
}

.service-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-detail:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.service-detail h3 {
    color: var(--blue);
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-detail > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.service-detail-list li {
    padding: 6px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--orange);
    position: relative;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.restrictions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.restrictions-accepted h3,
.restrictions-not-accepted h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid;
}

.restrictions-accepted h3 { color: var(--blue); border-color: var(--blue); }
.restrictions-not-accepted h3 { color: #dc3545; border-color: #dc3545; }

.restrictions-accepted ul,
.restrictions-not-accepted ul {
    list-style: none;
}

.restrictions-accepted li,
.restrictions-not-accepted li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.restrictions-accepted li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
}

.restrictions-not-accepted li::before {
    content: '✕';
    color: #dc3545;
    font-weight: 700;
    font-size: 0.9rem;
}

.restrictions-note {
    margin-top: 20px;
    padding: 12px 16px;
    background: #fff3cd;
    border-radius: var(--radius);
    color: #856404;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.about-story-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    max-width: 800px;
}

.about-story-content h3 {
    color: var(--blue);
    margin: 32px 0 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.value-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--orange);
}

.value-item h4 {
    color: var(--blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.eco-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.eco-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.eco-step-number {
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.eco-step h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.eco-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.client-type {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.client-type:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.client-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.client-type h3 {
    color: var(--blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.client-type p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(244,121,32,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail h4 {
    color: var(--blue);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-detail p,
.contact-detail a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,121,32,0.1);
}

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

.form-group input[type="file"] {
    padding: 10px 16px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg-light);
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,121,32,0.1);
}

.form-group input[type="file"]:hover {
    border-color: var(--orange-light);
}

.form-group small {
    display: block;
    margin-top: 4px;
    line-height: 1.4;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success h3 {
    color: #28a745;
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--text-light);
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.contact-map {
    margin-top: 8px;
}

.contact-map iframe {
    width: 100%;
    border-radius: var(--radius);
}

.site-footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    max-height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--orange);
    font-weight: 500;
}

.footer-contact strong {
    color: var(--white);
    opacity: 1;
}

.footer-hours {
    margin-top: 24px;
}

.footer-hours p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--orange);
}

.footer-tagline {
    font-style: italic;
}

@media (max-width: 1024px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }

    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 80px 0 60px; }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid,
    .clients-grid,
    .eco-steps {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .section { padding: 48px 0; }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.55rem; }
    .hero h1 { font-size: 2rem; }

    .header-tagline { display: none; }

    .nav-toggle { display: flex; }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-list a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid var(--border);
    }

    .header-cta { display: none; }

    .hero { padding: 60px 0 48px; min-height: auto; }
    .hero-features { display: none; }

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

    .pricing-grid,
    .clients-grid,
    .eco-steps,
    .areas-grid,
    .restrictions-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .page-hero { padding: 40px 0; }
    .service-detail { padding: 24px; }
    .pricing-card { padding: 28px 20px; }
}

@media print {
    .site-header { position: static; }
    .hero { min-height: auto; }
    .header-top, .nav-toggle, .header-cta, .cta-section { display: none; }
}
