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

:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #ec4899;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--gray-light: #e2e8f0;
--white: #ffffff;
--shadow: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

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; }
h4 { font-size: 1.1rem; }

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

.container-fluid {
width: 100%;
padding: 0;
}

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

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

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

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

.privacy-content a {
color: var(--primary);
text-decoration: underline;
}

#accept-privacy {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
white-space: nowrap;
}

#accept-privacy:hover {
background: var(--primary-dark);
}

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

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

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

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

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

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

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
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: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

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

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

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

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

.hero-text-side {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
color: var(--primary);
padding: 8px 16px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
border: 1px solid rgba(99, 102, 241, 0.3);
}

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

.gradient-text {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-text-side > p {
font-size: 1.1rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 2rem;
}

.hero-stats-inline {
display: flex;
gap: 30px;
margin-bottom: 2.5rem;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-inline strong {
font-family: 'Syne', sans-serif;
font-size: 1.8rem;
color: var(--primary);
margin-bottom: 0.3rem;
}

.stat-inline span {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}

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

.btn-outline {
display: inline-block;
padding: 12px 30px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
background: transparent;
color: var(--white);
border: 2px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
}

.btn-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--white);
}

.hero-visual-side {
position: relative;
}

.hero-image-wrapper {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

.card-1 {
top: 10%;
right: -20px;
animation-delay: 0s;
}

.card-2 {
bottom: 15%;
left: -20px;
animation-delay: 1.5s;
}

.card-icon {
font-size: 1.5rem;
color: var(--primary);
}

.card-text {
font-size: 13px;
font-weight: 600;
color: var(--dark);
}

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

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

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

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

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

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

.section-header h2 {
margin-bottom: 0.5rem;
}

.section-header p {
color: var(--gray);
font-size: 1rem;
}

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

.services-showcase {
padding: 80px 0;
background: var(--white);
}

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

.service-modern {
background: var(--light);
padding: 40px;
border-radius: 12px;
border-left: 4px solid var(--primary);
transition: all 0.3s ease;
}

.service-modern:hover {
transform: translateX(5px);
box-shadow: var(--shadow-lg);
}

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

.service-modern h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}

.service-modern p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.link-arrow {
color: var(--primary);
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.link-arrow:hover {
color: var(--primary-dark);
}

.about {
padding: 60px 0;
}

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

.about-image img {
border-radius: 8px;
box-shadow: var(--shadow-lg);
}

.about-content h2 {
margin-bottom: 1rem;
}

.about-content p {
color: var(--gray);
margin-bottom: 1.5rem;
}

.features-list {
list-style: none;
margin-bottom: 2rem;
}

.features-list li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 0.8rem;
font-size: 14px;
}

.features-list i {
color: var(--primary);
font-size: 1.1rem;
}

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

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

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

.step-number {
font-family: 'Syne', sans-serif;
font-size: 2.5rem;
font-weight: 800;
color: var(--primary);
opacity: 0.3;
margin-bottom: 1rem;
}

.process-step h3 {
margin-bottom: 0.8rem;
}

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

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

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

.philosophy-content h2 {
margin-bottom: 1.5rem;
}

.philosophy-content > p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.philosophy-features {
margin-top: 2rem;
display: flex;
flex-direction: column;
gap: 20px;
}

.feature-item {
display: flex;
gap: 15px;
}

.feature-icon {
width: 40px;
height: 40px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}

.feature-item h4 {
margin-bottom: 0.5rem;
font-size: 1rem;
}

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

.philosophy-image img {
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.process-timeline {
padding: 80px 0;
background: var(--white);
}

.timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
padding-left: 40px;
}

.timeline::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 2px;
background: var(--gray-light);
}

.timeline-item {
position: relative;
margin-bottom: 40px;
}

.timeline-marker {
position: absolute;
left: -46px;
top: 0;
width: 14px;
height: 14px;
background: var(--primary);
border-radius: 50%;
border: 3px solid var(--white);
box-shadow: 0 0 0 3px var(--gray-light);
}

.timeline-content h3 {
margin-bottom: 0.8rem;
color: var(--dark);
}

.timeline-content p {
color: var(--gray);
line-height: 1.7;
}

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

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

.team-text h2 {
margin-bottom: 1.5rem;
}

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

