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

:root {
--primary: #4f46e5;
--secondary: #06b6d4;
--accent: #f59e0b;
--dark: #0f172a;
--white: #ffffff;
--gray: #64748b;
--light: #f1f5f9;
}

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

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

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

.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: 1000;
transition: transform 0.3s;
}

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

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

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

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

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

.menu-toggle {
display: none;
background: none;
border: none;
width: 30px;
height: 25px;
cursor: pointer;
flex-direction: column;
justify-content: space-between;
}

.menu-toggle span {
display: block;
width: 100%;
height: 3px;
background: var(--dark);
transition: 0.3s;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px;
z-index: 9999;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
display: none;
}

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

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

.privacy-content p {
margin: 0;
font-size: 0.85rem;
}

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

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

#acceptPrivacy:hover {
background: var(--secondary);
}

.mega-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 120px 0 100px;
position: relative;
overflow: hidden;
}

.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: 400px;
height: 400px;
background: var(--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: var(--white);
top: 50%;
left: 30%;
}

.hero-center {
text-align: center;
color: var(--white);
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 2;
}

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

.hero-center h1 {
font-size: 3.5rem;
margin-bottom: 25px;
line-height: 1.1;
}

.hero-center > p {
font-size: 1.25rem;
margin-bottom: 40px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

.hero-image-wrapper {
margin: 0 auto 50px;
max-width: 800px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0,0,0,0.4);
transform: perspective(1000px) rotateX(2deg);
transition: transform 0.3s;
}

.hero-image-wrapper:hover {
transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.hero-image-wrapper img {
width: 100%;
border-radius: 20px;
}

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

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

.stat-number {
font-size: 1.8rem;
font-weight: 700;
color: var(--white);
margin-bottom: 5px;
}

.stat-label {
font-size: 0.9rem;
opacity: 0.9;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-product {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s;
border: 2px solid transparent;
text-align: center;
}

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

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

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

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

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

.btn-secondary:hover {
background: #d97706;
}

.btn-primary.large {
padding: 18px 40px;
font-size: 1.05rem;
}

.trust-section {
padding: 40px 0;
background: var(--light);
}

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

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

.trust-item {
font-size: 0.95rem;
font-weight: 600;
color: var(--gray);
opacity: 0.7;
}

section {
padding: 80px 0;
}

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

.section-tag {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 15px;
}

.section-header h2 {
font-size: 2.5rem;
margin-bottom: 15px;
color: var(--dark);
}

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

.features-modern {
background: var(--white);
}

.features-showcase {
max-width: 1100px;
margin: 0 auto;
}

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

.feature-visual {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-content h3 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--dark);
}

.feature-content > p {
font-size: 1.05rem;
color: var(--gray);
margin-bottom: 25px;
line-height: 1.7;
}

.feature-points {
list-style: none;
}

.feature-points li {
padding: 10px 0;
padding-left: 30px;
position: relative;
color: var(--gray);
font-size: 0.95rem;
}

.feature-points li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--secondary);
font-weight: 700;
font-size: 1.2rem;
}

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

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

.workflow-item {
background: var(--white);
padding: 35px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.workflow-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
margin-bottom: 15px;
}

.workflow-item h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--dark);
}

.workflow-item p {
color: var(--gray);
line-height: 1.7;
}

.testimonials-section {
background: var(--white);
}

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

.testimonial-card {
background: var(--light);
padding: 35px;
border-radius: 16px;
}

.testimonial-text {
font-size: 0.95rem;
color: var(--gray);
line-height: 1.7;
margin-bottom: 25px;
}

.author-name {
font-weight: 700;
color: var(--dark);
margin-bottom: 5px;
}

.author-role {
font-size: 0.85rem;
color: var(--gray);
}

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

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1100px;
margin: 0 auto;
}

.product-card {
background: var(--white);
padding: 40px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
position: relative;
transition: transform 0.3s;
}

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

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

.product-badge {
position: absolute;
top: -15px;
right: 30px;
background: var(--accent);
color: var(--white);
padding: 6px 18px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
}

.product-header h3 {
font-size: 1.6rem;
margin-bottom: 10px;
color: var(--dark);
}

.product-desc {
font-size: 0.9rem;
color: var(--gray);
margin-bottom: 25px;
min-height: 45px;
}

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

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

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

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

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

.product-features li {
padding: 12px 0;
font-size: 0.9rem;
color: var(--gray);
border-bottom: 1px solid var(--light);
}

.btn-product {
width: 100%;
background: var(--light);
color: var(--primary);
}

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

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

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

.integration-section {
background: var(--white);
}

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

.integration-text h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}

