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

:root {
--primary: #2563eb;
--primary-dark: #1e40af;
--secondary: #0891b2;
--accent: #06b6d4;
--dark: #0f172a;
--dark-light: #1e293b;
--gray: #64748b;
--gray-light: #cbd5e1;
--light: #f1f5f9;
--white: #ffffff;
--success: #10b981;
}

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

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

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

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

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

.nav {
display: flex;
gap: 25px;
align-items: center;
}

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

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

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

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

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

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

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

.privacy-content h3 {
font-size: 16px;
margin-bottom: 5px;
}

.privacy-content p {
font-size: 13px;
color: var(--gray-light);
}

.privacy-actions {
display: flex;
gap: 10px;
}

.btn-accept {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: background 0.3s;
}

.btn-accept:hover {
background: var(--primary-dark);
}

.btn-learn {
color: var(--white);
text-decoration: underline;
font-size: 13px;
}

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

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

.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(99,102,241,0.3);
}

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

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

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

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

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

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

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

.hero-bg-pattern {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.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(37, 99, 235, 0.2);
color: var(--accent);
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(6, 182, 212, 0.3);
}

.mega-hero-content h1 {
font-size: 52px;
margin-bottom: 20px;
line-height: 1.1;
font-weight: 700;
}

.mega-hero-content p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.6;
}

.hero-stats-inline {
display: flex;
gap: 30px;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.stat-inline strong {
font-size: 28px;
color: var(--accent);
font-weight: 700;
}

.stat-inline span {
font-size: 13px;
opacity: 0.8;
}

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

.mega-hero-visual {
position: relative;
}

.hero-image-wrapper {
position: relative;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image-wrapper img {
width: 100%;
height: auto;
display: block;
}

.floating-card {
position: absolute;
background: var(--white);
padding: 12px 18px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 10px;
animation: float 3s ease-in-out infinite;
}

.floating-card i {
font-size: 20px;
color: var(--primary);
}

.floating-card span {
font-size: 13px;
font-weight: 600;
color: var(--dark);
}

.card-1 {
top: 20px;
right: -20px;
animation-delay: 0s;
}

.card-2 {
bottom: 80px;
left: -30px;
animation-delay: 1s;
}

.card-3 {
bottom: 20px;
right: 20px;
animation-delay: 2s;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-35px); }
}

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

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

.section-header h2 {
font-size: 34px;
margin-bottom: 12px;
color: var(--dark);
}

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

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

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 10px;
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.feature-card h3 {
font-size: 19px;
margin-bottom: 12px;
color: var(--dark);
}

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

.showcase {
padding: 70px 0;
}

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

.showcase-text h2 {
font-size: 34px;
margin-bottom: 20px;
color: var(--dark);
}

.showcase-text p {
font-size: 15px;
color: var(--gray);
margin-bottom: 25px;
}

.showcase-list {
list-style: none;
margin-bottom: 30px;
}

.showcase-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 14px;
}

.showcase-list i {
color: var(--success);
font-size: 16px;
}

.showcase-image {
display: flex;
justify-content: center;
align-items: center;
}

.showcase-image i {
font-size: 200px;
color: var(--primary);
opacity: 0.1;
}

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

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

.project-card {
background: var(--white);
padding: 35px;
border-radius: 10px;
transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

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

.project-card h3 {
font-size: 19px;
margin-bottom: 12px;
color: var(--dark);
}

.project-card p {
font-size: 14px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.project-link {
color: var(--primary);
text-decoration: none;
font-weight: 500;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}

.project-link:hover {
gap: 12px;
}

.stats {
padding: 70px 0;
background: var(--dark);
color: var(--white);
}

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

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

.stat-number {
font-size: 44px;
font-weight: 700;
color: var(--primary);
margin-bottom: 8px;
}

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

.workflow {
padding: 70px 0;
background: var(--white);
}

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

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

.workflow-text h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.workflow-text > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
}

.workflow-steps {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.step-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.step-number {
font-size: 24px;
font-weight: 700;
color: var(--primary);
flex-shrink: 0;
width: 50px;
height: 50px;
background: rgba(37, 99, 235, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.step-content h4 {
font-size: 18px;
margin-bottom: 5px;
color: var(--dark);
}

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

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

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

.tech-category {
background: var(--white);
padding: 30px;
border-radius: 10px;
}

.tech-category h3 {
font-size: 20px;
margin-bottom: 20px;
color: var(--dark);
}

.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.tech-tag {
background: rgba(37, 99, 235, 0.1);
color: var(--primary);
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
}

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

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

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--primary);
}

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

.testimonial-author strong {
display: block;
font-size: 16px;
color: var(--dark);
margin-bottom: 5px;
}

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

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

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

.integration-text h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.integration-text > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 25px;
}

.integration-list {
list-style: none;
margin-bottom: 30px;
}

.integration-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 15px;
color: var(--dark);
}

