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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--text: #334155;
--border: #e2e8f0;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.privacy-content h3 {
color: #fff;
font-size: 1.1rem;
margin-bottom: 5px;
}

.privacy-content p {
font-size: 13px;
opacity: 0.9;
}

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

.btn-accept, .btn-learn {
padding: 10px 24px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--primary);
color: #fff;
}

.btn-accept:hover {
background: #1d4ed8;
}

.btn-learn {
background: transparent;
color: #fff;
border: 1px solid #fff;
display: inline-block;
}

.btn-learn:hover {
background: #fff;
color: var(--dark);
}

.header-unique {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

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

.logo a {
font-family: 'Syne', sans-serif;
font-size: 17px;
font-weight: 500;
color: var(--primary);
}

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

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

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

.nav-menu a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

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

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

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

.mega-hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 100px 0 80px;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

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

.shape-1 {
width: 500px;
height: 500px;
background: var(--accent);
top: -200px;
right: -100px;
animation: float 20s infinite ease-in-out;
}

.shape-2 {
width: 300px;
height: 300px;
background: #fff;
bottom: -100px;
left: -50px;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 400px;
height: 400px;
background: var(--accent);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: pulse 10s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes pulse {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
50% { transform: translate(-50%, -50%) scale(1.1); }
}

.mega-hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto;
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(255, 255, 255, 0.3);
}

.mega-hero-content h1 {
font-size: 3.5rem;
color: #fff;
margin-bottom: 25px;
line-height: 1.1;
}

.mega-hero-content > p {
font-size: 1.2rem;
margin-bottom: 40px;
opacity: 0.95;
line-height: 1.7;
}

.hero-stats-inline {
display: flex;
justify-content: center;
gap: 50px;
margin-bottom: 40px;
flex-wrap: wrap;
}

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

.stat-inline strong {
display: block;
font-size: 2rem;
font-weight: 800;
color: var(--accent);
margin-bottom: 5px;
}

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

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

.btn-mega-primary, .btn-mega-secondary {
padding: 16px 40px;
font-size: 15px;
font-weight: 700;
border-radius: 10px;
transition: all 0.3s ease;
}

.btn-mega-primary {
background: var(--accent);
color: var(--dark);
}

.btn-mega-primary:hover {
background: #ea580c;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-mega-secondary {
background: rgba(255, 255, 255, 0.15);
color: #fff;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}

.btn-mega-secondary:hover {
background: rgba(255, 255, 255, 0.25);
border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
text-align: center;
color: #fff;
opacity: 0.8;
animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
display: block;
font-size: 12px;
margin-bottom: 5px;
}

.hero-scroll-indicator i {
font-size: 1.2rem;
}

@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(10px); }
}

.trust-bar {
background: var(--light);
padding: 30px 0;
border-bottom: 1px solid var(--border);
}

.trust-bar p {
text-align: center;
font-size: 13px;
color: var(--text);
margin-bottom: 15px;
opacity: 0.7;
}

.trust-logos {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.trust-logos span {
font-size: 14px;
font-weight: 600;
color: var(--text);
opacity: 0.6;
}

.value-props {
padding: 80px 0;
}

.value-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.value-card {
text-align: center;
padding: 35px 25px;
background: #fff;
border: 1px solid var(--border);
border-radius: 12px;
transition: all 0.3s ease;
}

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

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

.value-icon i {
font-size: 2rem;
color: #fff;
}

.value-card h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.value-card p {
font-size: 14px;
line-height: 1.7;
}

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

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

.showcase-visual {
position: relative;
}

.showcase-visual img {
border-radius: 15px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.visual-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(--accent);
color: var(--dark);
padding: 10px 20px;
border-radius: 8px;
font-size: 13px;
font-weight: 700;
}

.showcase-content h2 {
margin-bottom: 20px;
}

.showcase-content > p {
font-size: 1.05rem;
margin-bottom: 30px;
line-height: 1.8;
}

.feature-highlights {
margin-bottom: 30px;
}

.highlight-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.highlight-item i {
font-size: 1.5rem;
color: var(--primary);
flex-shrink: 0;
margin-top: 3px;
}

.highlight-item h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}

.highlight-item p {
font-size: 14px;
line-height: 1.6;
}