.integration-text p {
font-size: 1.05rem;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.integration-visual {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.faq-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

.faq-item {
background: var(--white);
padding: 30px;
border-radius: 16px;
}

.faq-item h3 {
font-size: 1.15rem;
margin-bottom: 12px;
color: var(--dark);
}

.faq-item p {
font-size: 0.95rem;
color: var(--gray);
line-height: 1.7;
}

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

.final-cta-content {
text-align: center;
color: var(--white);
max-width: 700px;
margin: 0 auto;
}

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

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

.cta-buttons {
margin-bottom: 25px;
}

.cta-note {
font-size: 0.85rem;
opacity: 0.8;
}

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

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

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

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

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

@media (max-width: 500px) {
.content-grid {
grid-template-columns: 1fr;
}
}

.content-text h2 {
font-size: 2rem;
margin-bottom: 20px;
}

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

.content-icon {
text-align: center;
font-size: 8rem;
color: var(--primary);
opacity: 0.1;
}

.features-detail {
background: var(--light);
}

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

.detail-card {
background: var(--white);
padding: 35px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.detail-card h3 {
font-size: 1.3rem;
margin-bottom: 12px;
color: var(--dark);
}

.detail-card p {
color: var(--gray);
line-height: 1.7;
}

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

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

.step {
text-align: center;
}

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

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

.step p {
font-size: 0.9rem;
color: var(--gray);
}

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

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

.benefit-box {
background: var(--white);
padding: 30px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.benefit-box h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}

.benefit-box p {
color: var(--gray);
line-height: 1.7;
}

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

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

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

.contact-info h2 {
font-size: 2rem;
margin-bottom: 35px;
}

.info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.info-item h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}

.info-item p {
font-size: 0.95rem;
color: var(--gray);
margin: 0;
}

.contact-form-wrapper {
background: var(--white);
padding: 45px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
font-size: 2rem;
margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 2px solid var(--light);
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 0.95rem;
transition: border-color 0.3s;
}

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

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

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

.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%;
padding: 16px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.contact-form button:hover {
background: var(--secondary);
}

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

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

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

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

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

.error-content h1 {
font-size: 6rem;
color: var(--primary);
margin-bottom: 20px;
}

.error-content h2, .thankyou-content h1 {
font-size: 2rem;
margin-bottom: 15px;
}

.error-content p, .thankyou-content p {
font-size: 1.1rem;
color: var(--gray);
margin-bottom: 35px;
}

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

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

.policy-section h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

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

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

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

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

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

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

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

.footer-info p {
margin: 0;
font-size: 0.85rem;
}

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

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 0.85rem;
transition: color 0.3s;
}

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

@media (max-width: 968px) {
.feature-main,
.integration-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.testimonials-grid,
.products-grid {
grid-template-columns: 1fr;
}

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

.workflow-grid,
.detail-grid,
.faq-grid,
.benefits-list {
grid-template-columns: 1fr;
}

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

.hero-stats {
gap: 30px;
}
}

@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
transition: left 0.3s;
}

.nav-menu.active {
left: 0;
}

.menu-toggle {
display: flex;
}

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

.hero-center h1 {
font-size: 2.5rem;
}

.hero-center > p {
font-size: 1.1rem;
}

.section-header h2 {
font-size: 2rem;
}

.hero-cta-group {
flex-direction: column;
align-items: center;
}

.hero-cta-group a {
width: 100%;
max-width: 300px;
}

.hero-stats {
flex-wrap: wrap;
justify-content: center;
gap: 40px;
}

.hero-image-wrapper {
transform: none;
margin-bottom: 40px;
}

.hero-image-wrapper:hover {
transform: translateY(-5px);
}

.process-steps {
grid-template-columns: 1fr;
}

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

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

section {
padding: 50px 0;
}

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

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

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

.section-header h2 {
font-size: 1.6rem;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-product {
padding: 12px 24px;
font-size: 0.9rem;
}

.stat-number {
font-size: 1.5rem;
}

.stat-label {
font-size: 0.8rem;
}

.product-card,
.workflow-item,
.detail-card,
.faq-item,
.benefit-box,
.testimonial-card {
padding: 25px;
}

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

.amount {
font-size: 2.2rem;
}
}

@media (max-width: 320px) {
.logo {
font-size: 1.1rem;
}

.hero-center h1 {
font-size: 1.5rem;
}

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

.section-header h2 {
font-size: 1.4rem;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-product {
padding: 10px 20px;
font-size: 0.85rem;
}

.hero-stats {
gap: 30px;
}

.stat-number {
font-size: 1.3rem;
}

.stat-label {
font-size: 0.75rem;
}
}

.info-item {
display: block;
margin-bottom: 30px;
}

.benefit-box {
display: block;
}

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