.integration-list i {
color: var(--success);
font-size: 16px;
}

.integration-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.final-cta-content h2 {
font-size: 40px;
margin-bottom: 20px;
}

.final-cta-content p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

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

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

.footer {
background: var(--dark-light);
color: var(--gray-light);
padding: 25px 0;
}

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

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

.footer-links a {
color: var(--gray-light);
text-decoration: none;
transition: color 0.3s;
}

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

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

.page-hero h1 {
font-size: 38px;
margin-bottom: 12px;
}

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

.frameworks-catalog,
.projects-showcase,
.products-section,
.benefits-section {
padding: 70px 0;
}

.catalog-grid,
.showcase-grid {
display: grid;
gap: 25px;
}

.catalog-item,
.showcase-card {
background: var(--white);
padding: 35px;
border-radius: 10px;
border: 1px solid var(--gray-light);
transition: transform 0.3s, box-shadow 0.3s;
}

.catalog-item:hover,
.showcase-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: var(--primary);
}

.catalog-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.catalog-header i {
font-size: 32px;
color: var(--primary);
}

.catalog-header h3 {
font-size: 22px;
color: var(--dark);
}

.catalog-item p {
font-size: 14px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.catalog-features {
list-style: none;
margin-bottom: 20px;
}

.catalog-features li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
font-size: 13px;
color: var(--gray);
}

.catalog-features i {
color: var(--success);
font-size: 14px;
}

.catalog-tech {
display: flex;
gap: 8px;
flex-wrap: wrap;
}

.tech-badge {
background: var(--light);
color: var(--primary);
padding: 5px 12px;
border-radius: 15px;
font-size: 12px;
font-weight: 500;
}

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

.product-card {
background: var(--white);
padding: 35px;
border-radius: 10px;
border: 2px solid var(--gray-light);
transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
position: relative;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: var(--primary);
}

.product-card.featured {
border-color: var(--primary);
box-shadow: 0 5px 20px rgba(99,102,241,0.2);
}

.product-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--primary);
color: var(--white);
padding: 5px 15px;
border-radius: 15px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
}

.product-card h3 {
font-size: 22px;
margin-bottom: 20px;
color: var(--dark);
}

.product-price {
display: flex;
align-items: baseline;
margin-bottom: 25px;
}

.product-price .currency {
font-size: 20px;
color: var(--gray);
}

.product-price .amount {
font-size: 44px;
font-weight: 700;
color: var(--dark);
}

.product-price .period {
font-size: 15px;
color: var(--gray);
margin-left: 5px;
}

.product-features {
list-style: none;
margin-bottom: 30px;
}

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

.product-features i {
color: var(--success);
font-size: 14px;
}

.frameworks-cta,
.projects-cta {
padding: 70px 0;
background: var(--light);
}

.cta-box {
background: var(--white);
padding: 50px;
border-radius: 10px;
text-align: center;
max-width: 700px;
margin: 0 auto;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cta-box h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--dark);
}

.cta-box p {
font-size: 15px;
color: var(--gray);
margin-bottom: 25px;
}

.showcase-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.showcase-icon i {
font-size: 32px;
color: var(--white);
}

.showcase-info h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--dark);
}