.solutions-grid {
padding: 80px 0;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

.section-intro h2 {
margin-bottom: 15px;
}

.section-intro p {
font-size: 1.05rem;
color: var(--text);
}

.solutions-layout {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

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

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

.solution-card h3 {
color: var(--primary);
margin-bottom: 15px;
font-size: 1.4rem;
}

.solution-card p {
margin-bottom: 20px;
line-height: 1.7;
}

.solution-card ul {
list-style: none;
}

.solution-card li {
padding: 8px 0;
font-size: 14px;
padding-left: 20px;
position: relative;
}

.solution-card li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}

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

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

.pricing-header h2 {
margin-bottom: 15px;
}

.pricing-header p {
font-size: 1.05rem;
color: var(--text);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.price-card {
background: #fff;
border: 2px solid var(--border);
border-radius: 15px;
padding: 40px 30px;
text-align: center;
transition: all 0.3s ease;
position: relative;
}

.price-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.price-card.featured {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--dark);
padding: 6px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
}

.plan-header {
margin-bottom: 25px;
}

.plan-header h3 {
font-size: 1.6rem;
margin-bottom: 8px;
}

.plan-header p {
font-size: 14px;
color: var(--text);
opacity: 0.7;
}

.plan-price {
margin-bottom: 30px;
}

.currency {
font-size: 1.5rem;
font-weight: 700;
color: var(--text);
vertical-align: top;
}

.amount {
font-size: 3rem;
font-weight: 900;
color: var(--primary);
}

.period {
font-size: 1rem;
color: var(--text);
}

.plan-features {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.plan-features li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

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

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

.btn-plan {
display: block;
width: 100%;
padding: 14px;
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.btn-plan:hover {
background: var(--primary);
color: #fff;
}

.btn-plan.primary {
background: var(--primary);
color: #fff;
}

.btn-plan.primary:hover {
background: #1d4ed8;
}

.testimonials-section {
padding: 80px 0;
}

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

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

.testimonial-item {
background: #fff;
padding: 35px;
border-radius: 12px;
border: 1px solid var(--border);
position: relative;
}

.quote-mark {
font-size: 4rem;
color: var(--primary);
opacity: 0.2;
line-height: 1;
margin-bottom: 10px;
font-family: Georgia, serif;
}

.testimonial-item p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

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

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

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

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

.integration-text h2 {
margin-bottom: 20px;
}

.integration-text > p {
font-size: 1.05rem;
margin-bottom: 30px;
line-height: 1.8;
}

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

.benefit-point {
display: flex;
align-items: center;
gap: 15px;
}

.benefit-point i {
font-size: 1.5rem;
color: var(--accent);
flex-shrink: 0;
}

.benefit-point span {
font-size: 15px;
font-weight: 500;
}

.integration-visual img {
border-radius: 15px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.cta-box {
text-align: center;
color: #fff;
max-width: 800px;
margin: 0 auto;
}

.cta-box h2 {
color: #fff;
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-box > p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
}

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

.btn-cta-primary, .btn-cta-secondary {
padding: 16px 40px;
font-size: 15px;
font-weight: 700;
border-radius: 10px;
transition: all 0.3s ease;
}

.btn-cta-primary {
background: var(--accent);
color: var(--dark);
}

.btn-cta-primary:hover {
background: #ea580c;
transform: translateY(-3px);
}

.btn-cta-secondary {
background: rgba(255, 255, 255, 0.15);
color: #fff;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
background: rgba(255, 255, 255, 0.25);
}

.cta-note {
font-size: 13px;
opacity: 0.8;
margin: 0;
}

.footer {
background: var(--dark);
color: #fff;
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
color: #fff;
margin-bottom: 15px;
font-size: 1.1rem;
}

.footer-col p, .footer-col a {
font-size: 13px;
line-height: 1.8;
color: rgba(255, 255, 255, 0.8);
display: block;
margin-bottom: 8px;
}

.footer-col a:hover {
color: var(--accent);
}

.footer-col i {
margin-right: 8px;
color: var(--accent);
}

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

.footer-bottom p {
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
}

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

.page-hero::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
background: var(--accent);
opacity: 0.1;
border-radius: 50%;
top: -100px;
right: -100px;
}

.page-hero h1 {
color: #fff;
margin-bottom: 15px;
font-size: 3rem;
}

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

.software-categories, .tools-showcase, .benefits-section, .industries-section, .comparison-section {
padding: 80px 0;
}

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

.category-card:hover, .tool-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: var(--primary);
}

.category-icon {
font-size: 3rem;
color: var(--primary);
margin-bottom: 20px;
}

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

.tool-header i {
font-size: 2.5rem;
color: var(--primary);
}

.category-card h3, .tool-card h3 {
margin-bottom: 15px;
color: var(--primary);
}

.category-card p, .tool-card p {
margin-bottom: 20px;
font-size: 14px;
line-height: 1.7;
}

.feature-list, .tool-features {
list-style: none;
}

.feature-list li, .tool-features li {
padding: 8px 0;
font-size: 14px;
padding-left: 20px;
position: relative;
}

.feature-list li::before, .tool-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}

.benefits-section {
background: var(--light);
}

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

.benefits-image img, .automation-image img {
border-radius: 15px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefit-items, .automation-benefits {
margin-top: 30px;
}

.benefit-item, .auto-benefit {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.benefit-item i, .auto-benefit i {
font-size: 1.5rem;
color: var(--accent);
flex-shrink: 0;
margin-top: 3px;
}

.benefit-item h4, .auto-benefit h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}

.benefit-item p, .auto-benefit p {
font-size: 14px;
line-height: 1.6;
}

.industries-section {
background: var(--light);
}

.industry-item {
text-align: center;
padding: 30px 20px;
background: #fff;
border-radius: 10px;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.industry-item:hover {
border-color: var(--primary);
transform: translateY(-5px);
}

.industry-item i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 12px;
}

.industry-item h4 {
font-size: 14px;
}

.comparison-section {
background: var(--light);
}

.comparison-table {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
background: #fff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-col {
text-align: center;
}

.comparison-col h3 {
margin-bottom: 20px;
font-size: 1.3rem;
}

.comp-price {
font-size: 2rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 20px;
}

.comparison-col ul {
list-style: none;
}

.comparison-col ul li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
}

.comparison-col.featured {
background: var(--light);
padding: 20px;
border-radius: 10px;
}

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

.contact-hero::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
background: var(--accent);
opacity: 0.1;
border-radius: 50%;
bottom: -100px;
left: -100px;
}

