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

:root {
--primary: #0f172a;
--secondary: #3b82f6;
--accent: #f59e0b;
--tertiary: #8b5cf6;
--text-dark: #1e293b;
--text-light: #64748b;
--bg-light: #f8fafc;
--bg-white: #ffffff;
--border: #e2e8f0;
}

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

h1, h2, h3, h4 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }

a {
color: var(--secondary);
text-decoration: none;
transition: all 0.3s ease;
}

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

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

.header {
background: var(--primary);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.2rem;
font-weight: 700;
color: var(--bg-white);
letter-spacing: -0.5px;
}

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

.nav a {
color: var(--bg-white);
font-weight: 500;
font-size: 14px;
padding: 8px 16px;
border-radius: 6px;
transition: all 0.3s ease;
}

.nav a:hover {
background: rgba(255,255,255,0.1);
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--bg-white);
font-size: 1.5rem;
cursor: pointer;
}

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

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.05;
}

.shape-1 {
width: 500px;
height: 500px;
background: var(--secondary);
top: -200px;
right: -100px;
}

.shape-2 {
width: 400px;
height: 400px;
background: var(--accent);
bottom: -150px;
left: -100px;
}

.shape-3 {
width: 300px;
height: 300px;
background: var(--tertiary);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

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

.hero-badge {
display: inline-block;
background: rgba(59,130,246,0.15);
color: var(--secondary);
padding: 6px 14px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
}

.hero-text-block h1 {
color: var(--bg-white);
font-size: 3rem;
margin-bottom: 1.2rem;
line-height: 1.1;
}

.hero-text-block > p {
color: rgba(255,255,255,0.85);
font-size: 1.05rem;
margin-bottom: 2rem;
line-height: 1.7;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 2.5rem;
padding: 25px;
background: rgba(255,255,255,0.05);
border-radius: 12px;
backdrop-filter: blur(10px);
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-number {
font-size: 1.8rem;
font-weight: 700;
color: var(--accent);
font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
font-size: 12px;
color: rgba(255,255,255,0.7);
}

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

.btn-primary {
display: inline-block;
background: var(--accent);
color: var(--primary);
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(245,158,11,0.3);
color: var(--primary);
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--bg-white);
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid rgba(255,255,255,0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.btn-outline:hover {
border-color: var(--bg-white);
background: rgba(255,255,255,0.1);
color: var(--bg-white);
}

.hero-visual {
position: relative;
}

.visual-card {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.visual-card img {
width: 100%;
border-radius: 16px;
}

.visual-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: var(--accent);
color: var(--primary);
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;
font-size: 13px;
}

.services-showcase {
padding: 80px 0;
background: var(--bg-light);
}

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

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

.section-header h2 {
margin-bottom: 0.8rem;
}

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

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

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

.modern-service-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
border-color: var(--secondary);
}

.service-icon-wrap {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.2rem;
}

.service-icon-wrap i {
font-size: 1.8rem;
color: var(--bg-white);
}

.modern-service-card h3 {
margin-bottom: 0.8rem;
}

.modern-service-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1.2rem;
line-height: 1.6;
}

.service-link {
color: var(--secondary);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 6px;
}

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

.why-choose {
padding: 80px 0;
}

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

.why-content h2 {
margin-bottom: 1rem;
}

.why-content > p {
color: var(--text-light);
font-size: 1.05rem;
margin-bottom: 2rem;
}

.advantage-list {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.advantage-icon {
width: 45px;
height: 45px;
background: var(--bg-light);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.advantage-icon i {
font-size: 1.5rem;
color: var(--secondary);
}

.advantage-text h4 {
margin-bottom: 0.3rem;
}

.advantage-text p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.stats-card {
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
padding: 40px;
border-radius: 16px;
display: flex;
flex-direction: column;
gap: 30px;
}

.stats-card-item {
display: flex;
align-items: center;
gap: 20px;
color: var(--bg-white);
}

.stats-card-item i {
font-size: 2.5rem;
opacity: 0.9;
}

.stats-card-item h3 {
font-size: 2rem;
margin: 0;
color: var(--bg-white);
}

.stats-card-item p {
font-size: 14px;
margin: 0;
opacity: 0.9;
}

.process-timeline {
padding: 80px 0;
background: var(--bg-light);
}

.timeline-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}

.timeline-step {
text-align: center;
padding: 30px 20px;
background: var(--bg-white);
border-radius: 12px;
border: 1px solid var(--border);
}

.step-marker {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
margin: 0 auto 1.2rem;
font-family: 'Space Grotesk', sans-serif;
}

.timeline-step h3 {
margin-bottom: 0.6rem;
}

.timeline-step p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.featured-work {
padding: 80px 0;
}

.work-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.work-item {
padding: 30px;
background: var(--bg-light);
border-radius: 12px;
border-left: 4px solid var(--accent);
}

.work-category {
display: inline-block;
background: var(--accent);
color: var(--primary);
padding: 4px 12px;
border-radius: 6px;
font-size: 12px;
font-weight: 600;
margin-bottom: 1rem;
}

.work-item h3 {
margin-bottom: 0.8rem;
}

.work-item p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.testimonials-section {
padding: 80px 0;
background: var(--bg-light);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.testimonial-card {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
border: 1px solid var(--border);
}

.testimonial-stars {
color: var(--accent);
font-size: 1.2rem;
margin-bottom: 1rem;
}

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

.testimonial-author strong {
display: block;
color: var(--text-dark);
font-weight: 600;
margin-bottom: 0.2rem;
}

.testimonial-author span {
color: var(--text-light);
font-size: 13px;
}

.industries-served {
padding: 80px 0;
}

.industries-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}

.industry-tag {
background: var(--bg-light);
color: var(--text-dark);
padding: 10px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 500;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.industry-tag:hover {
background: var(--secondary);
color: var(--bg-white);
border-color: var(--secondary);
}

.final-cta {
padding: 80px 0;
background: var(--primary);
}

.cta-modern-box {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: center;
}

.cta-content-block h2 {
color: var(--bg-white);
margin-bottom: 1rem;
font-size: 2.2rem;
}

.cta-content-block > p {
color: rgba(255,255,255,0.85);
font-size: 1.05rem;
margin-bottom: 1.5rem;
}

.cta-features {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.cta-features span {
color: var(--bg-white);
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
}

.cta-features i {
color: var(--accent);
font-size: 1.2rem;
}

.cta-action-block {
text-align: center;
}

.btn-primary-large {
display: inline-block;
background: var(--accent);
color: var(--primary);
padding: 18px 40px;
border-radius: 10px;
font-weight: 700;
font-size: 16px;
margin-bottom: 1rem;
transition: all 0.3s ease;
}

.btn-primary-large:hover {
background: #d97706;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(245,158,11,0.4);
color: var(--primary);
}

.cta-contact-info {
color: rgba(255,255,255,0.7);
font-size: 14px;
margin: 0;
}

.footer {
background: var(--text-dark);
color: var(--bg-light);
padding: 20px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-info p {
margin: 0;
font-size: 13px;
}

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

.footer-links a {
color: var(--bg-light);
font-size: 13px;
}

.footer-links a:hover {
color: var(--bg-white);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 20px;
box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
}

.privacy-popup.show {
display: block;
}

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

.popup-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.popup-actions {
display: flex;
gap: 15px;
align-items: center;
}

.popup-link {
color: var(--accent);
font-size: 14px;
}

.btn-accept {
background: var(--accent);
color: var(--primary);
padding: 8px 20px;
border-radius: 6px;
border: none;
cursor: pointer;
font-weight: 600;
font-size: 14px;
}

.btn-accept:hover {
background: #d97706;
}

.page-hero {
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
padding: 60px 0;
color: var(--bg-white);
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.1), transparent 50%);
}

.page-hero .container {
position: relative;
z-index: 1;
}

.page-hero h1 {
color: var(--bg-white);
margin-bottom: 0.8rem;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
}

.products-showcase {
padding: 80px 0;
}

.products-list {
display: flex;
flex-direction: column;
gap: 30px;
}

.product-item {
display: grid;
grid-template-columns: auto 1fr;
gap: 30px;
background: var(--bg-white);
padding: 35px;
border-radius: 12px;
border: 1px solid var(--border);
align-items: start;
transition: all 0.3s ease;
}

.product-item:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
border-color: var(--secondary);
}

.product-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.product-icon i {
font-size: 2.5rem;
color: var(--bg-white);
}

.product-details h3 {
margin-bottom: 0.5rem;
}

.price {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.8rem;
font-family: 'Space Grotesk', sans-serif;
}

.product-features {
list-style: none;
margin: 1rem 0 1.5rem;
display: flex;
flex-direction: column;
gap: 8px;
}

.product-features li {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--text-light);
}

.product-features i {
color: var(--secondary);
font-size: 1rem;
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--secondary);
padding: 10px 25px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--secondary);
cursor: pointer;
transition: all 0.3s ease;
}

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

