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

:root {
--primary-color: #2563eb;
--secondary-color: #1e40af;
--accent-color: #f59e0b;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--bg-white: #ffffff;
--border-color: #e5e7eb;
}

html {
scroll-behavior: smooth;
}

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

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

.header {
background: var(--bg-white);
padding: 15px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
position: relative;
z-index: 1000;
}

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

.logo {
font-family: 'Sora', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}

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

.nav a {
color: var(--text-dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

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

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--text-dark);
transition: 0.3s;
}

.hero {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
color: var(--bg-white);
padding: 80px 0;
text-align: center;
}

.hero-content h1 {
font-family: 'Sora', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 18px;
}

.hero-content p {
font-size: 17px;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.btn {
display: inline-block;
padding: 12px 28px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

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

.btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--bg-white);
border: 2px solid var(--bg-white);
}

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

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

.btn-light:hover {
background: var(--bg-light);
}

.btn-small {
padding: 8px 20px;
font-size: 13px;
}

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

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

.section-header h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 12px;
color: var(--text-dark);
}

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

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

.service-card {
background: var(--bg-white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
width: 55px;
height: 55px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 18px;
}

.service-icon i {
font-size: 24px;
color: var(--bg-white);
}

.service-card h3 {
font-family: 'Sora', sans-serif;
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
}

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

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

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

.features {
padding: 70px 0;
}

.features-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.features-content h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
}

.features-content > p {
font-size: 15px;
color: var(--text-light);
margin-bottom: 25px;
}

.features-list {
display: flex;
flex-direction: column;
gap: 18px;
}

.feature-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.feature-item i {
color: var(--accent-color);
font-size: 20px;
margin-top: 2px;
}

.feature-item h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 4px;
}

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

.features-image img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.process-step {
background: var(--bg-white);
padding: 28px;
border-radius: 8px;
text-align: center;
}

.step-number {
font-family: 'Sora', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--primary-color);
opacity: 0.2;
margin-bottom: 12px;
}

.process-step h3 {
font-family: 'Sora', sans-serif;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}

.process-step p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

.cta {
padding: 70px 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
text-align: center;
}

.cta-content h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
}

.cta-content p {
font-size: 16px;
margin-bottom: 25px;
opacity: 0.95;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}

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

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

.footer-info p {
font-size: 13px;
opacity: 0.8;
}

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

.footer-links a {
color: var(--bg-white);
text-decoration: none;
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 1;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 18px 0;
z-index: 10000;
display: none;
}

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

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

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

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

.privacy-buttons button {
background: var(--accent-color);
color: var(--bg-white);
border: none;
padding: 8px 20px;
border-radius: 5px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.privacy-buttons button:hover {
background: #d97706;
}

.privacy-buttons a {
color: var(--bg-white);
font-size: 13px;
text-decoration: underline;
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-family: 'Sora', sans-serif;
font-size: 38px;
font-weight: 700;
margin-bottom: 12px;
}

.page-hero p {
font-size: 16px;
opacity: 0.95;
}

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

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

.content-wrapper.reverse {
direction: rtl;
}

.content-wrapper.reverse > * {
direction: ltr;
}

.content-text h2 {
font-family: 'Sora', sans-serif;
font-size: 30px;
font-weight: 700;
margin-bottom: 18px;
}

.content-text p {
font-size: 15px;
color: var(--text-light);
margin-bottom: 15px;
line-height: 1.7;
}

.content-features {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-top: 25px;
}

.content-feature {
display: flex;
align-items: center;
gap: 8px;
background: var(--bg-light);
padding: 10px 16px;
border-radius: 6px;
font-size: 13px;
font-weight: 500;
}

.content-feature i {
color: var(--primary-color);
font-size: 16px;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.products-section h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
text-align: center;
margin-bottom: 45px;
}

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

.product-card {
background: var(--bg-white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
text-align: center;
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-card.featured {
border: 2px solid var(--accent-color);
position: relative;
}

.product-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 18px;
}

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

.product-card h3 {
font-family: 'Sora', sans-serif;
font-size: 19px;
font-weight: 600;
margin-bottom: 12px;
}

.product-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 18px;
line-height: 1.6;
}

.product-price {
font-family: 'Sora', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 18px;
}

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

.benefits-section h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
text-align: center;
margin-bottom: 45px;
}

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

