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

:root {
--primary: #2D5BFF;
--primary-dark: #1E3FCC;
--secondary: #FF6B35;
--accent: #00D9B5;
--dark: #1A1A2E;
--light: #F8F9FA;
--gray: #6C757D;
--white: #FFFFFF;
--border: #E0E0E0;
--shadow: rgba(0, 0, 0, 0.1);
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Sora', sans-serif;
font-weight: 700;
line-height: 1.3;
margin-bottom: 0.8rem;
}

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

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

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

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

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
text-align: center;
}

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

.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
}

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

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

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

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

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

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

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

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

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

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

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

.hero {
background: linear-gradient(135deg, #2D5BFF 0%, #764ba2 100%);
color: var(--white);
padding: 120px 0 80px;
position: relative;
overflow: hidden;
min-height: 600px;
}

.hero-animated-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}

.floating-shape {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

.floating-shape.shape-1 {
width: 80px;
height: 80px;
top: 10%;
left: 10%;
animation-delay: 0s;
animation-duration: 15s;
}

.floating-shape.shape-2 {
width: 120px;
height: 120px;
top: 60%;
left: 80%;
animation-delay: 2s;
animation-duration: 18s;
}

.floating-shape.shape-3 {
width: 60px;
height: 60px;
top: 30%;
left: 70%;
animation-delay: 4s;
animation-duration: 20s;
}

.floating-shape.shape-4 {
width: 100px;
height: 100px;
top: 70%;
left: 20%;
animation-delay: 1s;
animation-duration: 16s;
}

.floating-shape.shape-5 {
width: 90px;
height: 90px;
top: 20%;
left: 50%;
animation-delay: 3s;
animation-duration: 22s;
}

@keyframes float {
0%, 100% {
transform: translate(0, 0) scale(1);
opacity: 0.3;
}
25% {
transform: translate(30px, -30px) scale(1.1);
opacity: 0.5;
}
50% {
transform: translate(-20px, 20px) scale(0.9);
opacity: 0.4;
}
75% {
transform: translate(40px, 10px) scale(1.05);
opacity: 0.6;
}
}

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

.hero-content-wrapper {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.hero-label {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
letter-spacing: 0.5px;
backdrop-filter: blur(10px);
}

.hero-main h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
font-weight: 700;
}

.hero-main p {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.95;
line-height: 1.7;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-cta {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 4rem;
flex-wrap: wrap;
}

.hero-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
max-width: 700px;
margin: 0 auto;
}

.hero-feature {
background: rgba(255, 255, 255, 0.1);
padding: 25px 20px;
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}

.hero-feature:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-5px);
}

.feature-value {
display: block;
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.feature-label {
display: block;
font-size: 14px;
opacity: 0.9;
}

.features {
padding: 60px 0;
background: var(--light);
}

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

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 4px solid var(--primary);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px var(--shadow);
}

.feature-card h3 {
margin-bottom: 0.8rem;
color: var(--primary);
}

.feature-card p {
font-size: 14px;
color: var(--gray);
}

.showcase {
padding: 70px 0;
}

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

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

.showcase-text p {
margin-bottom: 1rem;
color: var(--gray);
}

.showcase-image img {
border-radius: 12px;
box-shadow: 0 10px 30px var(--shadow);
width: 100%;
}

.process {
padding: 60px 0;
background: var(--light);
text-align: center;
}

.process h2 {
margin-bottom: 3rem;
}

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

.step {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
}

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

.step h3 {
margin-bottom: 0.8rem;
}

.step p {
font-size: 14px;
color: var(--gray);
}

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

.testimonials h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--accent);
box-shadow: 0 4px 15px var(--shadow);
}

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

.testimonial-author {
border-top: 1px solid var(--border);
padding-top: 1rem;
}

.testimonial-author strong {
display: block;
color: var(--primary);
font-size: 15px;
margin-bottom: 0.3rem;
}

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

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

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

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

.delivery-text p {
margin-bottom: 1rem;
color: var(--gray);
}

