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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #0f172a;
--text: #1e293b;
--text-light: #64748b;
--bg: #ffffff;
--bg-light: #f8fafc;
--border: #e2e8f0;
}

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

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.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

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

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

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

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

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

.btn-primary:hover {
background: #4f46e5;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

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

.btn-accept {
background: var(--accent);
color: white;
padding: 10px 24px;
font-size: 13px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

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

.privacy-content p {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.privacy-link {
color: var(--accent);
font-size: 13px;
text-decoration: underline;
}

.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
padding: 18px 0;
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

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

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

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

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--text);
position: relative;
}

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

.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}

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

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

.hero-fashion {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}

.shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
width: 500px;
height: 500px;
background: var(--primary);
top: -10%;
right: -10%;
animation-delay: 0s;
}

.shape-2 {
width: 400px;
height: 400px;
background: var(--secondary);
bottom: -10%;
left: -5%;
animation-delay: 7s;
}

.shape-3 {
width: 350px;
height: 350px;
background: var(--accent);
top: 40%;
left: 50%;
animation-delay: 14s;
}

@keyframes float-shape {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -30px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 2;
padding: 100px 0;
}

.hero-content {
color: white;
}

.hero-tag {
display: inline-block;
padding: 8px 20px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 32px;
backdrop-filter: blur(10px);
letter-spacing: 0.5px;
}

.hero-content h1 {
font-size: 4.5rem;
line-height: 1.1;
margin-bottom: 32px;
font-weight: 700;
}

.hero-line {
display: block;
opacity: 0;
animation: slideUp 0.8s forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.3s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }

.hero-highlight {
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}

@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

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

.hero-metrics {
display: flex;
gap: 48px;
margin-bottom: 48px;
}

.metric {
display: flex;
flex-direction: column;
position: relative;
}

.metric::before {
content: '';
position: absolute;
left: -24px;
top: 0;
width: 2px;
height: 100%;
background: linear-gradient(to bottom, var(--primary), transparent);
}

.metric:first-child::before {
display: none;
}

.metric-value {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 4px;
background: linear-gradient(135deg, white, rgba(255,255,255,0.7));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.metric-label {
font-size: 13px;
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 1px;
}

.btn-hero {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 16px 32px;
background: white;
color: var(--dark);
border-radius: 50px;
font-weight: 600;
font-size: 15px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.btn-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}

.btn-hero:hover::before {
width: 100%;
}

.btn-hero:hover {
color: white;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-hero svg {
transition: transform 0.3s ease;
}

.btn-hero:hover svg {
transform: translateX(4px);
}

.hero-visual {
position: relative;
}

.visual-frame {
position: relative;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.6s ease;
}

.visual-frame:hover {
transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.visual-frame img {
width: 100%;
height: auto;
display: block;
}

.visual-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
mix-blend-mode: overlay;
pointer-events: none;
}

.visual-badge {
position: absolute;
bottom: 40px;
left: 40px;
background: white;
padding: 20px 28px;
border-radius: 60px;
display: flex;
align-items: center;
gap: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
animation: pulse-badge 3s infinite ease-in-out;
cursor: pointer;
transition: all 0.3s ease;
}

.visual-badge:hover {
transform: scale(1.05);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-badge {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}

.badge-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}

.visual-badge span {
font-weight: 600;
color: var(--dark);
font-size: 14px;
}

[data-aos] {
opacity: 0;
transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
opacity: 1;
}

[data-aos="fade-up"] {
transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
transform: translateY(0);
}

[data-aos="fade-left"] {
transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
transform: translateX(0);
}

.section-header {
margin-bottom: 50px;
}

.section-header.centered {
text-align: center;
}

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

.expertise-section {
padding: 100px 0;
background: var(--bg);
}

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

.expertise-card {
padding: 40px 30px;
background: white;
border: 2px solid var(--border);
border-radius: 16px;
transition: all 0.3s ease;
}

.expertise-card:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(99,102,241,0.15);
}

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

.expertise-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.expertise-card p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.showcase-section {
padding: 100px 0;
background: var(--bg-light);
}

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

.showcase-image {
position: relative;
}

.showcase-image img {
border-radius: 16px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
width: 100%;
}

.showcase-content h2 {
margin-bottom: 20px;
font-size: 2.2rem;
}

.showcase-content p {
color: var(--text-light);
margin-bottom: 24px;
line-height: 1.7;
}

.check-list {
list-style: none;
margin-bottom: 32px;
}

.check-list li {
padding: 12px 0;
color: var(--text);
font-size: 15px;
position: relative;
padding-left: 32px;
}

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

.featured-work {
padding: 100px 0;
background: var(--bg);
}

.work-showcase {
margin-bottom: 40px;
}

.work-item {
position: relative;
border-radius: 16px;
overflow: hidden;
cursor: pointer;
}

.work-item img {
width: 100%;
transition: transform 0.5s ease;
}

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

.work-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
color: white;
padding: 40px;
}

