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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--white: #ffffff;
--gray: #64748b;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

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

.section-header {
text-align: center;
margin-bottom: 3rem;
}

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

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

.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: 14px;
flex: 1;
min-width: 250px;
}

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

.privacy-actions a {
color: var(--accent);
font-size: 14px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--light);
position: relative;
}

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

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

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

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

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

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav a {
font-size: 14px;
font-weight: 500;
color: var(--dark);
position: relative;
padding: 5px 0;
}

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

.btn-primary {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 30px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--primary);
}

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

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 12px 30px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--white);
}

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

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 12px 30px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--primary);
}

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

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

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
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: 10%;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--white);
top: 50%;
left: -50px;
}

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

.hero-label {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
}

.hero-text h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.1;
}

.hero-text p {
font-size: 1.2rem;
opacity: 0.95;
margin-bottom: 2rem;
}

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

.hero-visual {
position: relative;
}

.hero-card {
background: var(--white);
border-radius: 20px;
padding: 15px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
transform: rotate(3deg);
}

.hero-card img {
border-radius: 12px;
width: 100%;
height: auto;
}

section {
padding: 80px 0;
}

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

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

.service-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.service-number {
display: inline-block;
width: 50px;
height: 50px;
background: var(--primary);
color: var(--white);
border-radius: 10px;
line-height: 50px;
text-align: center;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 1.5rem;
}

.service-card h3 {
margin-bottom: 1rem;
color: var(--dark);
}

.service-card p {
font-size: 14px;
color: var(--gray);
margin: 0;
line-height: 1.7;
}

.featured-work {
background: var(--white);
}

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

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

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

.work-image img {
width: 100%;
height: auto;
transition: transform 0.3s ease;
}

.work-feature:hover .work-image img {
transform: scale(1.05);
}

.work-info h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--dark);
}

.work-info p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.work-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 1.5rem;
}

.work-tags span {
background: var(--light);
color: var(--primary);
padding: 6px 14px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
}

.work-link {
color: var(--primary);
font-weight: 600;
font-size: 15px;
}

.work-link:hover {
color: var(--secondary);
}

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

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

.approach-content p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

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

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

.stat-number {
font-size: 3rem;
font-weight: 800;
color: var(--primary);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 14px;
color: var(--gray);
font-weight: 500;
}

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

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

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

.testimonial-card p {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--dark);
font-weight: 600;
margin-bottom: 0.3rem;
}

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

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

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

.expertise-text p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

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

.expertise-image img {
width: 100%;
height: auto;
}

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

.cta-content h2 {
color: var(--white);
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.2rem;
opacity: 0.95;
margin-bottom: 2rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

.page-hero h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.2rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

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

.section-header p {
color: var(--gray);
max-width: 600px;
margin: 0.5rem auto 0;
}

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

.product-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
display: flex;
flex-direction: column;
position: relative;
transition: all 0.3s ease;
}

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

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

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

.product-header {
margin-bottom: 1.5rem;
}

.product-header h3 {
font-size: 1.6rem;
margin-bottom: 0.5rem;
}

.product-subtitle {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.product-price {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary);
font-family: 'Syne', sans-serif;
margin-bottom: 1.5rem;
}

.product-card ul {
list-style: none;
margin-bottom: 2rem;
flex-grow: 1;
}

.product-card ul li {
padding: 10px 0;
font-size: 14px;
color: var(--gray);
border-bottom: 1px solid var(--light);
padding-left: 20px;
position: relative;
}

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

.product-card ul li:last-child {
border-bottom: none;
}

.identity-showcase,
.web-projects {
background: var(--white);
}

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

.showcase-item {
background: var(--light);
padding: 30px;
border-radius: 12px;
position: relative;
}

.showcase-number,
.project-number,
.principle-number {
display: inline-block;
width: 40px;
height: 40px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
line-height: 40px;
text-align: center;
font-size: 1rem;
font-weight: 700;
margin-bottom: 1rem;
}