.contact-hero h1 {
color: #fff;
margin-bottom: 15px;
}

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

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

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

.contact-info-side h2 {
margin-bottom: 15px;
}

.contact-info-side > p {
margin-bottom: 35px;
font-size: 15px;
line-height: 1.7;
}

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

.contact-method {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

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

.method-icon i {
font-size: 1.4rem;
color: #fff;
}

.method-details h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}

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

.method-details span {
font-size: 13px;
color: var(--text);
opacity: 0.7;
}

.business-hours {
background: var(--light);
padding: 25px;
border-radius: 10px;
}

.business-hours h4 {
margin-bottom: 15px;
}

.hours-list {
display: flex;
flex-direction: column;
gap: 10px;
}

.hour-item {
display: flex;
justify-content: space-between;
font-size: 14px;
padding: 8px 0;
border-bottom: 1px solid var(--border);
}

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

.contact-form-side {
background: #fff;
border: 1px solid var(--border);
border-radius: 12px;
padding: 40px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
margin-bottom: 25px;
}

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

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

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

.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

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

.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: 80px 0;
background: var(--light);
}

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

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

.faq-section {
padding: 80px 0;
}

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

.faq-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.faq-item {
background: #fff;
padding: 25px;
border-radius: 10px;
border: 1px solid var(--border);
}

.faq-item h4 {
margin-bottom: 10px;
font-size: 1.1rem;
color: var(--primary);
}

.faq-item p {
font-size: 14px;
line-height: 1.7;
}

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

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
}

.success-icon {
font-size: 5rem;
color: var(--primary);
margin-bottom: 25px;
}

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

.thankyou-content h1, .error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p, .error-content p {
font-size: 1.05rem;
margin-bottom: 25px;
line-height: 1.7;
}

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

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

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

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

.error-suggestions h3 {
margin-bottom: 15px;
font-size: 1.2rem;
}

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

.error-suggestions li {
padding: 8px 0;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

.error-suggestions i {
color: var(--accent);
}

.policy-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: #fff;
padding: 80px 0;
text-align: center;
}

.policy-hero h1 {
color: #fff;
margin-bottom: 15px;
}

.policy-hero p {
font-size: 14px;
opacity: 0.9;
}

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

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

.policy-text h2 {
margin-top: 40px;
margin-bottom: 20px;
font-size: 1.8rem;
color: var(--primary);
}

.policy-text h3 {
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.4rem;
}

.policy-text p {
margin-bottom: 20px;
line-height: 1.8;
font-size: 15px;
}

.policy-text ul, .policy-text ol {
margin-bottom: 20px;
padding-left: 30px;
}

.policy-text li {
margin-bottom: 10px;
line-height: 1.7;
font-size: 15px;
}