.specifications {
padding: 80px 0;
background: var(--bg-light);
}

.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}

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

.spec-card i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 1rem;
}

.spec-card h3 {
margin-bottom: 0.6rem;
}

.spec-card p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.custom-cta {
padding: 80px 0;
}

.cta-box {
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
padding: 60px;
border-radius: 16px;
text-align: center;
color: var(--bg-white);
}

.cta-box h2 {
color: var(--bg-white);
margin-bottom: 1rem;
}

.cta-box p {
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.promo-intro {
padding: 80px 0;
}

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

.intro-text h2 {
margin-bottom: 1.2rem;
}

.intro-text p {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.7;
}

.intro-image img {
border-radius: 12px;
box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.promo-categories {
padding: 80px 0;
background: var(--bg-light);
}

.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.category-card {
background: var(--bg-white);
padding: 35px;
border-radius: 12px;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.category-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.category-card i {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 1rem;
}

.category-card h3 {
margin-bottom: 0.8rem;
}

.category-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1.2rem;
}

.category-card ul {
list-style: none;
margin-bottom: 1.5rem;
}

.category-card ul li {
padding: 8px 0;
color: var(--text-light);
font-size: 14px;
border-bottom: 1px solid var(--border);
}

.category-card ul li:last-child {
border-bottom: none;
}

.promo-benefits {
padding: 80px 0;
}

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

.benefit-item {
display: flex;
gap: 15px;
padding: 25px;
background: var(--bg-light);
border-radius: 12px;
border: 1px solid var(--border);
}

.benefit-icon {
width: 55px;
height: 55px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
color: var(--bg-white);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.benefit-icon i {
font-size: 1.5rem;
}

.benefit-text h3 {
margin-bottom: 0.4rem;
font-size: 1.05rem;
}

.benefit-text p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.promo-cta {
padding: 80px 0;
background: var(--bg-light);
}

.contact-hero {
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
padding: 60px 0;
color: var(--bg-white);
text-align: center;
position: relative;
overflow: hidden;
}

.contact-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 70% 50%, rgba(139,92,246,0.1), transparent 50%);
}

.contact-hero .container {
position: relative;
z-index: 1;
}

.contact-hero h1 {
color: var(--bg-white);
margin-bottom: 0.8rem;
}

.contact-hero p {
font-size: 1.05rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
}

.contact-main {
padding: 80px 0;
}

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

.contact-info h2 {
margin-bottom: 1rem;
}

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

.info-items {
display: flex;
flex-direction: column;
gap: 25px;
}

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

.info-item i {
width: 50px;
height: 50px;
background: var(--bg-light);
color: var(--secondary);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 1.3rem;
}

.info-item h3 {
margin-bottom: 0.3rem;
font-size: 1rem;
}

.info-item p {
color: var(--text-light);
font-size: 14px;
margin: 0;
line-height: 1.6;
}

.contact-form-wrapper {
background: var(--bg-light);
padding: 40px;
border-radius: 12px;
border: 1px solid var(--border);
}

.contact-form-wrapper h2 {
margin-bottom: 1.5rem;
}

.form-group {
margin-bottom: 1.2rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
font-size: 14px;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
transition: all 0.3s ease;
background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.checkbox-group {
margin-top: 1.5rem;
}

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

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

.checkbox-label span {
color: var(--text-light);
}

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

.contact-form button {
width: 100%;
margin-top: 1rem;
}

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

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
display: block;
}

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

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

.thankyou-icon {
width: 110px;
height: 110px;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem;
}

.thankyou-icon i {
font-size: 3.5rem;
}

.thankyou-content h1 {
margin-bottom: 1.2rem;
}

.thankyou-message {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.thankyou-info {
background: var(--bg-light);
padding: 25px;
border-radius: 10px;
margin-bottom: 2rem;
border: 1px solid var(--border);
}

.thankyou-info p {
margin: 0;
color: var(--text-light);
font-size: 14px;
}

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

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

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

.error-code {
font-size: 7rem;
font-weight: 700;
background: linear-gradient(135deg, var(--secondary), var(--tertiary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 1rem;
font-family: 'Space Grotesk', sans-serif;
}

.error-content h1 {
margin-bottom: 1rem;
}

.error-content p {
color: var(--text-light);
margin-bottom: 2rem;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 2rem;
}

.error-links {
background: var(--bg-light);
padding: 30px;
border-radius: 10px;
border: 1px solid var(--border);
}

.error-links p {
font-weight: 600;
margin-bottom: 1rem;
}

.error-links ul {
list-style: none;
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.error-links a {
color: var(--secondary);
font-size: 14px;
}

.policy-page {
padding: 80px 0;
}

.policy-page h1 {
margin-bottom: 0.5rem;
}

.policy-date {
color: var(--text-light);
font-size: 14px;
margin-bottom: 2.5rem;
}

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

.policy-content h2 {
margin-top: 2.5rem;
margin-bottom: 1rem;
font-size: 1.6rem;
}

.policy-content h3 {
margin-top: 1.5rem;
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.policy-content p {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.8;
}

.policy-content ul {
margin: 1rem 0 1.5rem 1.5rem;
color: var(--text-light);
line-height: 1.8;
}

.policy-content ul li {
margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary);
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav.active {
display: block;
}

.nav ul {
flex-direction: column;
gap: 5px;
}

.menu-toggle {
display: block;
}

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

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

.hero-text-block h1 {
font-size: 2.2rem;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 15px;
padding: 20px;
}

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

.services-modern-grid,
.timeline-grid,
.work-grid,
.testimonials-grid,
.specs-grid,
.categories-grid,
.benefits-wrapper {
grid-template-columns: 1fr;
}

.why-choose-layout,
.intro-content,
.contact-wrapper,
.cta-modern-box {
grid-template-columns: 1fr;
gap: 40px;
}

.product-item {
grid-template-columns: 1fr;
text-align: center;
}

.product-icon {
margin: 0 auto;
}

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

.footer-links {
justify-content: center;
}

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

.popup-actions {
width: 100%;
justify-content: center;
}
}

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

h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }

.mega-hero,
.services-showcase,
.why-choose,
.process-timeline,
.featured-work,
.testimonials-section,
.industries-served,
.final-cta,
.products-showcase,
.specifications,
.custom-cta,
.promo-intro,
.promo-categories,
.promo-benefits,
.promo-cta,
.contact-main,
.map-section,
.policy-page {
padding: 50px 0;
}

.hero-text-block h1 {
font-size: 1.8rem;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 12px;
padding: 15px;
}

.modern-service-card,
.category-card,
.testimonial-card {
padding: 25px;
}

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

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

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

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

.cta-modern-box {
gap: 30px;
}

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

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

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

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

.hero-text-block h1 {
font-size: 1.6rem;
}

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

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

.hero-actions a {
width: 100%;
text-align: center;
}
}