.delivery-list {
list-style: none;
margin: 1.5rem 0 2rem;
}

.delivery-list li {
padding: 8px 0;
padding-left: 25px;
position: relative;
font-size: 15px;
}

.delivery-list li:before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 700;
}

.delivery-image img {
border-radius: 12px;
box-shadow: 0 10px 30px var(--shadow);
width: 100%;
}

.workflow-placeholder {
width: 100%;
height: 400px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
border-radius: 12px;
box-shadow: 0 10px 30px var(--shadow);
}

.info-section {
padding: 60px 0;
}

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

.info-card {
text-align: center;
padding: 25px;
background: var(--white);
border-radius: 8px;
border: 2px solid var(--border);
}

.info-card h3 {
margin-bottom: 0.8rem;
color: var(--primary);
}

.info-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.8;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 25px 0;
margin-top: auto;
}

.footer-content {
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 12px;
flex-wrap: wrap;
}

.footer-links a {
color: var(--white);
font-size: 13px;
opacity: 0.8;
}

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

.copyright {
font-size: 13px;
opacity: 0.7;
}

.page-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 70px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero .hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(45, 91, 255, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
z-index: 1;
}

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

.page-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.8rem;
}

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

.products {
padding: 70px 0;
}

.products h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.product-card {
background: var(--white);
border: 2px solid var(--border);
border-radius: 10px;
padding: 35px 25px;
text-align: center;
transition: all 0.3s ease;
position: relative;
}

.product-card:hover {
border-color: var(--primary);
box-shadow: 0 8px 25px var(--shadow);
transform: translateY(-5px);
}

.product-card.featured {
border-color: var(--primary);
background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary);
color: var(--white);
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-card h3 {
margin-bottom: 1rem;
color: var(--primary);
font-size: 1.5rem;
}

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

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
margin: 1rem 0;
}

.product-detail {
font-size: 13px;
color: var(--gray);
margin-bottom: 1.5rem;
}

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

.specifications h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.spec-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
border-top: 3px solid var(--accent);
}

.spec-item h3 {
margin-bottom: 0.8rem;
color: var(--dark);
}

.spec-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.8;
}

.benefits {
padding: 70px 0;
}

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

.benefits-image img {
border-radius: 12px;
box-shadow: 0 10px 30px var(--shadow);
width: 100%;
}

.benefits-text h2 {
margin-bottom: 1.5rem;
}

.benefits-list {
list-style: none;
margin-bottom: 2rem;
}

.benefits-list li {
padding: 10px 0;
padding-left: 25px;
font-size: 15px;
position: relative;
}

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

.services {
padding: 70px 0;
}

.services h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.service-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
padding: 30px;
transition: all 0.3s ease;
border-left: 4px solid var(--accent);
}

.service-card:hover {
border-color: var(--primary);
box-shadow: 0 6px 20px var(--shadow);
}

.service-card h3 {
margin-bottom: 0.8rem;
color: var(--primary);
}

.service-card p {
font-size: 14px;
color: var(--gray);
}

.workflow {
padding: 60px 0;
background: var(--light);
}

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

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

.workflow-text p {
margin-bottom: 1rem;
color: var(--gray);
}

.workflow-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 2rem;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
}

.stat-label {
font-size: 13px;
color: var(--gray);
}

.workflow-image img {
border-radius: 12px;
box-shadow: 0 10px 30px var(--shadow);
width: 100%;
}

.advantages {
padding: 70px 0;
}

.advantages h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.advantage-item {
text-align: center;
padding: 25px;
background: var(--white);
border-radius: 8px;
border: 2px solid var(--border);
transition: all 0.3s ease;
}

.advantage-item:hover {
border-color: var(--accent);
transform: translateY(-3px);
}

.advantage-item h3 {
margin-bottom: 0.8rem;
color: var(--primary);
}

.advantage-item p {
font-size: 14px;
color: var(--gray);
}

.contact-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 70px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.contact-hero .hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(45, 91, 255, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
z-index: 1;
}

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

