:root {
    --color-primary: #2d7a4f;
    --color-primary-dark: #1e5a38;
    --color-primary-light: #e8f5ec;
    --color-secondary: #1a3c5e;
    --color-accent: #f4a835;
    --color-text: #2c3e50;
    --color-text-light: #6b7c8a;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fa;
    --color-bg-dark: #1a2f3a;
    --color-border: #e1e8ed;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link.active {
    color: var(--color-primary);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

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

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

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

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

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

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

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header-center {
    text-align: center;
}

.section-header-center p {
    margin-left: auto;
    margin-right: auto;
}

.section-header-light h2 {
    color: white;
}

.section-header-light .section-label {
    color: var(--color-accent);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #d4edda 50%, #c3e6cb 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 60%;
    height: 80%;
    background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=800&h=600&fit=crop') center/cover;
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.page-hero {
    padding: 160px 24px 80px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #d4edda 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.page-hero-small {
    padding: 140px 24px 60px;
}

.intro-section {
    padding: 100px 24px;
}

.intro-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-section {
    padding: 60px 24px;
    background: var(--color-secondary);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-preview {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

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

.service-card.featured {
    background: var(--color-primary);
    color: white;
}

.service-card.featured .service-icon {
    color: white;
}

.service-card.featured h3 {
    color: white;
}

.service-card.featured p {
    color: rgba(255,255,255,0.85);
}

.service-card.featured .service-price {
    color: var(--color-accent);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.375rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

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

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.services-cta {
    text-align: center;
}

.process-section {
    padding: 100px 24px;
    background: var(--color-secondary);
}

.process-timeline {
    display: flex;
    gap: 32px;
}

.process-step {
    flex: 1;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 12px;
}

.step-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 24px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info strong {
    display: block;
    color: var(--color-secondary);
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.cta-section {
    padding: 80px 24px;
    background: var(--color-primary);
}

.cta-section-alt {
    background: var(--color-bg-alt);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box-light {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cta-content h2 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 8px;
}

.cta-box-light .cta-content h2 {
    color: var(--color-secondary);
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.0625rem;
}

.cta-box-light .cta-content p {
    color: var(--color-text-light);
}

.form-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.form-wrapper {
    display: flex;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.form-info p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
    font-family: inherit;
}

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.partners-section {
    padding: 60px 24px;
    border-top: 1px solid var(--color-border);
}

.partners-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    opacity: 0.6;
}

.footer {
    background: var(--color-bg-dark);
    padding: 64px 24px 32px;
    color: white;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 20px 24px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.about-intro {
    padding: 100px 24px;
}

.about-intro-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.team-section {
    padding: 100px 24px;
}

.team-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.team-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.team-stats li {
    flex: 1;
    min-width: 140px;
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    text-align: center;
}

.team-stats li strong {
    display: block;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.team-image {
    flex: 1;
}

.team-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.certifications-section {
    padding: 100px 24px;
    background: var(--color-secondary);
}

.certifications-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.cert-item {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    min-width: 200px;
}

.cert-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.cert-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.timeline-section {
    padding: 100px 24px;
}

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

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

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

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

.timeline-year {
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    text-align: right;
    padding-right: 24px;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    padding-left: 24px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.services-intro {
    padding: 80px 24px;
    background: white;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.8;
}

.service-detail {
    padding: 100px 24px;
}

.service-detail-alt {
    background: var(--color-bg-alt);
}

.service-detail-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.service-detail-grid-reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-pricing {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.service-detail-alt .service-pricing {
    background: white;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--color-text);
}

.price-value {
    font-weight: 700;
    color: var(--color-primary);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.packages-section {
    padding: 100px 24px;
    background: var(--color-secondary);
}

.packages-grid {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.package-card {
    flex: 1;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.package-featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-secondary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.package-desc {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.package-price {
    margin-bottom: 24px;
}

.old-price {
    display: block;
    font-size: 1rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.new-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.package-features {
    text-align: left;
    margin-bottom: 32px;
}

.package-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.warranty-section {
    padding: 80px 24px;
    background: var(--color-primary-light);
}

.warranty-grid {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-content {
    flex: 1;
}

.warranty-content h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.warranty-content p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.warranty-items {
    display: flex;
    gap: 24px;
}

.warranty-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 140px;
}

.warranty-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.warranty-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    display: flex;
    gap: 64px;
}

.contact-info {
    flex: 1;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.contact-intro p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-primary);
}

.contact-note {
    padding: 20px;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
}

.contact-note p {
    font-size: 0.9375rem;
    color: var(--color-text);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.5;
}

.faq-section {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.thanks-section {
    min-height: calc(100vh - 200px);
    padding: 160px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.thanks-service {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.thanks-info {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 32px;
}

.thanks-info h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.thanks-info ol {
    counter-reset: thanks-counter;
}

.thanks-info li {
    counter-increment: thanks-counter;
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.thanks-info li::before {
    content: counter(thanks-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
}

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

.legal-content {
    padding: 80px 24px;
}

.legal-text {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text ul {
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookies-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-secondary);
}

.cookies-table td {
    color: var(--color-text);
}

@media (max-width: 992px) {
    .intro-grid,
    .about-intro-grid,
    .team-content,
    .service-detail-grid,
    .warranty-grid,
    .contact-grid {
        flex-direction: column;
    }

    .service-detail-grid-reverse {
        flex-direction: column;
    }

    .services-grid,
    .testimonials-grid,
    .process-timeline,
    .packages-grid {
        flex-direction: column;
    }

    .package-featured {
        transform: none;
    }

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

    .form-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 32px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
        font-size: 1rem;
    }

    .certifications-grid {
        flex-wrap: wrap;
    }

    .warranty-items {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

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

    .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 140px 24px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }

    .values-grid {
        flex-direction: column;
    }

    .team-stats {
        flex-direction: column;
    }

    .faq-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-text {
        padding: 24px;
    }

    .cookies-table {
        font-size: 0.875rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px 12px;
    }
}

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

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }

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

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