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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--dark: #1e293b;
--light: #f8fafc;
--gray: #64748b;
--white: #ffffff;
--accent: #06b6d4;
}

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

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

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

a {
text-decoration: none;
color: inherit;
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 18px 0;
z-index: 9999;
display: none;
}

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

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

.privacy-content p {
margin: 0;
font-size: 14px;
}

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

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
border: none;
transition: all 0.3s;
}

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

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

.btn-learn {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

.header-main {
background: var(--white);
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}

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

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

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

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--dark);
transition: color 0.3s;
}

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

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

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

.hero-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 80px 0;
}

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

.hero-content h1 {
margin-bottom: 20px;
}

.hero-content p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 15px;
}

.btn-primary, .btn-secondary, .btn-cta {
padding: 12px 28px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}

.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-secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}

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

.hero-visual {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.hero-card {
background: rgba(255,255,255,0.15);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 12px;
text-align: center;
}

.hero-card:first-child {
grid-column: 1 / -1;
}

.hero-card i {
font-size: 2.5rem;
margin-bottom: 15px;
}

.hero-card h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}

.hero-card p {
font-size: 13px;
opacity: 0.9;
}

.features-section, .services-section, .process-section, .pricing-section {
padding: 70px 0;
}

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

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

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

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

.feature-item {
text-align: center;
padding: 30px 20px;
}

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

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

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

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

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

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

.services-text p {
color: var(--gray);
margin-bottom: 25px;
}

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

.services-list li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
}

.services-list i {
color: var(--primary);
font-size: 1.1rem;
}

.services-image img {
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.process-step {
background: var(--white);
padding: 30px 20px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
text-align: center;
}

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

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

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

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

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

.pricing-card {
background: var(--white);
border-radius: 12px;
padding: 35px 25px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
position: relative;
transition: transform 0.3s;
}

.pricing-card:hover {
transform: translateY(-5px);
}

.pricing-card.featured {
border: 2px solid var(--primary);
}

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

.pricing-header {
text-align: center;
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
margin-bottom: 10px;
}

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

.pricing-features {
list-style: none;
margin-bottom: 25px;
}

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

.pricing-features i {
color: var(--primary);
}

.btn-pricing {
display: block;
text-align: center;
padding: 12px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
font-weight: 600;
transition: all 0.3s;
}

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

.cta-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 70px 0;
text-align: center;
}

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

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

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

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

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

.footer-content {
display: grid;
grid-template-columns: 2fr 3fr;
gap: 40px;
margin-bottom: 30px;
}

.footer-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 12px;
}

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

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

.footer-column h4 {
font-size: 0.95rem;
margin-bottom: 15px;
}

.footer-column a, .footer-column p {
display: block;
font-size: 13px;
opacity: 0.8;
margin-bottom: 8px;
transition: opacity 0.3s;
}

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

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-bottom p {
font-size: 13px;
opacity: 0.7;
}

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

.footer-legal a {
font-size: 13px;
opacity: 0.7;
transition: opacity 0.3s;
}

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

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

.page-hero-content h1 {
margin-bottom: 15px;
}