.showcase-info p {
font-size: 14px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.showcase-tags {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-bottom: 20px;
}

.tag {
background: var(--light);
color: var(--primary);
padding: 5px 12px;
border-radius: 15px;
font-size: 12px;
font-weight: 500;
}

.showcase-btn {
color: var(--primary);
text-decoration: none;
font-weight: 500;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}

.showcase-btn:hover {
gap: 12px;
}

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

.benefits-text h2 {
font-size: 34px;
margin-bottom: 15px;
color: var(--dark);
}

.benefits-text > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

.benefit-item i {
font-size: 24px;
color: var(--primary);
flex-shrink: 0;
}

.benefit-item h4 {
font-size: 16px;
margin-bottom: 5px;
color: var(--dark);
}

.benefit-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

.benefits-visual {
display: flex;
justify-content: center;
align-items: center;
}

.benefits-visual i {
font-size: 200px;
color: var(--primary);
opacity: 0.1;
}

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

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

.contact-info h2 {
font-size: 32px;
margin-bottom: 15px;
color: var(--dark);
}

.contact-info > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

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

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

.info-text h4 {
font-size: 15px;
margin-bottom: 5px;
color: var(--dark);
font-weight: 600;
}

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

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

.contact-form h3 {
font-size: 24px;
margin-bottom: 25px;
color: var(--dark);
}

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

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

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

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-bottom: 25px;
}

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

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

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

.contact-form button {
width: 100%;
}

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

.map-section h2 {
font-size: 32px;
margin-bottom: 30px;
text-align: center;
color: var(--dark);
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
width: 100%;
height: 450px;
border: 0;
}

.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: 650px;
margin: 0 auto;
}

.thankyou-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, var(--success), var(--primary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

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

.thankyou-content h1 {
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

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

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

.thankyou-info {
background: var(--light);
padding: 25px;
border-radius: 8px;
margin-top: 30px;
}

.thankyou-info p {
font-size: 14px;
margin: 0;
}

.error-code {
font-size: 120px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 36px;
margin-bottom: 15px;
color: var(--dark);
}

.error-content > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
}

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

.error-suggestions {
background: var(--light);
padding: 30px;
border-radius: 8px;
text-align: left;
}

.error-suggestions h3 {
font-size: 18px;
margin-bottom: 15px;
color: var(--dark);
}

.error-suggestions ul {
list-style: none;
}

.error-suggestions li {
margin-bottom: 10px;
}

.error-suggestions a {
color: var(--primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
transition: gap 0.3s;
}

.error-suggestions a:hover {
gap: 15px;
}

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

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

.policy-content h1 {
font-size: 38px;
margin-bottom: 15px;
color: var(--dark);
}

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

.policy-content h2 {
font-size: 26px;
margin-top: 40px;
margin-bottom: 15px;
color: var(--dark);
}

.policy-content h3 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--dark);
}

.policy-content p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
margin-bottom: 15px;
padding-left: 25px;
}

.policy-content li {
font-size: 14px;
color: var(--gray);
margin-bottom: 8px;
line-height: 1.7;
}

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

.nav.active {
transform: translateY(0);
opacity: 1;
pointer-events: all;
}

.menu-toggle {
display: flex;
}

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

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

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

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

.mega-hero-grid,
.showcase-content,
.contact-wrapper,
.benefits-content,
.workflow-content,
.integration-content {
grid-template-columns: 1fr;
gap: 40px;
}

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

.hero-stats-inline {
gap: 20px;
}

.stat-inline strong {
font-size: 24px;
}

.floating-card {
position: static;
margin: 10px 0;
}

.section-header h2,
.showcase-text h2,
.benefits-text h2,
.workflow-text h2,
.integration-text h2 {
font-size: 28px;
}

.features-grid,
.projects-grid,
.products-grid,
.testimonials-grid,
.tech-categories {
grid-template-columns: 1fr;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}

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

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

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

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

.thankyou-content h1,
.error-content h1 {
font-size: 28px;
}

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

.policy-content h1 {
font-size: 30px;
}

.policy-content h2 {
font-size: 22px;
}

.policy-content h3 {
font-size: 18px;
}
}

@media (max-width: 480px) {
.mega-hero-content h1 {
font-size: 28px;
}

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

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

.hero-actions .btn,
.cta-actions .btn {
width: 100%;
text-align: center;
}

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

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

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

.thankyou-actions .btn,
.error-actions .btn {
width: 100%;
text-align: center;
}

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

.hero-stats-inline {
flex-direction: column;
gap: 15px;
}

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

.final-cta-content p {
font-size: 16px;
}

.workflow-text h2,
.integration-text h2 {
font-size: 24px;
}

.step-number {
width: 40px;
height: 40px;
font-size: 18px;
}

.tech-category {
padding: 20px;
}
}