.benefit-card {
background: var(--bg-light);
padding: 28px;
border-radius: 8px;
text-align: center;
}

.benefit-card i {
font-size: 36px;
color: var(--accent-color);
margin-bottom: 15px;
}

.benefit-card h3 {
font-family: 'Sora', sans-serif;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}

.benefit-card p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

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

.specs-section h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
text-align: center;
margin-bottom: 45px;
}

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

.spec-item {
background: var(--bg-white);
padding: 28px;
border-radius: 8px;
}

.spec-item h3 {
font-family: 'Sora', sans-serif;
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
color: var(--primary-color);
}

.spec-item ul {
list-style: none;
}

.spec-item li {
font-size: 14px;
color: var(--text-light);
padding: 8px 0;
padding-left: 20px;
position: relative;
}

.spec-item li:before {
content: "•";
position: absolute;
left: 0;
color: var(--accent-color);
font-weight: bold;
}

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

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

.contact-info h2 {
font-family: 'Sora', sans-serif;
font-size: 30px;
font-weight: 700;
margin-bottom: 15px;
}

.contact-info > p {
font-size: 15px;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 22px;
}

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

.contact-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
color: var(--bg-white);
font-size: 18px;
}

.contact-item h3 {
font-size: 16px;
font-weight: 600;
margin-bottom: 4px;
}

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

.contact-form-wrapper {
background: var(--bg-light);
padding: 35px;
border-radius: 10px;
}

.contact-form h3 {
font-family: 'Sora', sans-serif;
font-size: 22px;
font-weight: 600;
margin-bottom: 22px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 11px 14px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: border-color 0.3s;
}

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

.form-group textarea {
resize: vertical;
}

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

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

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

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

.map-section h2 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
text-align: center;
margin-bottom: 35px;
}

.map-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px 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: 600px;
margin: 0 auto;
}

.thankyou-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #10b981, #059669);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
}

.thankyou-icon i {
font-size: 40px;
color: var(--bg-white);
}

.thankyou-content h1 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
color: var(--text-dark);
}

.thankyou-content p {
font-size: 16px;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.7;
}

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

.error-number {
font-family: 'Sora', sans-serif;
font-size: 100px;
font-weight: 700;
color: var(--primary-color);
opacity: 0.2;
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-family: 'Sora', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
}

.error-content p {
font-size: 16px;
color: var(--text-light);
margin-bottom: 30px;
}

.error-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

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

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

.policy-content h1 {
font-family: 'Sora', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 10px;
}

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

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

.policy-block h2 {
font-family: 'Sora', sans-serif;
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
color: var(--text-dark);
}

.policy-block h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
margin-top: 15px;
}

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

.policy-block ul {
margin-left: 20px;
margin-bottom: 15px;
}

.policy-block li {
font-size: 15px;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 8px;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: var(--bg-white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: left 0.3s;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.hero-content h1 {
font-size: 32px;
}

.hero-content p {
font-size: 15px;
}

.section-header h2 {
font-size: 26px;
}

.features-wrapper,
.content-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 35px;
}

.content-wrapper.reverse {
direction: ltr;
}

.services-grid,
.products-grid,
.benefits-grid,
.specs-grid {
grid-template-columns: 1fr;
}

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

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

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

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

.privacy-buttons {
justify-content: center;
}

.page-hero h1 {
font-size: 30px;
}

.cta-content h2 {
font-size: 26px;
}

.error-number {
font-size: 80px;
}
}

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

.hero-content h1 {
font-size: 26px;
}

.hero-buttons {
flex-direction: column;
}

.btn {
width: 100%;
text-align: center;
}

.service-card,
.product-card,
.benefit-card,
.spec-item {
padding: 22px;
}

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

.thankyou-section,
.error-section {
padding: 60px 0;
}
}

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

.container {
padding: 0 15px;
}
}
