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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

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

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

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

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

.privacy-content a {
color: var(--primary);
text-decoration: underline;
}

#acceptPrivacy {
background: var(--primary);
color: white;
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

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

.header.hidden {
transform: translateY(-100%);
}

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

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

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

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

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

.nav a:hover::after {
width: 100%;
}

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

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

.hero-modern {
padding: 80px 0 60px;
background: var(--light);
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.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: white;
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--accent);
bottom: -50px;
left: -50px;
}

.shape-3 {
width: 200px;
height: 200px;
background: white;
top: 50%;
left: 30%;
}

.hero-grid {
display: flex;
flex-direction: column;
gap: 40px;
position: relative;
z-index: 1;
}

.hero-text {
color: var(--dark);
text-align: center;
}

.hero-badge {
display: inline-block;
background: var(--primary);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
}

.hero-text h1 {
font-size: 3rem;
margin-bottom: 20px;
line-height: 1.1;
}

.hero-text p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.95;
}

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

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

.stat-item strong {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
}

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

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

.hero-image {
max-width: 800px;
margin: 0 auto;
}

.hero-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn {
display: inline-block;
padding: 12px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.3s;
border: 2px solid transparent;
}

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-large {
padding: 15px 40px;
font-size: 16px;
}

.trust-section {
padding: 30px 0;
background: white;
border-bottom: 1px solid #e2e8f0;
}

.trust-text {
text-align: center;
font-size: 13px;
color: var(--gray);
margin-bottom: 20px;
}

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

.trust-item {
font-size: 13px;
font-weight: 600;
color: var(--gray);
padding: 8px 20px;
background: var(--light);
border-radius: 6px;
}

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

.section-header h2 {
margin-bottom: 12px;
}

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

.features {
padding: 70px 0;
}

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

.feature-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.feature-card h3 {
margin-bottom: 12px;
}

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

.workflow {
padding: 70px 0;
background: white;
}

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

.step {
text-align: center;
}

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

.step h3 {
margin-bottom: 12px;
}

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

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

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

.showcase-list {
list-style: none;
margin: 25px 0;
}

.showcase-list li {
padding: 10px 0;
font-size: 15px;
color: var(--gray);
}

.showcase-list li::before {
content: '✓ ';
color: var(--primary);
font-weight: 700;
margin-right: 8px;
}

.showcase-visual {
position: relative;
height: 400px;
}

.showcase-box {
position: absolute;
border-radius: 12px;
}

.box-1 {
width: 60%;
height: 60%;
background: var(--primary);
top: 0;
left: 0;
opacity: 0.2;
}

.box-2 {
width: 50%;
height: 50%;
background: var(--secondary);
bottom: 0;
right: 0;
opacity: 0.3;
}

.box-3 {
width: 40%;
height: 40%;
background: var(--accent);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0.2;
}

.products {
padding: 70px 0;
}

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

.product-card {
background: white;
border-radius: 12px;
padding: 35px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s;
border: 2px solid transparent;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
border-color: var(--primary);
transform: scale(1.05);
}

.product-badge {
background: var(--primary);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
display: inline-block;
margin-bottom: 15px;
}

.product-card h3 {
margin-bottom: 20px;
}

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

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

.product-price .amount {
font-size: 2.5rem;
font-weight: 700;
}

.product-price .period {
font-size: 1rem;
color: var(--gray);
}

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

.product-features li {
padding: 10px 0;
font-size: 14px;
}

.testimonials {
padding: 70px 0;
background: 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: 12px;
border-left: 4px solid var(--primary);
}

.testimonial-rating {
color: #fbbf24;
margin-bottom: 15px;
font-size: 14px;
}

.testimonial-card p {
font-size: 14px;
font-style: italic;
margin-bottom: 20px;
color: var(--gray);
}

.testimonial-author strong {
display: block;
font-size: 15px;
margin-bottom: 3px;
}

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

.benefits {
padding: 70px 0;
}

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

.benefit-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
margin-bottom: 12px;
color: var(--primary);
}

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

