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

:root {
--primary: #1A1B26;
--secondary: #2D3142;
--accent: #EF8354;
--light: #F7F7F2;
}

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

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: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

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;
}

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

.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-actions {
display: flex;
gap: 12px;
align-items: center;
}

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

.privacy-actions button {
background: var(--accent);
color: #FFFFFF;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
}

.header {
background: #FFFFFF;
padding: 15px 0;
border-bottom: 1px solid rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 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: 800;
color: var(--primary);
}

.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(--primary);
transition: all 0.3s ease;
}

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

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

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

.mega-hero {
min-height: 90vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #1A1B26 0%, #2D3142 100%);
padding: 100px 0 80px;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.hero-shape.shape-1 {
width: 600px;
height: 600px;
background: var(--accent);
top: -200px;
right: -100px;
}

.hero-shape.shape-2 {
width: 400px;
height: 400px;
background: var(--accent);
bottom: -150px;
left: -100px;
}

.hero-shape.shape-3 {
width: 300px;
height: 300px;
background: #FFFFFF;
top: 50%;
right: 20%;
}

.mega-hero-content {
position: relative;
z-index: 1;
color: #FFFFFF;
max-width: 900px;
}

.hero-label {
display: inline-block;
background: rgba(239, 131, 84, 0.2);
color: var(--accent);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
}

.mega-hero h1 {
font-size: 4rem;
margin-bottom: 25px;
line-height: 1.1;
}

.mega-hero p {
font-size: 1.2rem;
margin-bottom: 35px;
opacity: 0.9;
max-width: 700px;
}

.hero-actions {
display: flex;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
display: inline-block;
padding: 14px 32px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.btn-primary:hover {
background: #d97347;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(239, 131, 84, 0.3);
}

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

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

.btn-outline {
background: transparent;
color: #FFFFFF;
border-color: #FFFFFF;
}

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

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

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

.hero-stat {
display: flex;
flex-direction: column;
}

.stat-value {
font-family: 'Syne', sans-serif;
font-size: 2.5rem;
font-weight: 800;
color: var(--accent);
}

.stat-text {
font-size: 13px;
opacity: 0.8;
}

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

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

.section-intro.center {
text-align: center;
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}

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

.section-label.light {
color: var(--accent);
}

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

.service-modern {
background: #FFFFFF;
padding: 40px 30px;
border-radius: 8px;
border-left: 4px solid var(--accent);
}

.service-number {
font-family: 'Syne', sans-serif;
font-size: 3rem;
font-weight: 800;
color: var(--accent);
opacity: 0.2;
margin-bottom: 15px;
}

.service-modern h3 {
margin-bottom: 15px;
}

.service-modern p {
color: var(--secondary);
font-size: 14px;
line-height: 1.7;
}

.studio-story {
padding: 80px 0;
}

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

.story-image {
position: relative;
}

.story-image img {
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: var(--accent);
color: #FFFFFF;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
}

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

.story-content p {
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.7;
}

.story-content .btn-secondary {
margin-top: 15px;
}

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

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

.expertise-item {
background: #FFFFFF;
padding: 30px 25px;
border-radius: 8px;
}

.expertise-item h3 {
margin-bottom: 10px;
color: var(--primary);
}

.expertise-item p {
color: var(--secondary);
font-size: 14px;
line-height: 1.6;
}

.process {
padding: 80px 0;
}

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

.process-step {
text-align: center;
}

.step-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
background: var(--light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.step-num {
font-family: 'Syne', sans-serif;
font-size: 2rem;
font-weight: 800;
color: var(--accent);
}

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

.step-content p {
color: var(--secondary);
font-size: 14px;
line-height: 1.6;
}

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

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

.testimonial-card {
background: #FFFFFF;
padding: 35px 30px;
border-radius: 8px;
}

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

.testimonial-author strong {
display: block;
color: var(--primary);
font-weight: 600;
margin-bottom: 5px;
}

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

.featured-work {
padding: 80px 0;
}

.featured-grid {
display: grid;
gap: 50px;
}

.featured-item {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 40px;
align-items: center;
}

.featured-image img {
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.featured-info h3 {
margin-bottom: 15px;
}

.featured-info p {
color: var(--secondary);
margin-bottom: 20px;
line-height: 1.7;
}

.featured-info a {
color: var(--accent);
font-weight: 600;
}

.featured-info a:hover {
text-decoration: underline;
}

.contact-banner {
padding: 80px 0;
background: linear-gradient(135deg, #1A1B26 0%, #2D3142 100%);
color: #FFFFFF;
text-align: center;
}

.banner-content {
max-width: 700px;
margin: 0 auto;
}

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

.banner-content p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.9;
}

.footer {
background: var(--primary);
color: #FFFFFF;
padding: 30px 0;
}

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

.footer-brand {
font-family: 'Syne', sans-serif;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 8px;
}

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

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

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

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

.page-hero-modern {
padding: 80px 0 60px;
background: linear-gradient(135deg, #1A1B26 0%, #2D3142 100%);
color: #FFFFFF;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero-modern h1 {
font-size: 3.5rem;
margin-bottom: 15px;
}

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

.portfolio-intro-modern {
padding: 70px 0;
}

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

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

.intro-text p {
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.7;
}

.intro-stats {
display: flex;
flex-direction: column;
gap: 25px;
}

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

.stat-box .stat-number {
font-family: 'Syne', sans-serif;
font-size: 3rem;
font-weight: 800;
color: var(--accent);
margin-bottom: 8px;
}

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

.portfolio-showcase {
padding: 0 0 70px;
}

.showcase-item-large {
display: grid;
gap: 40px;
}

.showcase-image img {
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
width: 100%;
}

.showcase-details {
padding: 20px 0;
}

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

.showcase-details h3 {
font-size: 2rem;
margin-bottom: 15px;
}

.showcase-details p {
color: var(--secondary);
line-height: 1.7;
margin-bottom: 15px;
}

.project-scope {
display: grid;
gap: 15px;
margin: 25px 0;
padding: 25px;
background: var(--light);
border-radius: 8px;
}

.scope-item {
display: flex;
gap: 10px;
}

.scope-item strong {
min-width: 100px;
color: var(--primary);
}

.scope-item span {
color: var(--secondary);
font-size: 14px;
}

.approach-detail {
padding: 70px 0;
background: var(--light);
}

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

.approach-card {
background: #FFFFFF;
padding: 30px 25px;
border-radius: 8px;
}

.approach-card h3 {
margin-bottom: 12px;
color: var(--primary);
}

.approach-card p {
color: var(--secondary);
font-size: 14px;
line-height: 1.6;
}

.services-detail {
padding: 70px 0;
}

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

.service-detail-item {
padding: 30px 25px;
border: 2px solid var(--light);
border-radius: 8px;
}

.service-detail-item h3 {
margin-bottom: 10px;
}

.service-detail-item p {
color: var(--secondary);
font-size: 14px;
line-height: 1.6;
}

.digital-capabilities {
padding: 70px 0;
background: var(--light);
}

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

.capability-card {
background: #FFFFFF;
padding: 30px 25px;
border-radius: 8px;
}

.capability-card h3 {
margin-bottom: 10px;
}

.capability-card p {
color: var(--secondary);
font-size: 14px;
line-height: 1.6;
}

.pricing-modern {
padding: 70px 0;
}

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

.price-card {
background: #FFFFFF;
border: 2px solid var(--light);
border-radius: 12px;
padding: 40px 30px;
position: relative;
transition: all 0.3s ease;
}

.price-card:hover {
border-color: var(--accent);
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
border-color: var(--accent);
box-shadow: 0 10px 30px rgba(239, 131, 84, 0.2);
}

.price-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: #FFFFFF;
padding: 5px 18px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.price-header {
text-align: center;
margin-bottom: 30px;
}

.price-header h3 {
margin-bottom: 15px;
}

.price-amount {
font-family: 'Syne', sans-serif;
font-size: 2.8rem;
font-weight: 800;
color: var(--accent);
}

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

.price-features li {
padding: 12px 0;
border-bottom: 1px solid var(--light);
font-size: 14px;
}

.price-features li:last-child {
border-bottom: none;
}

.process-detail {
padding: 70px 0;
background: var(--light);
}

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

.process-item {
background: #FFFFFF;
padding: 30px 25px;
border-radius: 8px;
}

.process-number {
font-family: 'Syne', sans-serif;
font-size: 2.5rem;
font-weight: 800;
color: var(--accent);
opacity: 0.3;
margin-bottom: 15px;
}

.process-item h3 {
margin-bottom: 10px;
}

.process-item p {
color: var(--secondary);
font-size: 14px;
line-height: 1.6;
}

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

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

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

.contact-info-modern > p {
color: var(--secondary);
margin-bottom: 30px;
line-height: 1.7;
}

.contact-details-list {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 30px;
}

.contact-detail-item {
padding-bottom: 20px;
border-bottom: 1px solid var(--light);
}

.detail-label {
font-size: 12px;
font-weight: 600;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.detail-value {
color: var(--primary);
font-size: 15px;
line-height: 1.6;
}

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

.contact-note p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 8px;
}

.contact-note p:last-child {
margin-bottom: 0;
}

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

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

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

.form-field label {
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
color: var(--primary);
}

.form-field input,
.form-field textarea {
padding: 14px 16px;
border: 2px solid var(--light);
border-radius: 6px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: all 0.3s ease;
}

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

.form-checkbox {
display: flex;
align-items: flex-start;
}

.checkbox-container {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
}

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

.checkbox-text {
font-size: 13px;
color: var(--secondary);
line-height: 1.5;
}

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

.map-section-modern {
padding: 0 0 70px;
}

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

.map-section-modern > .container > p {
text-align: center;
color: var(--secondary);
margin-bottom: 30px;
}

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

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

.fullpage-content {
text-align: center;
max-width: 600px;
}

.success-icon {
width: 80px;
height: 80px;
background: var(--accent);
color: #FFFFFF;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin: 0 auto 25px;
}

.error-code {
font-family: 'Syne', sans-serif;
font-size: 8rem;
font-weight: 800;
color: var(--accent);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}

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

.fullpage-content p {
color: var(--secondary);
margin-bottom: 30px;
font-size: 1.05rem;
line-height: 1.7;
}

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

.policy-hero {
background: linear-gradient(135deg, #1A1B26 0%, #2D3142 100%);
color: #FFFFFF;
padding: 60px 0 40px;
text-align: center;
}

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

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

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

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

.policy-text h2 {
margin-top: 40px;
margin-bottom: 15px;
}

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

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

.policy-text ul {
margin: 15px 0 15px 25px;
}

.policy-text li {
margin-bottom: 8px;
color: var(--secondary);
line-height: 1.6;
}

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

.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: #FFFFFF;
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateY(-120%);
transition: transform 0.3s ease;
gap: 15px;
}

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

.mega-hero {
min-height: 70vh;
padding: 70px 0 50px;
}

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

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

.hero-stats {
gap: 30px;
}

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

.services-modern,
.studio-story,
.expertise,
.process,
.testimonials,
.featured-work,
.contact-banner,
.portfolio-intro-modern,
.portfolio-showcase,
.approach-detail,
.services-detail,
.digital-capabilities,
.pricing-modern,
.process-detail,
.contact-section,
.map-section-modern,
.policy-content {
padding: 50px 0;
}

.story-grid,
.intro-split,
.featured-item,
.contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

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

.showcase-details h3 {
font-size: 1.6rem;
}

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

.fullpage-actions {
flex-direction: column;
}

.fullpage-actions a {
width: 100%;
}
}

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

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

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

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

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

.services-modern-grid,
.expertise-grid,
.process-timeline,
.testimonials-grid,
.approach-grid-modern,
.services-list,
.capabilities-grid,
.pricing-grid,
.process-steps {
grid-template-columns: 1fr;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 12px 28px;
font-size: 13px;
}

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

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

@media (max-width: 320px) {
body { font-size: 13px; }
h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }

.logo {
font-size: 0.8rem;
}

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

.stat-value {
font-size: 1.8rem;
}

.price-amount {
font-size: 2.2rem;
}
}