.page-hero-content p {
font-size: 16px;
margin-bottom: 25px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.design-approach, .ecommerce-intro {
padding: 70px 0;
}

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

.approach-content h2, .intro-content h2 {
margin-bottom: 20px;
}

.approach-content p, .intro-content p {
color: var(--gray);
margin-bottom: 30px;
}

.approach-features {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.approach-item i {
font-size: 1.8rem;
color: var(--primary);
flex-shrink: 0;
}

.approach-item h3 {
margin-bottom: 8px;
}

.approach-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.approach-image img, .intro-image img {
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.intro-list {
list-style: none;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}

.intro-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

.intro-list i {
color: var(--primary);
}

.design-features, .ecommerce-features {
padding: 70px 0;
background: var(--light);
}

.feature-box {
background: var(--white);
padding: 30px 20px;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-box i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 20px;
}

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

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

.design-benefits, .ecommerce-benefits {
padding: 70px 0;
}

.benefits-wrapper, .benefits-content {
max-width: 1000px;
margin: 0 auto;
}

.benefits-wrapper h2, .benefits-content h2 {
text-align: center;
margin-bottom: 50px;
}

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

.benefit-card, .benefit-item {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

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

.benefit-card h3, .benefit-item h3 {
margin-bottom: 12px;
}

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

.benefit-item i {
font-size: 2rem;
color: var(--primary);
margin-bottom: 15px;
}

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

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

.product-card {
background: var(--white);
border-radius: 12px;
padding: 35px 25px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
position: relative;
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-card.featured {
border: 2px solid var(--primary);
}

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

.product-header {
text-align: center;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #e2e8f0;
}

.product-header h3 {
margin-bottom: 8px;
}

.product-header p {
font-size: 13px;
color: var(--gray);
}

.product-price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
text-align: center;
margin-bottom: 20px;
}

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

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

.product-features i {
color: var(--primary);
}

.btn-product {
display: block;
text-align: center;
padding: 12px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
font-weight: 600;
transition: all 0.3s;
}

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

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

.contact-hero-content h1 {
margin-bottom: 15px;
}

.contact-hero-content p {
font-size: 16px;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

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

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

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

.contact-info-section > p {
color: var(--gray);
margin-bottom: 35px;
}

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

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

.method-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}

.method-details h3 {
margin-bottom: 5px;
font-size: 1rem;
}

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

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

.contact-hours h3 {
margin-bottom: 12px;
}

.contact-hours p {
font-size: 14px;
color: var(--gray);
margin-bottom: 5px;
}

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

.form-wrapper h2 {
margin-bottom: 10px;
}

.form-wrapper > p {
color: var(--gray);
margin-bottom: 30px;
font-size: 14px;
}

.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: '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 {
flex-direction: row;
align-items: flex-start;
}

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

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

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

.btn-submit {
padding: 14px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

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

.map-section {
padding: 70px 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);
}

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

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

.thankyou-icon {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
font-size: 3rem;
}

.thankyou-content h1 {
margin-bottom: 20px;
color: var(--primary);
}

.thankyou-content p {
color: var(--gray);
margin-bottom: 30px;
font-size: 15px;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 30px;
}

.thankyou-info {
background: var(--light);
padding: 20px;
border-radius: 8px;
}

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

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

.error-content h1 {
margin-bottom: 15px;
}

.error-content p {
color: var(--gray);
margin-bottom: 30px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 40px;
}

.error-links p {
color: var(--gray);
margin-bottom: 15px;
font-size: 14px;
}

.quick-links {
display: flex;
gap: 15px;
justify-content: center;
}

.quick-links a {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: var(--light);
border-radius: 8px;
font-size: 14px;
transition: all 0.3s;
}

.quick-links a:hover {
background: var(--primary);
color: var(--white);
}

.policy-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 50px 0;
text-align: center;
}

.policy-hero h1 {
margin-bottom: 10px;
}

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

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

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

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

.policy-text h3 {
margin-top: 30px;
margin-bottom: 15px;
}

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

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

.policy-text li {
margin-bottom: 10px;
color: var(--gray);
line-height: 1.8;
}

@media (max-width: 968px) {
.hero-grid, .services-content, .approach-grid, .intro-grid, .contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

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

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

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

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

.menu-toggle {
display: flex;
}

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

.hero-section, .page-hero, .contact-hero {
padding: 50px 0;
}

.features-section, .services-section, .process-section, .pricing-section, .design-approach, .ecommerce-intro, .design-features, .ecommerce-features, .design-benefits, .ecommerce-benefits, .products-section, .contact-main, .map-section, .policy-content {
padding: 50px 0;
}

.hero-visual {
grid-template-columns: 1fr;
}

.hero-card:first-child {
grid-column: 1;
}

.features-grid, .process-grid, .pricing-grid, .products-grid, .benefits-grid {
grid-template-columns: 1fr;
}

.intro-list {
grid-template-columns: 1fr;
}

.footer-links {
grid-template-columns: 1fr;
}

.footer-bottom {
flex-direction: column;
gap: 15px;
text-align: center;
}

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

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

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

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

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

.form-wrapper {
padding: 25px;
}
}
