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

:root {
--primary: #6366f1;
--secondary: #4f46e5;
--accent: #818cf8;
--dark: #0f172a;
--light: #f1f5f9;
--gray: #64748b;
--white: #ffffff;
--border: #e2e8f0;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--dark);
background: var(--white);
font-size: 15px;
}

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

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

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

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

.main-nav {
position: relative;
}

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

.nav-toggle span {
width: 22px;
height: 2px;
background: var(--dark);
margin: 3px 0;
transition: 0.3s;
}

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

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

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

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

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-text {
max-width: 550px;
}

.hero-label {
display: inline-block;
background: rgba(255,255,255,0.2);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 20px;
}

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.1;
}

.hero p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.6;
color: #f1f5f9;
}

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

.hero-btn {
display: inline-block;
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
}

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

.hero-btn.secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}

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

.hero-visual {
position: relative;
}

.hero-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
transform: rotate(2deg);
transition: transform 0.3s;
}

.hero-card:hover {
transform: rotate(0deg) scale(1.02);
}

.hero-card img {
width: 100%;
height: auto;
display: block;
}

.page-hero {
background: var(--primary);
color: var(--white);
padding: 50px 20px;
text-align: center;
}

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

.page-hero p {
font-size: 15px;
opacity: 0.95;
color: var(--white);
}

section {
padding: 50px 20px;
}

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

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

p {
margin-bottom: 15px;
color: var(--gray);
}

.cta-btn, .btn {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.cta-btn:hover, .btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

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

.card, .designer-card, .product-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
padding: 20px;
transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover, .designer-card:hover, .product-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card img {
width: 100%;
height: auto;
border-radius: 6px;
margin-bottom: 15px;
}

.card-content {
padding: 20px 0;
}

.intro, .designers-intro, .resources-intro {
background: var(--light);
}

.intro-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}

.stat-box {
text-align: center;
padding: 25px;
background: var(--white);
border-radius: 8px;
border: 1px solid var(--border);
}

.stat-box strong {
display: block;
font-size: 32px;
color: var(--primary);
font-weight: 700;
margin-bottom: 8px;
}

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

.featured, .designers-grid, .products {
background: var(--white);
}

.why-choose, .designer-benefits, .resource-categories {
background: var(--light);
}

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

.category-list {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.category-tag {
background: var(--primary);
color: var(--white);
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
}

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

.testimonial {
background: var(--light);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.testimonial p {
font-style: italic;
margin-bottom: 10px;
}

.testimonial cite {
font-style: normal;
font-weight: 600;
color: var(--dark);
font-size: 13px;
}

.newsletter {
background: var(--primary);
color: var(--white);
text-align: center;
}

.newsletter h2 {
color: var(--white);
}

.newsletter p {
color: var(--white);
opacity: 0.95;
}

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

.section-intro {
max-width: 800px;
margin: 0 auto 40px;
text-align: center;
font-size: 16px;
}

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

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

.process-step {
text-align: center;
padding: 30px 20px;
background: var(--white);
border-radius: 8px;
border: 1px solid var(--border);
}

.step-number {
font-size: 48px;
font-weight: 800;
color: var(--primary);
opacity: 0.2;
margin-bottom: 15px;
}

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

.impact-item {
text-align: center;
padding: 30px;
background: var(--white);
border-radius: 8px;
border: 1px solid var(--border);
}

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

.impact-item p {
font-size: 14px;
}

.final-cta {
background: var(--dark);
color: var(--white);
padding: 60px 20px;
}

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

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

.cta-text p {
color: rgba(255,255,255,0.9);
margin-bottom: 25px;
font-size: 16px;
}

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

.feature-item, .benefit-item, .category-item {
background: var(--white);
padding: 20px;
border-radius: 8px;
border: 1px solid var(--border);
}

.specialty {
color: var(--primary);
font-weight: 600;
font-size: 13px;
margin-bottom: 10px;
}

.price {
font-size: 28px;
font-weight: 700;
color: var(--primary);
margin: 15px 0;
}

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

.contact-details {
margin-top: 25px;
}

.detail-item {
margin-bottom: 20px;
}

.detail-item h3 {
font-size: 16px;
margin-bottom: 5px;
}

.detail-item p {
font-size: 14px;
}

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

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

.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: 10px 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 14px;
font-family: inherit;
}

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

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 8px;
font-weight: 400;
}

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

.checkbox-group span {
font-size: 13px;
}

.checkbox-group a {
color: var(--primary);
}

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

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

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

.fullscreen-content h1 {
font-size: 48px;
margin-bottom: 15px;
}

.fullscreen-content h2 {
font-size: 24px;
color: var(--white);
margin-bottom: 15px;
}

.fullscreen-content p {
font-size: 16px;
margin-bottom: 25px;
color: var(--white);
opacity: 0.95;
}

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

.policy-page {
background: var(--white);
}

.policy-page h1 {
font-size: 32px;
margin-bottom: 10px;
}

.policy-page h2 {
font-size: 20px;
margin-top: 30px;
margin-bottom: 12px;
}

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

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

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

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

.footer-col p {
font-size: 13px;
color: rgba(255,255,255,0.8);
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 8px;
}

.footer-col ul li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-col ul li 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: 13px;
color: rgba(255,255,255,0.7);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
z-index: 1000;
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 {
font-size: 13px;
margin: 0;
color: var(--white);
}

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

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

.privacy-buttons button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

@media (max-width: 768px) {
.nav-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
right: 0;
background: var(--white);
flex-direction: column;
width: 200px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 15px;
gap: 15px;
display: none;
}

.nav-menu.active {
display: flex;
}

.hero {
padding: 50px 20px;
}

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

.hero h1 {
font-size: 32px;
}

.hero p {
font-size: 16px;
}

.hero-visual {
max-width: 400px;
margin: 0 auto;
}

.intro-stats {
grid-template-columns: 1fr;
gap: 20px;
}

.process-grid {
grid-template-columns: 1fr;
gap: 25px;
}

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

h2 {
font-size: 22px;
}

h3 {
font-size: 17px;
}

section {
padding: 35px 15px;
}

.grid-2, .grid-3 {
grid-template-columns: 1fr;
gap: 20px;
}

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

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

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

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

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

.logo {
font-size: 16px;
}

.hero {
padding: 40px 15px;
}

.hero h1 {
font-size: 26px;
}

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

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

.hero-btn {
width: 100%;
text-align: center;
}

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

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.cta-btn, .btn {
padding: 10px 22px;
font-size: 13px;
}

section {
padding: 30px 12px;
}

.card, .designer-card, .product-card {
padding: 15px;
}

.contact-form {
padding: 20px;
}

.fullscreen-content h1 {
font-size: 32px;
}

.impact-item h3 {
font-size: 26px;
}

.price {
font-size: 24px;
}
}

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

.header-container {
padding: 12px 15px;
}

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

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

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

h2 {
font-size: 18px;
}

section {
padding: 25px 10px;
}
}

@media (max-width: 320px) {
.hero h1 {
font-size: 22px;
}

.hero-btn {
padding: 12px 24px;
font-size: 14px;
}

h2 {
font-size: 17px;
}

.stat-box strong {
font-size: 26px;
}
}
