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

:root {
--primary: #2563eb;
--primary-dark: #1e40af;
--secondary: #0f172a;
--accent: #f59e0b;
--text: #1e293b;
--text-light: #64748b;
--bg: #ffffff;
--bg-light: #f8fafc;
--border: #e2e8f0;
}

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

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

header {
padding: 0;
background: transparent;
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}

body:not(.home-page) header {
background: var(--secondary);
position: relative;
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
font-weight: 700;
color: white;
position: relative;
padding-left: 35px;
flex-shrink: 0;
}

.logo::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 25px;
height: 25px;
background: var(--accent);
border-radius: 50%;
}

nav {
display: flex;
gap: 35px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 12px 30px;
border-radius: 50px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

nav a {
color: white;
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.3s;
position: relative;
}

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

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

.menu-toggle {
display: none;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 10px 15px;
border-radius: 8px;
font-size: 20px;
color: white;
cursor: pointer;
}

.hero {
padding: 180px 0 100px;
background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
color: white;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
border-radius: 50%;
}

.hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -5%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
border-radius: 50%;
}

.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
text-align: left;
}

.hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 25px;
line-height: 1.1;
background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-content p {
font-size: 19px;
margin-bottom: 40px;
opacity: 0.9;
max-width: 600px;
line-height: 1.7;
}

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

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

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

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

.btn-secondary:hover {
background: var(--bg-light);
transform: translateY(-2px);
}

section {
padding: 60px 0;
}

h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
text-align: center;
color: var(--secondary);
}

h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--secondary);
}

.services {
background: white;
position: relative;
}

.services::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
}

.service-card {
background: white;
padding: 40px 30px;
text-align: center;
transition: all 0.3s;
position: relative;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--accent));
transform: scaleX(0);
transition: transform 0.3s;
}

.service-card:hover::before {
transform: scaleX(1);
}

.service-card:hover {
background: var(--bg-light);
}

.service-card i {
font-size: 42px;
color: var(--primary);
margin-bottom: 20px;
display: inline-block;
transition: transform 0.3s;
}

.service-card:hover i {
transform: scale(1.1);
}

.service-card p {
color: var(--text-light);
font-size: 14px;
}

.about {
background: var(--secondary);
color: white;
position: relative;
overflow: hidden;
}

.about::before {
content: '';
position: absolute;
top: 20%;
right: -100px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
border-radius: 50%;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.about-text h2 {
color: white;
text-align: left;
}

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

.about-image {
position: relative;
}

.about-image::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
right: 20px;
bottom: 20px;
border: 2px solid var(--accent);
border-radius: 12px;
z-index: -1;
}

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

.process {
background: var(--bg-light);
position: relative;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
position: relative;
}

.process-steps::before {
content: '';
position: absolute;
top: 50px;
left: 10%;
right: 10%;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--accent));
z-index: 0;
}

.step {
background: white;
padding: 35px 25px;
border-radius: 16px;
text-align: center;
border: 2px solid var(--border);
position: relative;
z-index: 1;
transition: all 0.3s;
}

.step:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.step-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 15px;
line-height: 1;
}

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

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

.cta {
background: var(--primary);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
}

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

.cta-content {
position: relative;
z-index: 1;
}

.cta h2 {
color: white;
margin-bottom: 15px;
}

.cta p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.95;
}

.testimonials {
background: white;
}

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

.testimonial {
background: white;
padding: 35px;
border-radius: 16px;
border: 2px solid var(--border);
position: relative;
transition: all 0.3s;
}

.testimonial::before {
content: '"';
position: absolute;
top: 15px;
left: 20px;
font-size: 60px;
font-family: 'Space Grotesk', sans-serif;
color: var(--primary);
opacity: 0.1;
line-height: 1;
}

.testimonial:hover {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
transform: translateY(-3px);
}

.testimonial p {
font-style: italic;
color: var(--text-light);
margin-bottom: 20px;
font-size: 14px;
position: relative;
z-index: 1;
}

.testimonial-author {
font-weight: 600;
color: var(--secondary);
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.testimonial-author::before {
content: '';
width: 30px;
height: 2px;
background: var(--accent);
}

footer {
background: var(--secondary);
color: white;
padding: 30px 0;
font-size: 13px;
}

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

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

.footer-links a {
color: white;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.3s;
}

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

.page-hero {
background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
color: white;
padding: 120px 0 70px;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: -30%;
right: -5%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
border-radius: 50%;
}

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
position: relative;
z-index: 1;
}

.page-hero p {
font-size: 17px;
opacity: 0.9;
position: relative;
z-index: 1;
}

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

.faq-item {
background: white;
border: 1px solid var(--border);
border-radius: 8px;
margin-bottom: 15px;
overflow: hidden;
}

.faq-question {
padding: 20px 25px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s;
}

.faq-question:hover {
background: var(--bg-light);
}

.faq-question h3 {
margin: 0;
font-size: 16px;
}

