:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #0f172a;
--text: #1e293b;
--text-light: #64748b;
--bg: #ffffff;
--bg-light: #f8fafc;
--border: #e2e8f0;
--success: #10b981;
}

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

body {
font-family: 'Space Grotesk', sans-serif;
color: var(--text);
line-height: 1.6;
font-size: 15px;
background: var(--bg);
display: flex;
flex-direction: column;
min-height: 100vh;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

.header.hidden {
transform: translateY(-100%);
}

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

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

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

.nav-link {
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 500;
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(--text);
transition: 0.3s;
}

main {
margin-top: 70px;
flex: 1;
}

.hero {
padding: 80px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-content {
max-width: 600px;
}

.hero-title {
font-size: 3rem;
margin-bottom: 20px;
color: var(--secondary);
}

.hero-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

.section-label {
display: inline-block;
padding: 6px 16px;
background: var(--bg-light);
color: var(--primary);
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
}

.services {
padding: 80px 0;
}

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

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

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

.service-icon {
width: 50px;
height: 50px;
background: var(--bg-light);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: var(--primary);
margin-bottom: 20px;
}

.service-card h3 {
margin-bottom: 15px;
font-size: 1.3rem;
}

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

.service-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
}

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

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

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

.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.5rem;
font-weight: 700;
margin: 0 auto 20px;
}

.process-step h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

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

.stats {
padding: 60px 0;
background: var(--secondary);
color: white;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
}

.stat-label {
font-size: 14px;
opacity: 0.9;
}

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

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

.why-list {
list-style: none;
margin: 30px 0;
}

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

.why-list i {
color: var(--success);
font-size: 18px;
}

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

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

.cta-content h2 {
margin-bottom: 20px;
color: white;
}

.cta-content p {
margin-bottom: 30px;
opacity: 0.9;
}

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

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

.footer-col h4 {
margin-bottom: 15px;
font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
color: rgba(255,255,255,0.7);
text-decoration: none;
display: block;
margin-bottom: 8px;
font-size: 14px;
}

.footer-col a:hover {
color: white;
}

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

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

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

.footer-links a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 13px;
}

.footer-links a:hover {
color: white;
}

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

.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 {
flex: 1;
font-size: 14px;
}

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

.btn-accept {
padding: 10px 24px;
background: var(--primary);
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
}

.btn-learn {
padding: 10px 24px;
background: transparent;
color: white;
border: 1px solid white;
border-radius: 6px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
}

.page-hero {
padding: 100px 0 60px;
background: var(--bg-light);
text-align: center;
}

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

.page-hero-content p {
max-width: 700px;
margin: 0 auto;
color: var(--text-light);
}

.research-methods,
.design-services,
.deliverables {
padding: 80px 0;
}

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

.method-card,
.capability-card {
padding: 30px;
background: white;
border: 1px solid var(--border);
border-radius: 12px;
text-align: center;
}

.method-icon,
.capability-card i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 20px;
}

.method-card h3,
.capability-card h3 {
margin-bottom: 15px;
}

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

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

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

.proto-image img {
width: 100%;
border-radius: 12px;
}

.proto-features {
margin: 30px 0;
}

.proto-feature {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.proto-feature i {
font-size: 24px;
color: var(--primary);
flex-shrink: 0;
}

.proto-feature h4 {
margin-bottom: 5px;
}

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

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

.deliverable-item {
display: flex;
gap: 15px;
padding: 25px;
background: white;
border-radius: 12px;
border: 1px solid var(--border);
}

.deliverable-item i {
font-size: 28px;
color: var(--primary);
flex-shrink: 0;
}

.deliverable-item h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}

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

.design-approach {
padding: 80px 0;
}

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

.approach-list {
list-style: none;
margin: 25px 0;
}

.approach-list li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 12px;
}

.approach-list i {
color: var(--success);
}

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

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

.product-card {
background: white;
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--border);
position: relative;
}

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

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

.product-header {
padding: 30px;
text-align: center;
background: var(--bg-light);
}

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

.product-price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
}

.product-body {
padding: 30px;
}

.product-body p {
color: var(--text-light);
margin-bottom: 25px;
}

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

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

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

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

.design-tools {
padding: 60px 0;
}

.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
}

.tool-item {
padding: 25px;
background: white;
border: 1px solid var(--border);
border-radius: 12px;
text-align: center;
}

.tool-item i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 10px;
}

.tool-item span {
display: block;
font-weight: 600;
font-size: 14px;
}

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

.contact-hero h1 {
color: white;
margin-bottom: 20px;
}

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

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

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

.contact-form-wrapper > p {
color: var(--text-light);
margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px 16px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: inherit;
font-size: 14px;
}

.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: 14px;
cursor: pointer;
}

.checkbox-label input {
margin-top: 3px;
}

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

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