@media (max-width: 1024px) {
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
.mega-hero-content h1 { font-size: 3rem; }
.value-grid { grid-template-columns: repeat(2, 1fr); }
.solutions-layout { grid-template-columns: 1fr; }
.comparison-table { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
body { font-size: 14px; }
.container { padding: 0 15px; }
.nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 20px; gap: 15px; }
.nav-menu.active { display: flex; }
.menu-toggle { display: flex; }
.mega-hero { min-height: auto; padding: 80px 0 60px; }
.mega-hero-content h1 { font-size: 2.2rem; }
.mega-hero-content > p { font-size: 1.05rem; }
.hero-stats-inline { gap: 30px; }
.stat-inline strong { font-size: 1.5rem; }
.hero-scroll-indicator { display: none; }
.value-grid { grid-template-columns: 1fr; }
.showcase-split, .benefits-layout, .automation-layout, .integration-content { grid-template-columns: 1fr; gap: 40px; }
.pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
.contact-grid, .faq-grid { grid-template-columns: 1fr; }
.footer-content { grid-template-columns: repeat(2, 1fr); }
.comparison-table { grid-template-columns: 1fr; }
.value-props, .platform-showcase, .solutions-grid, .pricing-showcase, .testimonials-section, .integration-section, .final-cta { padding: 60px 0; }
.page-hero { padding: 60px 0; }
.page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }
body { font-size: 13px; }
.mega-hero-content h1 { font-size: 1.8rem; }
.mega-hero-content > p { font-size: 1rem; }
.hero-stats-inline { flex-direction: column; gap: 20px; }
.stat-inline strong { font-size: 1.8rem; }
.hero-cta-mega { flex-direction: column; }
.btn-mega-primary, .btn-mega-secondary { width: 100%; text-align: center; padding: 14px 30px; }
.btn-primary, .btn-secondary { padding: 10px 20px; font-size: 13px; width: 100%; text-align: center; }
.value-card, .category-card, .tool-card, .solution-card { padding: 25px; }
.price-card { padding: 30px 20px; }
.amount { font-size: 2.5rem; }
.contact-form-side { padding: 25px; }
.error-code { font-size: 5rem; }
.success-icon { font-size: 4rem; }
.policy-text h2 { font-size: 1.3rem; }
.policy-text h3 { font-size: 1.2rem; }
.cta-box h2 { font-size: 2rem; }
.page-hero h1 { font-size: 1.8rem; }
.trust-logos { gap: 20px; }
.footer-content { grid-template-columns: 1fr;}
}

@media (max-width: 360px) {
.container { padding: 0 12px; }
h1 { font-size: 1.3rem; }
h2 { font-size: 1.2rem; }
body { font-size: 12px; }
.mega-hero-content h1 { font-size: 1.6rem; }
.mega-hero-content > p { font-size: 0.95rem; }
.btn-mega-primary, .btn-mega-secondary { padding: 12px 25px; font-size: 14px; }
.btn-primary, .btn-secondary { padding: 9px 18px; font-size: 12px; }
.value-card, .category-card, .tool-card, .solution-card, .price-card { padding: 20px; }
.contact-form-side { padding: 20px; }
.logo a { font-size: 0.8rem; }
.nav-menu a { font-size: 13px; }
.value-props, .platform-showcase, .solutions-grid, .pricing-showcase, .testimonials-section, .integration-section, .final-cta { padding: 50px 0; }
.page-hero h1 { font-size: 1.6rem; }
}

@media (max-width: 320px) {
.container { padding: 0 10px; }
h1 { font-size: 1.2rem; }
h2 { font-size: 1.1rem; }
h3 { font-size: 1rem; }
body { font-size: 12px; }
.mega-hero { padding: 60px 0 50px; }
.mega-hero-content h1 { font-size: 1.5rem; }
.mega-hero-content > p { font-size: 0.9rem; }
.hero-badge { font-size: 11px; padding: 6px 15px; }
.stat-inline strong { font-size: 1.5rem; }
.btn-mega-primary, .btn-mega-secondary { padding: 11px 22px; font-size: 13px; }
.btn-primary, .btn-secondary { padding: 8px 16px; font-size: 12px; }
.value-icon { width: 60px; height: 60px; }
.value-icon i { font-size: 1.7rem; }
.method-icon { width: 50px; height: 50px; }
.amount { font-size: 2.2rem; }
.error-code { font-size: 4rem; }
.success-icon { font-size: 3rem; }
.cta-box h2 { font-size: 1.7rem; }
.page-hero { padding: 50px 0; }
.page-hero h1 { font-size: 1.5rem; }
.value-props, .platform-showcase, .solutions-grid, .pricing-showcase, .testimonials-section, .integration-section, .final-cta { padding: 40px 0; }
}
