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

:root {
--primary: #0066ff;
--secondary: #00d4ff;
--accent: #7c3aed;
--dark: #0f172a;
--text: #334155;
--light: #f8fafc;
--white: #ffffff;
--border: #e2e8f0;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text);
font-size: 14px;
}

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

.header {
background: var(--white);
padding: 10px 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}

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

.logo {
font-size: 17px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
}

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

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

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

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

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

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

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(0,212,255,0.2) 0%, transparent 50%);
}

.hero-content-wrapper {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 40px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-text {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
margin-bottom: 16px;
backdrop-filter: blur(10px);
}

.hero-text h1 {
font-size: 38px;
line-height: 1.2;
margin-bottom: 16px;
font-weight: 800;
}

.hero-text p {
font-size: 16px;
margin-bottom: 28px;
opacity: 0.95;
line-height: 1.6;
}

.hero-actions {
display: flex;
gap: 12px;
margin-bottom: 32px;
}

.btn-hero-primary {
background: var(--white);
color: var(--primary);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: transform 0.2s, box-shadow 0.2s;
display: inline-block;
}

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

.btn-hero-secondary {
background: transparent;
color: var(--white);
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.2s;
display: inline-block;
}

.btn-hero-secondary:hover {
background: rgba(255,255,255,0.1);
border-color: var(--white);
}

.hero-stats {
display: flex;
gap: 32px;
}

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

.hero-stat-item strong {
font-size: 22px;
font-weight: 700;
}

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

.hero-visual {
display: grid;
gap: 16px;
}

.hero-card {
background: rgba(255,255,255,0.15);
backdrop-filter: blur(20px);
padding: 20px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.2);
animation: float 3s ease-in-out infinite;
}

.hero-card-1 {
animation-delay: 0s;
}

.hero-card-2 {
animation-delay: 0.5s;
}

.hero-card-3 {
animation-delay: 1s;
}

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

.card-icon {
font-size: 28px;
margin-bottom: 8px;
}

.hero-card h4 {
color: var(--white);
font-size: 15px;
margin-bottom: 4px;
}

.hero-card p {
color: rgba(255,255,255,0.9);
font-size: 12px;
margin: 0;
}

.btn-primary {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 10px 24px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 13px;
transition: all 0.2s;
}

.btn-primary:hover {
background: var(--accent);
transform: translateY(-2px);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 10px 24px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 13px;
border: 2px solid var(--primary);
transition: all 0.2s;
}

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

section {
padding: 60px 0;
}

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

.section-label {
display: inline-block;
color: var(--primary);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.section-desc {
color: var(--text);
font-size: 15px;
max-width: 600px;
margin: 8px auto 0;
}

h2 {
font-size: 32px;
margin-bottom: 12px;
font-weight: 700;
color: var(--dark);
}

h3 {
font-size: 18px;
margin-bottom: 8px;
font-weight: 600;
color: var(--dark);
}

p {
margin-bottom: 12px;
color: var(--text);
font-size: 14px;
line-height: 1.7;
}

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

.trust-text {
text-align: center;
font-size: 12px;
color: var(--text);
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 1px;
}

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

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

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

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

.feature-card {
padding: 28px;
border-radius: 12px;
border: 1px solid var(--border);
transition: all 0.3s;
}

.feature-card:hover {
border-color: var(--primary);
box-shadow: 0 8px 24px rgba(0,102,255,0.1);
transform: translateY(-4px);
}

.feature-icon {
font-size: 36px;
margin-bottom: 16px;
}

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

.showcase {
background: var(--light);
}

.showcase-reverse {
background: var(--white);
}

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

.showcase-reverse .showcase-grid {
direction: rtl;
}

.showcase-reverse .showcase-content {
direction: ltr;
}

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

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

.showcase-list li {
padding: 8px 0 8px 28px;
position: relative;
font-size: 14px;
}

.showcase-list li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
font-size: 16px;
}

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

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

.integration-category {
background: var(--light);
padding: 20px;
border-radius: 8px;
text-align: center;
}

.integration-category h3 {
font-size: 15px;
margin-bottom: 8px;
color: var(--primary);
}

.integration-category p {
font-size: 12px;
margin: 0;
}