.contact-info-card,
.contact-cta-card {
padding: 30px;
background: var(--bg-light);
border-radius: 12px;
}

.contact-info-card h3,
.contact-cta-card h3 {
margin-bottom: 25px;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.info-item i {
font-size: 20px;
color: var(--primary);
flex-shrink: 0;
margin-top: 3px;
}

.info-item h4 {
margin-bottom: 5px;
font-size: 1rem;
}

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

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

.contact-cta-card i {
font-size: 3rem;
margin-bottom: 15px;
}

.contact-cta-card h3 {
color: white;
}

.contact-cta-card p {
margin-bottom: 20px;
opacity: 0.9;
}

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

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

.map-wrapper {
border-radius: 12px;
overflow: hidden;
}

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

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

.faq-item {
padding: 25px;
background: white;
border: 1px solid var(--border);
border-radius: 12px;
}

.faq-item h3 {
margin-bottom: 12px;
font-size: 1.1rem;
}

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

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

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

.thankyou-icon {
font-size: 5rem;
color: var(--success);
margin-bottom: 30px;
}

.thankyou-content h1,
.error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
color: var(--text-light);
margin-bottom: 20px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin: 30px 0;
flex-wrap: wrap;
}

.thankyou-info {
margin-top: 50px;
text-align: left;
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
}

.thankyou-info ul {
list-style: none;
margin-top: 20px;
}

.thankyou-info li {
padding: 12px 0;
display: flex;
align-items: center;
gap: 12px;
}

.thankyou-info i {
color: var(--primary);
}

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
opacity: 0.3;
}

.error-links {
margin-top: 40px;
}

.error-links p {
margin-bottom: 15px;
font-weight: 600;
}

.error-links a {
display: block;
color: var(--primary);
text-decoration: none;
margin: 10px 0;
}

.policy-hero {
padding: 100px 0 40px;
background: var(--bg-light);
text-align: center;
}

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

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

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

.policy-text h2 {
margin: 40px 0 20px;
}

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

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

.policy-text ul {
margin: 20px 0 20px 30px;
}

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

.floating-card {
position: absolute;
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
display: flex;
align-items: center;
gap: 15px;
animation: float 3s ease-in-out infinite;
}

.hero-visual {
position: relative;
height: 400px;
}

.card-1 {
top: 50px;
right: 50px;
}

.card-2 {
top: 180px;
right: 100px;
animation-delay: 1s;
}

.card-3 {
top: 310px;
right: 30px;
animation-delay: 2s;
}

.floating-card i {
font-size: 28px;
color: var(--primary);
}

.floating-card span {
font-weight: 600;
font-size: 14px;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

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

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

.menu-toggle {
display: flex;
}

.hero-title {
font-size: 2rem;
}

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

.why-grid,
.proto-grid,
.approach-grid,
.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-visual {
display: none;
}

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

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

@media (max-width: 480px) {
.hero-title {
font-size: 1.75rem;
}

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

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

.services-grid,
.methods-grid,
.capabilities-grid,
.products-grid {
grid-template-columns: 1fr;
}

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


.approach-points {
margin: 30px 0;
}

.approach-point {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.approach-point i {
font-size: 24px;
color: var(--primary);
flex-shrink: 0;
margin-top: 3px;
}

.approach-point h4 {
margin-bottom: 5px;
font-size: 1rem;
}

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

.approach-image img {
width: 100%;
border-radius: 12px;
}

.product-features {
padding: 30px;
}

.product-desc {
color: var(--text-light);
margin-bottom: 25px;
font-size: 14px;
}

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

.product-card .btn {
margin: 0 30px 30px;
display: block;
text-align: center;
}

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

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

.flow-step {
flex: 1;
min-width: 200px;
text-align: center;
}

.flow-icon {
width: 70px;
height: 70px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
margin: 0 auto 20px;
}

.flow-step h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

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

.flow-arrow {
font-size: 24px;
color: var(--primary);
}

@media (max-width: 768px) {
.process-flow {
flex-direction: column;
}

.flow-arrow {
transform: rotate(90deg);
}

.approach-image {
order: -1;
}
}
primary);
}

@media (max-width: 768px) {
.process-flow {
flex-direction: column;
}

.flow-arrow {
transform: rotate(90deg);
}

.approach-image {
order: -1;
}
}

.mega-hero {
padding: 100px 0 80px;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
position: relative;
overflow: hidden;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
}

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

.shape-1 {
width: 300px;
height: 300px;
background: var(--primary);
top: -100px;
right: 10%;
}

.shape-2 {
width: 200px;
height: 200px;
background: var(--primary-dark);
bottom: 50px;
left: 5%;
}

.shape-3 {
width: 150px;
height: 150px;
background: var(--primary);
top: 40%;
right: 5%;
}

.mega-hero .container {
position: relative;
z-index: 1;
}

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

.hero-badge {
display: inline-block;
padding: 8px 18px;
background: white;
color: var(--primary);
border-radius: 25px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
}

.mega-title {
font-size: 3.5rem;
margin-bottom: 25px;
color: var(--secondary);
line-height: 1.1;
}

.mega-subtitle {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 35px;
line-height: 1.7;
}

.hero-stats-inline {
display: flex;
gap: 35px;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.stat-num {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
}

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

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

.btn-hero-primary {
padding: 14px 32px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s;
}

.btn-hero-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}

.btn-hero-secondary {
padding: 14px 32px;
background: white;
color: var(--primary);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
border: 2px solid var(--primary);
transition: all 0.3s;
}

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

.hero-visual-area {
position: relative;
height: 450px;
}

.visual-card {
position: absolute;
background: white;
padding: 20px 25px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
display: flex;
align-items: center;
gap: 15px;
animation: float 3s ease-in-out infinite;
}

.card-top {
top: 50px;
right: 50px;
}

.card-middle {
top: 200px;
right: 100px;
animation-delay: 1s;
}

.card-bottom {
top: 350px;
right: 30px;
animation-delay: 2s;
}

.card-icon {
font-size: 32px;
}

.card-text {
display: flex;
flex-direction: column;
}

.card-text strong {
font-size: 15px;
margin-bottom: 3px;
}

.card-text span {
font-size: 12px;
color: var(--text-light);
}

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

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

.label {
display: inline-block;
padding: 6px 16px;
background: var(--bg-light);
color: var(--primary);
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
}

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

.section-intro p {
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

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

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

.service-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--bg-light);
margin-bottom: 20px;
}