.faq-question i {
color: var(--primary);
transition: transform 0.3s;
font-size: 14px;
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-answer p {
padding: 0 25px 20px;
color: var(--text-light);
font-size: 14px;
}

.faq-cta {
background: var(--bg-light);
text-align: center;
}

.faq-cta h2 {
margin-bottom: 15px;
}

.faq-cta p {
margin-bottom: 25px;
color: var(--text-light);
}

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

.contact-info-item {
text-align: center;
padding: 25px;
background: var(--bg-light);
border-radius: 8px;
}

.contact-info-item i {
font-size: 32px;
color: var(--primary);
margin-bottom: 15px;
}

.contact-info-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

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

.startup-intro {
background: var(--bg-light);
}

.intro-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.intro-content h2 {
margin-bottom: 25px;
}

.intro-content p {
color: var(--text-light);
margin-bottom: 20px;
font-size: 15px;
}

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

.product-card {
background: white;
border: 2px solid var(--border);
border-radius: 12px;
padding: 35px 25px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
}

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

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

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

.product-header h3 {
font-size: 24px;
margin-bottom: 15px;
}

.product-price {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--primary);
margin-bottom: 25px;
}

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

.product-features li {
padding: 10px 0;
color: var(--text-light);
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

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

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

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

.benefit-item {
text-align: center;
padding: 25px;
}

.benefit-item i {
font-size: 40px;
color: var(--primary);
margin-bottom: 20px;
}

.benefit-item p {
color: var(--text-light);
font-size: 14px;
}

.startup-cta {
background: var(--primary);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}

.startup-cta::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
border-radius: 50%;
}

.startup-cta h2 {
color: white;
margin-bottom: 15px;
position: relative;
z-index: 1;
}

.startup-cta p {
margin-bottom: 30px;
opacity: 0.95;
font-size: 16px;
position: relative;
z-index: 1;
}

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

.contact-form-section h2,
.contact-info-section h2 {
text-align: left;
font-size: 26px;
margin-bottom: 20px;
}

.contact-form-section p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 14px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 6px;
font-family: 'Sora', sans-serif;
font-size: 14px;
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: 13px;
color: var(--text-light);
}

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

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

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

.contact-detail {
display: flex;
gap: 15px;
}

.contact-detail i {
font-size: 24px;
color: var(--primary);
margin-top: 5px;
}

.contact-detail h3 {
font-size: 15px;
margin-bottom: 5px;
}

.contact-detail p {
color: var(--text-light);
font-size: 14px;
line-height: 1.6;
}

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

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

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

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

.thankyou-icon {
font-size: 70px;
color: #10b981;
margin-bottom: 25px;
}

.thankyou-content h1,
.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
color: var(--secondary);
}

.thankyou-content p,
.error-content p {
color: var(--text-light);
margin-bottom: 35px;
font-size: 15px;
line-height: 1.7;
}

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

.error-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 120px;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
line-height: 1;
margin-bottom: 20px;
}

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

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

.policy-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 15px;
color: var(--secondary);
}

.policy-date {
color: var(--text-light);
font-size: 13px;
margin-bottom: 35px;
}

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

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

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

.policy-content ul {
margin-bottom: 20px;
padding-left: 25px;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--secondary);
color: white;
padding: 20px;
z-index: 9999;
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 p {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 250px;
}

.privacy-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-buttons a {
color: white;
text-decoration: underline;
font-size: 13px;
}

.privacy-buttons button {
background: var(--accent);
color: white;
border: none;
padding: 10px 25px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

.privacy-buttons button:hover {
background: #d97706;
}

@media (max-width: 768px) {
header {
background: rgba(30, 41, 59, 0.95);
backdrop-filter: blur(10px);
position: fixed;
}

.logo {
color: white;
}

nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--secondary);
flex-direction: column;
padding: 40px 30px;
gap: 25px;
transition: left 0.3s;
border-radius: 0;
backdrop-filter: none;
}

nav.active {
left: 0;
}

nav a::after {
bottom: -8px;
}

.menu-toggle {
display: block;
}

.hero {
padding: 140px 0 80px;
}

.hero-content {
text-align: center;
}

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

.hero-content p {
font-size: 16px;
max-width: 100%;
}

h2 {
font-size: 26px;
}

.about-content {
grid-template-columns: 1fr;
}

.about-text h2 {
text-align: center;
}

.about-image {
order: -1;
}

.about-image::before {
top: -10px;
left: -10px;
right: 10px;
bottom: 10px;
}

.process-steps::before {
display: none;
}

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

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

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

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

.privacy-buttons {
width: 100%;
justify-content: center;
}
}

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

.hero {
padding: 120px 0 60px;
}

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

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

.hero::before,
.hero::after {
width: 300px;
height: 300px;
}

section {
padding: 40px 0;
}

h2 {
font-size: 22px;
margin-bottom: 30px;
}

.services-grid,
.process-steps,
.testimonials-grid,
.products-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

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

.logo {
font-size: 17px;
padding-left: 30px;
}

.logo::before {
width: 20px;
height: 20px;
}

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

.step-number {
font-size: 36px;
}

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

.thankyou-actions a,
.error-actions a {
width: 100%;
}

nav {
padding: 30px 20px;
}

nav a {
font-size: 15px;
}

.service-card,
.step,
.testimonial {
padding: 25px 20px;
}

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

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

.footer-links {
justify-content: center;
}
}

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

.logo {
font-size: 15px;
padding-left: 26px;
}

.logo::before {
width: 18px;
height: 18px;
}

.menu-toggle {
padding: 8px 12px;
font-size: 18px;
}

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

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

h2 {
font-size: 20px;
}

h3 {
font-size: 18px;
}

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

.service-card i {
font-size: 36px;
}

.step-number {
font-size: 32px;
}

.page-hero {
padding: 100px 0 60px;
}

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

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

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

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

nav {
padding: 25px 15px;
}

nav a {
font-size: 14px;
}
}