.work-category {
display: inline-block;
padding: 6px 16px;
background: var(--accent);
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 12px;
}

.work-info h3 {
font-size: 1.8rem;
margin-bottom: 8px;
}

.work-info p {
opacity: 0.9;
font-size: 15px;
}

.contact-banner {
padding: 80px 0;
background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
color: white;
}

.banner-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.banner-text h2 {
font-size: 2rem;
margin-bottom: 12px;
}

.banner-text p {
opacity: 0.9;
font-size: 1rem;
}

.banner-action {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
}

.contact-info {
font-size: 14px;
opacity: 0.8;
}

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

.page-hero h1 {
font-size: 2.4rem;
margin-bottom: 12px;
}

.page-hero p {
font-size: 1rem;
opacity: 0.95;
}

.services-preview {
padding: 80px 0;
background: var(--bg-light);
}

.services-preview h2 {
text-align: center;
margin-bottom: 50px;
}

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

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

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

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

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

.process-section {
padding: 80px 0;
}

.process-section h2 {
text-align: center;
margin-bottom: 60px;
}

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

.process-step {
text-align: center;
padding: 30px 20px;
}

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

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

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

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

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

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

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

.services-detailed {
padding: 80px 0;
}

.service-detail {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
margin-bottom: 60px;
padding: 40px;
background: var(--bg-light);
border-radius: 12px;
}

.service-detail-content h2 {
margin-bottom: 20px;
}

.service-detail-content p {
color: var(--text-light);
margin-bottom: 24px;
line-height: 1.7;
}

.service-features {
list-style: none;
}

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

.pricing-section {
padding: 80px 0;
background: var(--bg-light);
text-align: center;
}

.pricing-section h2 {
margin-bottom: 12px;
}

.section-intro {
color: var(--text-light);
margin-bottom: 50px;
font-size: 1rem;
}

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

.pricing-card {
background: white;
padding: 40px 30px;
border-radius: 12px;
border: 2px solid var(--border);
transition: all 0.3s ease;
}

.pricing-card.featured {
border-color: var(--primary);
transform: scale(1.05);
box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

.pricing-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
transform: scale(1.05) translateY(-8px);
}

.pricing-card h3 {
font-size: 1.4rem;
margin-bottom: 16px;
}

.price {
font-size: 2.2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 28px;
}

.pricing-features {
list-style: none;
margin-bottom: 32px;
text-align: left;
}

.pricing-features li {
padding: 10px 0;
font-size: 14px;
color: var(--text-light);
border-bottom: 1px solid var(--border);
}

.why-choose {
padding: 80px 0;
}

.why-choose h2 {
text-align: center;
margin-bottom: 50px;
}

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

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

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

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

.portfolio-full {
padding: 80px 0;
}

.portfolio-categories {
display: flex;
justify-content: center;
gap: 16px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.category-btn {
padding: 10px 24px;
background: white;
border: 2px solid var(--border);
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
background: var(--primary);
color: white;
border-color: var(--primary);
}

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

.portfolio-project {
border-radius: 12px;
overflow: hidden;
}

.project-thumbnail {
position: relative;
overflow: hidden;
cursor: pointer;
}

.project-thumbnail img {
width: 100%;
transition: transform 0.4s ease;
}

.project-thumbnail:hover img {
transform: scale(1.1);
}

.project-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
color: white;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: flex-end;
opacity: 0;
transition: opacity 0.4s ease;
}

.project-thumbnail:hover .project-overlay {
opacity: 1;
}

.project-overlay h3 {
font-size: 1.2rem;
margin-bottom: 8px;
}

.project-overlay p {
font-size: 13px;
opacity: 0.9;
margin-bottom: 12px;
}

.project-tag {
display: inline-block;
padding: 6px 14px;
background: var(--primary);
border-radius: 20px;
font-size: 12px;
font-weight: 500;
}

.testimonials {
padding: 80px 0;
background: var(--bg-light);
}

.testimonials h2 {
text-align: center;
margin-bottom: 50px;
}

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

.testimonial-card {
background: white;
padding: 32px;
border-radius: 12px;
border: 1px solid var(--border);
}

.testimonial-stars {
color: var(--accent);
margin-bottom: 16px;
font-size: 14px;
}

.testimonial-card p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--text);
font-size: 15px;
margin-bottom: 4px;
}

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

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

.contact-hero h1 {
font-size: 2.4rem;
margin-bottom: 12px;
}

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

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

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

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

.contact-item {
display: flex;
gap: 20px;
margin-bottom: 28px;
}