.testimonials {
background: var(--light);
}

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

.testimonial {
background: var(--white);
padding: 28px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

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

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

.testimonial-author strong {
display: block;
font-weight: 600;
color: var(--dark);
font-size: 14px;
margin-bottom: 4px;
}

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

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: var(--white);
}

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

.cta-text h2 {
color: var(--white);
margin-bottom: 12px;
}

.cta-text p {
color: rgba(255,255,255,0.95);
margin-bottom: 20px;
font-size: 15px;
}

.cta-benefits {
list-style: none;
}

.cta-benefits li {
padding: 8px 0 8px 28px;
position: relative;
color: var(--white);
font-size: 14px;
}

.cta-benefits li:before {
content: "✓";
position: absolute;
left: 0;
font-weight: 700;
}

.trial-form {
background: var(--white);
padding: 32px;
border-radius: 12px;
}

.trial-form input {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 14px;
margin-bottom: 12px;
}

.btn-cta {
width: 100%;
background: var(--primary);
color: var(--white);
padding: 12px;
border-radius: 6px;
border: none;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.2s;
}

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

.cta-note {
text-align: center;
font-size: 11px;
color: var(--text);
margin: 12px 0 0;
}

.cta-actions {
display: flex;
gap: 12px;
}

.btn-cta-secondary {
background: transparent;
color: var(--white);
padding: 12px 28px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.2s;
display: inline-block;
}

.btn-cta-secondary:hover {
background: rgba(255,255,255,0.1);
border-color: var(--white);
}

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

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 32px;
margin-bottom: 32px;
}

.footer-section h4 {
font-size: 15px;
margin-bottom: 16px;
color: var(--white);
}

.footer-section p {
font-size: 13px;
color: rgba(255,255,255,0.7);
line-height: 1.6;
}

.footer-section a {
display: block;
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
transition: color 0.3s;
}

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

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

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

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

.page-hero h1 {
font-size: 36px;
margin-bottom: 12px;
font-weight: 700;
}

.page-hero p {
font-size: 16px;
opacity: 0.95;
color: var(--white);
max-width: 700px;
margin: 0 auto;
}

.products-showcase {
padding: 60px 0;
}

.product-card {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 40px;
margin-bottom: 60px;
align-items: center;
}

.product-card:nth-child(even) {
direction: rtl;
}

.product-card:nth-child(even) .product-info {
direction: ltr;
}

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

.product-info {
padding: 20px;
}

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

.product-price {
font-size: 32px;
font-weight: 700;
color: var(--primary);
margin-bottom: 16px;
}

.product-price span {
font-size: 16px;
color: var(--text);
}

.product-features {
list-style: none;
margin: 20px 0;
}

.product-features li {
padding: 8px 0 8px 24px;
position: relative;
font-size: 13px;
color: var(--text);
}

.product-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

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

.comparison-table {
overflow-x: auto;
}

.comparison-table table {
width: 100%;
border-collapse: collapse;
background: var(--white);
border-radius: 8px;
overflow: hidden;
}

.comparison-table th,
.comparison-table td {
padding: 16px;
text-align: left;
border-bottom: 1px solid var(--border);
font-size: 13px;
}

.comparison-table th {
background: var(--primary);
color: var(--white);
font-weight: 600;
}

.comparison-table tr:last-child td {
border-bottom: none;
}

.pricing-plans {
padding: 60px 0;
}

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

.pricing-card {
background: var(--white);
padding: 32px 24px;
border-radius: 12px;
border: 2px solid var(--border);
text-align: center;
position: relative;
transition: all 0.3s;
}

.pricing-card:hover {
border-color: var(--primary);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,102,255,0.15);
}

.pricing-card.featured {
border-color: var(--primary);
box-shadow: 0 8px 30px rgba(0,102,255,0.2);
}

.badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--primary);
color: var(--white);
padding: 4px 16px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.price {
margin: 20px 0;
}

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

.period {
font-size: 14px;
color: var(--text);
}

.plan-description {
font-size: 13px;
margin-bottom: 20px;
color: var(--text);
}

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

.plan-features li {
padding: 8px 0 8px 24px;
font-size: 13px;
color: var(--text);
position: relative;
}