.team-highlights {
display: flex;
gap: 20px;
margin-top: 2rem;
}

.highlight-box {
background: var(--white);
padding: 20px;
border-radius: 8px;
text-align: center;
flex: 1;
}

.highlight-box strong {
display: block;
font-family: 'Syne', sans-serif;
font-size: 2rem;
color: var(--primary);
margin-bottom: 0.5rem;
}

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

.team-image img {
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

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

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

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

.quote-mark {
font-size: 4rem;
color: var(--primary);
opacity: 0.2;
line-height: 1;
margin-bottom: 1rem;
font-family: 'Syne', sans-serif;
}

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

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

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

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

.industries .section-header h2,
.industries .section-header p {
color: var(--white);
}

.industries .section-header p {
opacity: 0.8;
}

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

.industry-item {
background: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.industry-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: var(--primary);
}

.industry-item h4 {
margin-bottom: 0.8rem;
color: var(--white);
}

.industry-item p {
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
margin: 0;
}

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

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

.cta-text {
flex: 1;
color: var(--white);
}

.cta-text h2 {
margin-bottom: 1rem;
font-size: 2.2rem;
}

.cta-text p {
font-size: 1.1rem;
opacity: 0.9;
}

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

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

.btn-primary-large:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-note {
margin-top: 1rem;
font-size: 13px;
color: rgba(255, 255, 255, 0.8);
}

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

.case-studies {
display: flex;
flex-direction: column;
gap: 30px;
}

.case-item {
background: var(--white);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

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

.case-item p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.case-meta {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.case-meta span {
font-size: 13px;
color: var(--gray);
padding: 5px 12px;
background: var(--light);
border-radius: 4px;
}

.consulting-process {
padding: 80px 0;
background: var(--white);
}

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

.process-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
transition: all 0.3s ease;
}

.process-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.process-phase {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 1rem;
}

.process-card h3 {
margin-bottom: 1rem;
}

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

.stats {
padding: 60px 0;
}

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

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

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

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

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

.page-hero h1 {
margin-bottom: 0.5rem;
}

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

.service-detail {
padding: 60px 0;
}

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

.detail-grid.reverse {
direction: rtl;
}

.detail-grid.reverse > * {
direction: ltr;
}

.detail-content h2 {
margin-bottom: 1rem;
}

.detail-content p {
color: var(--gray);
margin-bottom: 1rem;
}

.detail-image img {
border-radius: 8px;
box-shadow: var(--shadow-lg);
}

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

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

.offering-card {
background: var(--white);
padding: 25px;
border-radius: 8px;
text-align: center;
}

.offering-card i {
font-size: 2.2rem;
color: var(--primary);
margin-bottom: 1rem;
}

.offering-card h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
}

.offering-card p {
color: var(--gray);
font-size: 14px;
}

.products {
padding: 60px 0;
}

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

.product-card {
background: var(--white);
border: 2px solid var(--gray-light);
border-radius: 8px;
padding: 30px;
text-align: center;
position: relative;
transition: all 0.3s ease;
}

.product-card:hover {
border-color: var(--primary);
box-shadow: var(--shadow-lg);
}

.product-card.featured {
border-color: var(--primary);
box-shadow: var(--shadow-lg);
}

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

.product-card h3 {
margin-bottom: 1rem;
}

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

.product-features {
list-style: none;
margin-bottom: 2rem;
text-align: left;
}

.product-features li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 0.8rem;
font-size: 14px;
}

.product-features i {
color: var(--primary);
font-size: 1rem;
}

.approach {
padding: 60px 0;
}

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

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

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

.approach-item h3 {
margin-bottom: 0.8rem;
}

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

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

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

.benefit-card {
background: var(--white);
padding: 25px;
border-radius: 8px;
}

.benefit-card i {
font-size: 2rem;
color: var(--primary);
margin-bottom: 1rem;
}

.benefit-card h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
}

.benefit-card p {
color: var(--gray);
font-size: 14px;
}

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

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

.contact-info-side h2 {
margin-bottom: 1rem;
}

.contact-info-side > p {
color: var(--gray);
margin-bottom: 2.5rem;
line-height: 1.7;
}

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

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

.contact-icon {
width: 40px;
height: 40px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}

.contact-item h4 {
margin-bottom: 0.5rem;
font-size: 1rem;
}

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