.contact-item strong {
display: block;
margin-bottom: 6px;
font-size: 15px;
}

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

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

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

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

.form-group label {
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px 16px;
border: 2px solid var(--border);
border-radius: 8px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s ease;
}

.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;
color: var(--text-light);
cursor: pointer;
}

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

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

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

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

.map-wrapper iframe {
border-radius: 12px;
width: 100%;
}

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

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

.thankyou-content h1 {
font-size: 2rem;
margin-bottom: 20px;
}

.thankyou-content p {
color: var(--text-light);
margin-bottom: 32px;
line-height: 1.7;
}

.error-number {
font-size: 6rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

.error-content h1 {
font-size: 2rem;
margin-bottom: 20px;
}

.error-content p {
color: var(--text-light);
margin-bottom: 32px;
line-height: 1.7;
}

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

.policy-page h1 {
margin-bottom: 12px;
}

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

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

.policy-content h2 {
margin-top: 40px;
margin-bottom: 16px;
font-size: 1.6rem;
}

.policy-content h3 {
margin-top: 28px;
margin-bottom: 12px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 16px;
color: var(--text-light);
line-height: 1.7;
}

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

.policy-content li {
margin-bottom: 10px;
color: var(--text-light);
line-height: 1.6;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 24px 0;
font-size: 14px;
}

.cookie-table th,
.cookie-table td {
padding: 12px;
text-align: left;
border: 1px solid var(--border);
}

.cookie-table th {
background: var(--bg-light);
font-weight: 600;
}

@media (max-width: 968px) {
.hero-split {
grid-template-columns: 1fr;
min-height: auto;
padding: 60px 20px;
gap: 40px;
}

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

.hero-stats {
gap: 24px;
}

.stat-item strong {
font-size: 1.6rem;
}

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

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

.banner-action {
align-items: center;
}
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
body { font-size: 14px; }

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
gap: 16px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: flex;
}

.hero-left h1 {
font-size: 2.2rem;
}

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

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

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

.portfolio-gallery {
grid-template-columns: 1fr;
}

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

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

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

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

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

.service-detail {
padding: 30px 20px;
}
}

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

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

.hero-mega {
padding: 0;
}

.hero-split {
padding: 50px 16px;
}

.hero-left h1 {
font-size: 1.9rem;
}

.hero-stats {
flex-wrap: wrap;
gap: 20px;
}

.page-hero {
padding: 50px 0 30px;
}

.services-preview,
.expertise-section,
.showcase-section,
.featured-work,
.process-section,
.contact-banner,
.services-detailed,
.pricing-section,
.why-choose,
.portfolio-full,
.testimonials,
.contact-main,
.map-section,
.policy-page {
padding: 50px 0;
}

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

.pricing-card.featured {
transform: scale(1);
}

.floating-card {
bottom: 20px;
left: 20px;
padding: 16px 20px;
}

.work-info {
padding: 24px;
}

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

@media (min-width: 320px) and (max-width: 1200px) {
.services-grid,
.expertise-grid {
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
}

@media (max-width: 968px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
padding: 60px 0;
}

.hero-content h1 {
font-size: 2.8rem;
}

.hero-metrics {
gap: 32px;
}

.metric-value {
font-size: 2rem;
}

.visual-frame {
transform: none;
}
}

@media (max-width: 768px) {
.hero-fashion {
min-height: auto;
}

.hero-grid {
padding: 50px 0;
}

.hero-content h1 {
font-size: 2.2rem;
}

.hero-metrics {
flex-wrap: wrap;
gap: 24px;
}

.metric::before {
display: none;
}

.visual-badge {
bottom: 20px;
left: 20px;
padding: 16px 24px;
}

.badge-icon {
width: 36px;
height: 36px;
}

.shape {
filter: blur(60px);
}
}

@media (max-width: 480px) {
.hero-fashion {
min-height: 70vh;
}

.hero-grid {
padding: 40px 0;
}

.hero-content h1 {
font-size: 1.8rem;
line-height: 1.2;
}

.hero-content p {
font-size: 1rem;
margin-bottom: 30px;
}

.hero-metrics {
gap: 20px;
margin-bottom: 32px;
}

.metric-value {
font-size: 1.6rem;
}

.metric-label {
font-size: 12px;
}

.btn-hero {
padding: 14px 24px;
font-size: 14px;
width: 100%;
justify-content: center;
}

.visual-badge {
bottom: 16px;
left: 16px;
padding: 12px 20px;
}

.badge-icon {
width: 32px;
height: 32px;
}

.visual-badge span {
font-size: 13px;
}

.shape {
filter: blur(40px);
opacity: 0.2;
}

.shape-1 {
width: 300px;
height: 300px;
}

.shape-2 {
width: 250px;
height: 250px;
}

.shape-3 {
width: 200px;
height: 200px;
}
}