.service-modern h3 {
margin-bottom: 15px;
font-size: 1.3rem;
}

.service-modern p {
color: var(--text-light);
margin-bottom: 20px;
font-size: 14px;
line-height: 1.7;
}

.link-arrow {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
}

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

.work-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 50px;
flex-wrap: wrap;
gap: 20px;
}

.btn-outline-dark {
padding: 12px 28px;
background: transparent;
color: var(--text);
border: 2px solid var(--border);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s;
}

.btn-outline-dark:hover {
background: var(--secondary);
color: white;
border-color: var(--secondary);
}

.work-showcase {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 25px;
}

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

.work-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

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

.work-large {
grid-row: span 2;
}

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

.work-overlay h3 {
margin-bottom: 10px;
color: white;
}

.work-overlay p {
font-size: 14px;
opacity: 0.9;
}

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

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

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

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

.process-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.process-card h3 {
margin-bottom: 15px;
font-size: 1.2rem;
}

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

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

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

.team-highlights {
margin: 30px 0;
}

.highlight-item {
padding: 20px 0;
border-bottom: 1px solid var(--border);
}

.highlight-item:last-child {
border-bottom: none;
}

.highlight-item strong {
display: block;
margin-bottom: 5px;
font-size: 1.1rem;
}

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

.team-stats {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
}

.big-stat {
padding: 35px;
background: white;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
}

.big-stat-number {
font-size: 4rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.big-stat-label {
font-size: 15px;
color: var(--text-light);
}

.testimonials {
padding: 80px 0;
}

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

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

.quote-mark {
font-size: 4rem;
color: var(--primary);
opacity: 0.3;
line-height: 1;
margin-bottom: 15px;
}

.testimonial-card p {
color: var(--text);
margin-bottom: 25px;
font-size: 15px;
line-height: 1.7;
}

.testimonial-author strong {
display: block;
margin-bottom: 5px;
}

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

.industries {
padding: 60px 0;
background: var(--bg-light);
}

.industries-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}

.industry-tag {
padding: 12px 24px;
background: white;
border: 1px solid var(--border);
border-radius: 25px;
font-size: 14px;
font-weight: 500;
}

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

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

.cta-content-area h2 {
color: white;
margin-bottom: 20px;
}

.cta-content-area p {
color: white;
opacity: 0.9;
margin-bottom: 25px;
}

.cta-features {
display: flex;
gap: 25px;
flex-wrap: wrap;
}

.cta-features span {
color: white;
font-size: 14px;
font-weight: 500;
}

.cta-action-area {
text-align: center;
}

.btn-cta-large {
padding: 16px 40px;
background: white;
color: var(--primary);
text-decoration: none;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
display: inline-block;
transition: all 0.3s;
}

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

.cta-note {
margin-top: 15px;
color: white;
opacity: 0.8;
font-size: 13px;
}

@media (max-width: 968px) {
.mega-hero-grid,
.team-grid,
.cta-box {
grid-template-columns: 1fr;
}

.hero-visual-area {
display: none;
}

.work-showcase {
grid-template-columns: 1fr;
}

.work-large {
grid-row: span 1;
}

.mega-title {
font-size: 2.5rem;
}
}