.contact-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.8rem;
}

.contact-hero p {
font-size: 1.1rem;
opacity: 0.95;
}

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

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

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

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

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

.contact-item {
display: flex;
gap: 18px;
align-items: flex-start;
padding: 20px;
background: var(--light);
border-radius: 8px;
}

.contact-item h3 {
font-size: 1.1rem;
margin-bottom: 0.4rem;
color: var(--primary);
}

.contact-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.8;
}

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

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

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

.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-top: 15px;
}

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

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

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

.contact-form button {
width: 100%;
margin-top: 10px;
}

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

.map-section h2 {
text-align: center;
margin-bottom: 2rem;
}

.map-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 6px 20px var(--shadow);
}

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

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

.thankyou-icon {
margin-bottom: 1.5rem;
}

.check-circle {
width: 80px;
height: 80px;
background: #28a745;
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
font-weight: 700;
margin: 0 auto;
}

.thankyou-content h1 {
font-size: 2.2rem;
margin-bottom: 1rem;
color: var(--dark);
}

.thankyou-message {
font-size: 1.1rem;
color: var(--gray);
margin-bottom: 1.5rem;
}

.thankyou-info {
background: var(--light);
padding: 20px;
border-radius: 8px;
margin-bottom: 2rem;
}

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

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

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

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

.error-content p {
font-size: 1.05rem;
color: var(--gray);
margin-bottom: 2rem;
}

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

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

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

.policy-content h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}

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

.policy-block {
margin-bottom: 2.5rem;
}

.policy-block h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--dark);
}

.policy-block h3 {
font-size: 1.2rem;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
color: var(--dark);
}

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

.policy-title-spacing {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--border);
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

.menu-toggle {
display: flex;
}

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

.nav.active {
display: flex;
}

.nav a {
padding: 10px 0;
}

.hero {
padding: 80px 0 60px;
min-height: 500px;
}

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

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

.hero-features {
grid-template-columns: 1fr;
gap: 20px;
}

.feature-value {
font-size: 1.6rem;
}

.floating-shape.shape-1 {
width: 60px;
height: 60px;
}

.floating-shape.shape-2 {
width: 80px;
height: 80px;
}

.floating-shape.shape-3 {
width: 50px;
height: 50px;
}

.floating-shape.shape-4 {
width: 70px;
height: 70px;
}

.floating-shape.shape-5 {
width: 65px;
height: 65px;
}

.showcase-content,
.benefits-content,
.workflow-content,
.contact-wrapper,
.delivery-content {
grid-template-columns: 1fr;
gap: 30px;
}

.benefits-content .benefits-image,
.workflow-content .workflow-image,
.delivery-content .delivery-image {
order: -1;
}

.features-grid,
.process-steps,
.products-grid,
.specs-grid,
.services-grid,
.advantages-grid,
.info-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}

.workflow-stats {
grid-template-columns: 1fr;
}

.contact-form-wrapper {
padding: 30px 20px;
}

.thankyou-actions,
.error-actions,
.hero-buttons {
flex-direction: column;
}

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

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

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

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

.workflow-placeholder {
height: 250px;
}
}

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

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

.btn-primary, .btn-secondary, .btn-outline {
padding: 10px 20px;
font-size: 13px;
width: 100%;
}

.hero {
padding: 60px 0 50px;
min-height: 450px;
}

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

.hero-main p {
font-size: 0.95rem;
}

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

.hero-features {
grid-template-columns: 1fr;
gap: 15px;
}

.feature-value {
font-size: 1.4rem;
}

.floating-shape {
display: none;
}

.product-price {
font-size: 1.6rem;
}

.feature-card,
.product-card,
.service-card,
.advantage-item {
padding: 25px 20px;
}

.check-circle {
width: 60px;
height: 60px;
font-size: 2rem;
}

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

.page-hero h1,
.contact-hero h1 {
font-size: 1.7rem;
}

.page-hero p,
.contact-hero p {
font-size: 0.95rem;
}

.workflow-placeholder {
height: 200px;
}

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