.showcase-item h3 {
color: var(--dark);
margin-bottom: 1rem;
}

.showcase-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
line-height: 1.8;
}

.identity-approach {
background: var(--light);
}

.approach-visual {
background: var(--white);
padding: 35px;
border-radius: 12px;
}

.process-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.process-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.process-num {
display: inline-block;
width: 40px;
height: 40px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
line-height: 40px;
text-align: center;
font-weight: 700;
flex-shrink: 0;
}

.process-item h4 {
margin-bottom: 0.3rem;
font-size: 1.1rem;
}

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

.projects-list {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 30px;
}

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

.project-info h3 {
color: var(--dark);
margin-bottom: 1rem;
}

.project-info p {
font-size: 14px;
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.project-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.project-tags span {
background: var(--white);
color: var(--primary);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
}

.design-principles {
background: var(--light);
}

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

.principle-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
}

.principle-card h3 {
margin-bottom: 0.8rem;
}

.principle-card p {
font-size: 14px;
color: var(--gray);
margin: 0;
line-height: 1.7;
}

.ui-capabilities {
background: var(--white);
}

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

.capabilities-content p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.capabilities-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.capability-item {
background: var(--light);
padding: 20px;
border-radius: 10px;
}

.capability-item h4 {
margin-bottom: 0.3rem;
font-size: 1.1rem;
}

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

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

.contact-hero h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
}

.contact-hero p {
font-size: 1.2rem;
opacity: 0.95;
}

.contact-main {
background: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
max-width: 1000px;
margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
margin-bottom: 1.5rem;
text-align: left;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

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

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--light);
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
min-height: 120px;
}

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 13px;
color: var(--gray);
}

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

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

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

.contact-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.contact-item h3 {
font-size: 1rem;
margin-bottom: 0.3rem;
}

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

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

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

.fullheight-main {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
}

.thank-you-section,
.error-section {
text-align: center;
padding: 40px 0;
}

.thank-you-content,
.error-content {
max-width: 600px;
margin: 0 auto;
}

.thank-you-content h1 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.thank-you-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.thank-you-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 2rem;
}

.error-number {
font-size: 8rem;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 1rem;
font-family: 'Syne', sans-serif;
}

.error-content h1 {
margin-bottom: 1rem;
}

.error-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 2rem;
}

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

.policy-hero {
background: var(--dark);
color: var(--white);
padding: 50px 0;
text-align: center;
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.policy-hero p {
font-size: 14px;
opacity: 0.8;
margin: 0;
}

.policy-content {
background: var(--white);
padding: 60px 0;
}

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

.policy-article h2 {
text-align: left;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--dark);
font-size: 1.8rem;
}

.policy-article h2:first-child {
margin-top: 0;
}

.policy-article h3 {
text-align: left;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
color: var(--primary);
font-size: 1.3rem;
}

.policy-article p {
font-size: 15px;
color: var(--gray);
margin-bottom: 1.2rem;
line-height: 1.8;
}

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

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

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

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent);
}

@media (max-width: 968px) {
.hero-mega-content,
.work-feature,
.approach-split,
.expertise-content,
.capabilities-split,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

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

.approach-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.menu-toggle { display: flex; }

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
display: none;
gap: 15px;
z-index: 999;
}

.nav.active { 
display: flex !important;
}

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

.hero-text h1 {
font-size: 2rem;
}

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

section {
padding: 50px 0;
}

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

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

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

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

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

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

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

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

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

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

.btn-primary,
.btn-secondary,
.btn-outline {
width: 100%;
text-align: center;
}

.cta-content h2 {
font-size: 1.8rem;
}

.cta-content p {
font-size: 1rem;
}

.product-price {
font-size: 2rem;
}

.work-info h3 {
font-size: 1.4rem;
}
}

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

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

.logo {
font-size: 0.8rem;
}

.hero-text h1 {
font-size: 1.6rem;
}

.error-number {
font-size: 4rem;
}

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