.contact-note {
display: block;
font-size: 12px;
color: var(--gray);
opacity: 0.7;
margin-top: 0.3rem;
}

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

.contact-team h4 {
margin-bottom: 1rem;
}

.team-members {
display: flex;
flex-direction: column;
gap: 15px;
}

.team-member {
display: flex;
flex-direction: column;
}

.team-member strong {
color: var(--dark);
font-size: 14px;
}

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

.contact-form-side {
background: var(--light);
padding: 40px;
border-radius: 12px;
}

.contact-form h3 {
margin-bottom: 1.5rem;
}

.contact-form h3 {
margin-bottom: 1.5rem;
}

.contact-form {
background: transparent;
padding: 0;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--gray-light);
border-radius: 4px;
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);
}

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-bottom: 25px;
}

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

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

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

.map-section {
margin-top: 40px;
}

.map-wrapper iframe {
width: 100%;
display: block;
}

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

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

.thankyou-icon {
font-size: 4rem;
color: var(--primary);
margin-bottom: 1.5rem;
width: 80px;
height: 80px;
margin-left: auto;
margin-right: auto;
background: var(--light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}

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

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

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

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

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

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

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

.update-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 2rem;
font-style: italic;
}

.policy-content h2 {
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--primary);
}

.policy-content h3 {
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}

.policy-content ul {
margin-left: 20px;
margin-bottom: 1rem;
}

.policy-content li {
margin-bottom: 0.5rem;
color: var(--gray);
}

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

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

.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: 12px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
}

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

.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: var(--shadow-lg);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

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

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

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

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

.hero-stats-inline {
gap: 20px;
}

.stat-inline strong {
font-size: 1.5rem;
}

.floating-card {
position: static;
margin: 10px 0;
}

.services-showcase,
.philosophy,
.process-timeline,
.team-intro,
.testimonials,
.industries,
.cta-modern {
padding: 50px 0;
}

.services-grid-modern {
grid-template-columns: 1fr;
}

.philosophy-grid,
.team-content-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.timeline {
padding-left: 30px;
}

.timeline-marker {
left: -36px;
}

.team-highlights {
flex-direction: column;
}

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

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

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

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

.about-grid,
.detail-grid,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.detail-grid.reverse {
direction: ltr;
}

.offerings-grid,
.products-grid,
.approach-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

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

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

.thankyou-section,
.error-section {
padding: 50px 0;
min-height: calc(100vh - 150px);
}

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

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

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

.container {
padding: 0 15px;
}

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

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

.hero-stats-inline {
flex-direction: column;
gap: 15px;
}

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

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

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

.service-modern,
.testimonial-card,
.industry-item {
padding: 25px;
}

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

.timeline {
padding-left: 25px;
}

.timeline-marker {
left: -31px;
width: 12px;
height: 12px;
}

.team-highlights {
gap: 15px;
}

.highlight-box {
padding: 15px;
}

.highlight-box strong {
font-size: 1.5rem;
}

.quote-mark {
font-size: 3rem;
}

.cta-text h2 {
font-size: 1.5rem;
}

.btn-primary-large {
padding: 14px 30px;
font-size: 15px;
}

.contact-form {
padding: 20px;
}

.thankyou-icon {
font-size: 3rem;
}

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

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}
}

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

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1rem; }

.logo {
font-size: 1.1rem;
}

.mega-hero {
padding: 40px 0 30px;
}

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

.hero-badge {
font-size: 11px;
padding: 6px 12px;
}

.stat-inline strong {
font-size: 1.3rem;
}

.services-showcase,
.philosophy,
.process-timeline,
.team-intro,
.testimonials,
.industries,
.cta-modern {
padding: 40px 0;
}

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

.service-modern,
.testimonial-card,
.industry-item {
padding: 20px;
}

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

.timeline {
padding-left: 20px;
}

.timeline-marker {
left: -26px;
width: 10px;
height: 10px;
}

.highlight-box strong {
font-size: 1.3rem;
}

.quote-mark {
font-size: 2.5rem;
}

.cta-text h2 {
font-size: 1.3rem;
}

.btn-primary-large {
padding: 12px 25px;
font-size: 14px;
}

.price {
font-size: 1.8rem;
}

.approach-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
}