.plan-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

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

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

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

.faq-item h3 {
font-size: 15px;
margin-bottom: 8px;
}

.faq-item p {
font-size: 13px;
}

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

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

.contact-info h2 {
text-align: left;
font-size: 28px;
margin-bottom: 16px;
}

.info-item {
margin-bottom: 24px;
}

.info-item h3 {
font-size: 15px;
margin-bottom: 8px;
color: var(--primary);
}

.info-item p {
font-size: 13px;
}

.contact-form-wrapper h2 {
text-align: left;
font-size: 28px;
margin-bottom: 24px;
}

.contact-form {
background: var(--light);
padding: 32px;
border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 13px;
font-family: inherit;
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: 8px;
font-size: 12px;
cursor: pointer;
}

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

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

.contact-form button {
width: 100%;
padding: 12px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

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

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

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

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

.policy-page h1 {
font-size: 36px;
margin-bottom: 8px;
}

.update-date {
font-size: 12px;
color: var(--text);
margin-bottom: 32px;
}

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

.policy-content h2 {
font-size: 24px;
margin-top: 32px;
margin-bottom: 16px;
text-align: left;
}

.policy-content h3 {
font-size: 18px;
margin-top: 20px;
margin-bottom: 12px;
}

.policy-content p {
margin-bottom: 16px;
line-height: 1.7;
}

.policy-content ul {
margin: 16px 0;
padding-left: 24px;
}

.policy-content li {
margin-bottom: 8px;
color: var(--text);
font-size: 14px;
line-height: 1.6;
word-break: break-all;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: var(--white);
text-align: center;
padding: 20px;
}

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

.thankyou-icon {
font-size: 64px;
margin-bottom: 24px;
display: inline-block;
width: 100px;
height: 100px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
line-height: 100px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 32px;
margin-bottom: 16px;
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 32px;
opacity: 0.95;
color: var(--white);
}

.error-code {
font-size: 80px;
font-weight: 700;
margin-bottom: 16px;
}

.error-content h2 {
font-size: 28px;
margin-bottom: 16px;
color: var(--white);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 16px;
z-index: 1000;
box-shadow: 0 -2px 12px 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;
}

.privacy-content p {
margin: 0;
font-size: 13px;
color: var(--white);
}

.btn-accept {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
white-space: nowrap;
}

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 48px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 16px;
gap: 12px;
display: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav.active {
display: flex;
}

.menu-toggle {
display: flex;
}

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

.hero-content-wrapper {
grid-template-columns: 1fr;
gap: 32px;
}

.hero-text h1 {
font-size: 28px;
}

.hero-text p {
font-size: 14px;
}

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

.hero-stats {
gap: 20px;
}

h2 {
font-size: 26px;
}

.showcase-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.showcase-reverse .showcase-grid {
direction: ltr;
}

.product-card {
grid-template-columns: 1fr;
}

.product-card:nth-child(even) {
direction: ltr;
}

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

.cta-content {
grid-template-columns: 1fr;
gap: 32px;
}

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

.footer-content {
grid-template-columns: 1fr;
gap: 24px;
}

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

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

.hero-mega {
padding: 40px 0 32px;
}

.hero-text h1 {
font-size: 24px;
}

section {
padding: 40px 0;
}

h2 {
font-size: 22px;
}

.features-grid,
.testimonials-grid,
.integration-grid,
.faq-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.feature-card,
.testimonial,
.integration-category,
.faq-item {
padding: 20px;
}

.contact-form {
padding: 20px;
}

.trial-form {
padding: 24px;
}

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

.thankyou-icon {
font-size: 48px;
width: 80px;
height: 80px;
line-height: 80px;
}

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

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

.hero-actions {
gap: 8px;
}

.btn-hero-primary,
.btn-hero-secondary {
padding: 10px 20px;
font-size: 13px;
}
}

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

.logo {
font-size: 15px;
}

.hero-text h1 {
font-size: 20px;
}

h2 {
font-size: 20px;
}

.btn-primary,
.btn-secondary {
padding: 8px 16px;
font-size: 12px;
}

.product-price {
font-size: 28px;
}

.amount {
font-size: 36px;
}
}