.faq {
padding: 70px 0;
background: white;
}

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

.faq-item {
background: var(--light);
padding: 25px;
border-radius: 12px;
}

.faq-item h3 {
margin-bottom: 10px;
font-size: 1.1rem;
}

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

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

.final-cta-content h2 {
font-size: 2.2rem;
margin-bottom: 15px;
}

.final-cta-content p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.95;
}

.cta-note {
font-size: 13px;
margin-top: 15px;
opacity: 0.9;
}

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

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

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

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

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

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

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

.content-image-wrapper {
text-align: center;
}

.content-image-wrapper img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-detailed {
padding: 70px 0;
background: white;
}

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

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

.stat-card {
text-align: center;
padding: 30px;
background: white;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.tools-showcase {
padding: 70px 0;
}

.tools-list {
max-width: 900px;
margin: 0 auto;
}

.tool-item {
display: flex;
gap: 25px;
padding: 30px;
background: white;
border-radius: 12px;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tool-icon {
font-size: 2rem;
flex-shrink: 0;
}

.tool-content h3 {
margin-bottom: 8px;
}

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

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

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

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

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

.contact-info > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

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

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

.contact-item h3 {
font-size: 1rem;
margin-bottom: 5px;
}

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

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-size: 14px;
font-weight: 600;
}

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-family: inherit;
font-size: 14px;
transition: all 0.3s;
}

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

.checkbox-group {
flex-direction: row;
}

.checkbox-label {
display: flex;
gap: 10px;
cursor: pointer;
font-size: 13px;
font-weight: 400;
}

.checkbox-label input {
margin-top: 3px;
cursor: pointer;
}

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

.map-section {
padding: 70px 0;
background: white;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.thankyou-content h1 {
font-size: 2.2rem;
margin-bottom: 20px;
}

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

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

.thankyou-extra {
margin-top: 40px;
padding: 25px;
background: var(--light);
border-radius: 12px;
}

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

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

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

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

.error-links {
margin-top: 40px;
text-align: left;
display: inline-block;
}

.error-links ul {
list-style: none;
margin-top: 15px;
}

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

.error-links a {
color: var(--primary);
}

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

.policy-content {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 50px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-content h1 {
font-size: 2.2rem;
margin-bottom: 10px;
}

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

.policy-content h2 {
font-size: 1.6rem;
margin-top: 40px;
margin-bottom: 15px;
}

.policy-content h3 {
font-size: 1.2rem;
margin-top: 25px;
margin-bottom: 12px;
}

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

.policy-content ul,
.policy-content ol {
margin: 15px 0 15px 25px;
color: var(--gray);
line-height: 1.8;
}

.policy-content li {
margin-bottom: 8px;
}

.policy-content a {
color: var(--primary);
text-decoration: underline;
}

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

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

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

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
}

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

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

.nav.active {
transform: translateX(0);
}

.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(7px, -6px);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.hero-modern {
padding: 50px 0;
}

.hero-grid {
gap: 30px;
}

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

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

.hero-stats {
gap: 20px;
}

.features,
.workflow,
.products,
.testimonials,
.benefits,
.faq,
.final-cta,
.content-section,
.features-detailed,
.stats-section,
.tools-showcase,
.contact-section,
.map-section {
padding: 50px 0;
}

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

.showcase-visual {
height: 300px;
}

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

.policy-content {
padding: 30px 20px;
}

.thankyou-section,
.error-section {
padding: 60px 0;
min-height: calc(100vh - 150px);
}

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

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

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

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

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

.features-grid,
.workflow-steps,
.products-grid,
.testimonials-grid,
.benefits-grid,
.faq-grid,
.stats-grid {
grid-template-columns: 1fr;
}

.product-card.featured {
transform: scale(1);
}

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

.btn {
width: 100%;
}
}

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

.logo {
font-size: 1.1rem;
}

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

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

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

.stat-item strong {
font-size: 1.5rem;
}

.product-price .amount {
font-size: 2rem;
}
}
