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

:root {
--primary: #0f172a;
--secondary: #3b82f6;
--accent: #8b5cf6;
--light: #f8fafc;
--text: #1e293b;
--text-muted: #64748b;
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text);
background-color: #ffffff;
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;
color: var(--primary);
}

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

p {
margin-bottom: 1rem;
color: var(--text-muted);
}

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

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 14px 32px;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
text-align: center;
}

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

.btn-primary:hover {
background-color: #2563eb;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--primary);
color: #ffffff;
padding: 18px 0;
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;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
color: #ffffff;
}

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

.btn-accept {
background-color: var(--secondary);
color: #ffffff;
border: none;
padding: 8px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-accept:hover {
background-color: #2563eb;
}

.btn-learn {
color: #ffffff;
text-decoration: underline;
font-size: 14px;
}

.header-main {
background-color: #ffffff;
padding: 20px 0;
border-bottom: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

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

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

.nav-menu {
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(--secondary);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 100%;
height: 2px;
background-color: var(--secondary);
}

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

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

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

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

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

.shape-1 {
width: 400px;
height: 400px;
background: var(--secondary);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--accent);
bottom: -80px;
left: -80px;
}

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

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

.hero-badge {
display: inline-block;
padding: 8px 16px;
background-color: rgba(59, 130, 246, 0.1);
color: var(--secondary);
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
}

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

.hero-text p {
font-size: 1.1rem;
margin-bottom: 2rem;
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: 16px;
margin-bottom: 3rem;
flex-wrap: wrap;
}

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

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

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

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

.hero-visual {
position: relative;
}

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

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

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

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

.section-label.light {
color: rgba(255, 255, 255, 0.9);
}

.methodology-section {
padding: 80px 0;
background-color: #ffffff;
}

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

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

.method-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.method-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 28px;
margin-bottom: 20px;
}

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

.method-card p {
font-size: 14px;
margin: 0;
}

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

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

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

.expertise-content p {
margin-bottom: 1.5rem;
line-height: 1.7;
}

.expertise-highlights {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 2rem;
}

.highlight-item {
display: flex;
align-items: flex-start;
gap: 16px;
}

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

.highlight-item strong {
display: block;
font-size: 15px;
color: var(--primary);
margin-bottom: 4px;
}

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

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

.services-showcase {
padding: 80px 0;
background-color: #ffffff;
}

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

.showcase-item {
padding: 36px;
background-color: var(--light);
border-radius: 12px;
transition: all 0.3s ease;
position: relative;
}

.showcase-item:hover {
background-color: #ffffff;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.showcase-number {
font-size: 3rem;
font-weight: 700;
color: rgba(59, 130, 246, 0.15);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 16px;
}

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

.showcase-item p {
font-size: 14px;
margin-bottom: 16px;
}

.link-arrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
color: var(--secondary);
}

.link-arrow:hover {
gap: 12px;
}

.link-arrow i {
font-size: 16px;
}

.impact-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
color: #ffffff;
}

.impact-content {
text-align: center;
margin-bottom: 50px;
}

.impact-content h2 {
color: #ffffff;
margin-bottom: 1rem;
}

.impact-content p {
color: rgba(255, 255, 255, 0.8);
font-size: 1.05rem;
}

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

.impact-card {
text-align: center;
padding: 36px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 12px;
backdrop-filter: blur(10px);
}

.impact-value {
font-size: 3.5rem;
font-weight: 700;
font-family: 'Syne', sans-serif;
color: #ffffff;
margin-bottom: 8px;
}

.impact-label {
font-size: 1rem;
font-weight: 600;
color: #ffffff;
margin-bottom: 8px;
}

.impact-card p {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
margin: 0;
}

.testimonial-section {
padding: 80px 0;
background-color: #ffffff;
}

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

.testimonial-box {
padding: 36px;
background-color: var(--light);
border-radius: 12px;
position: relative;
}

.quote-icon {
font-size: 40px;
color: var(--secondary);
opacity: 0.3;
margin-bottom: 16px;
}

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

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

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

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

.industries-list {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}

.industry-tag {
padding: 12px 24px;
background-color: #ffffff;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
color: var(--text);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.industry-tag:hover {
border-color: var(--secondary);
color: var(--secondary);
transform: translateY(-2px);
}

.engagement-section {
padding: 80px 0;
background-color: #ffffff;
}

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

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

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

.engagement-content p {
margin-bottom: 2rem;
line-height: 1.7;
}

.engagement-benefits {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 2rem;
}

.benefit-point {
display: flex;
align-items: center;
gap: 12px;
}

.benefit-point i {
font-size: 24px;
color: var(--secondary);
flex-shrink: 0;
}

.benefit-point span {
font-size: 14px;
color: var(--text);
}

.footer {
background-color: var(--primary);
color: #ffffff;
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
margin-bottom: 30px;
}

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

.footer-info p {
font-size: 13px;
opacity: 0.8;
margin-bottom: 0.5rem;
color: rgba(255, 255, 255, 0.8);
}

.footer-links {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s ease;
color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
font-size: 13px;
opacity: 0.7;
margin: 0;
color: rgba(255, 255, 255, 0.7);
}

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

.page-hero h1 {
color: #ffffff;
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.05rem;
color: rgba(255, 255, 255, 0.9);
}

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

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

.service-detail.reverse {
background-color: #ffffff;
border: 2px solid #e2e8f0;
}

.service-icon-large {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 36px;
margin-bottom: 20px;
}

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

.service-detail p {
margin-bottom: 1.5rem;
line-height: 1.7;
}

.service-features {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
}

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

.service-features i {
color: var(--secondary);
font-size: 20px;
}

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

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

.pricing-card {
background-color: #ffffff;
border: 2px solid #e2e8f0;
border-radius: 12px;
padding: 36px;
text-align: center;
transition: all 0.3s ease;
position: relative;
}

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

.pricing-card.featured {
border-color: var(--secondary);
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background-color: var(--secondary);
color: #ffffff;
padding: 6px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.pricing-header h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

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

.price span {
font-size: 1rem;
font-weight: 400;
color: var(--text-muted);
}

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

.pricing-features li {
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--text);
}

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

.pricing-features i {
color: var(--secondary);
font-size: 18px;
}

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

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

.process-step {
text-align: center;
padding: 32px;
background-color: var(--light);
border-radius: 12px;
transition: all 0.3s ease;
}

.process-step:hover {
background-color: #ffffff;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
margin: 0 auto 20px;
font-family: 'Syne', sans-serif;
}

.process-step h3 {
font-size: 1.1rem;
margin-bottom: 12px;
}

.process-step p {
font-size: 14px;
margin: 0;
}

.case-studies-section {
padding: 80px 0;
}

.case-study {
background-color: var(--light);
border-radius: 12px;
padding: 40px;
margin-bottom: 40px;
}

.case-study-header {
margin-bottom: 30px;
}

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

.case-meta span {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: var(--text-muted);
}

.case-meta i {
color: var(--secondary);
}

.case-study-header h2 {
font-size: 1.8rem;
}

.case-content {
display: grid;
gap: 30px;
}

.case-challenge h3, .case-solution h3, .case-results h3 {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.2rem;
margin-bottom: 1rem;
}

.case-challenge h3 i, .case-solution h3 i, .case-results h3 i {
color: var(--secondary);
}

.case-challenge p, .case-solution p {
line-height: 1.7;
}

.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 20px;
margin-top: 20px;
}

.result-item {
background-color: #ffffff;
padding: 24px;
border-radius: 8px;
text-align: center;
border: 2px solid #e2e8f0;
}

.result-value {
font-size: 2.2rem;
font-weight: 700;
color: var(--secondary);
font-family: 'Syne', sans-serif;
margin-bottom: 8px;
}

.result-label {
font-size: 13px;
color: var(--text-muted);
}

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

.contact-hero-content h1 {
color: #ffffff;
margin-bottom: 1rem;
}

.contact-hero-content p {
font-size: 1.05rem;
color: rgba(255, 255, 255, 0.9);
max-width: 700px;
margin: 0 auto;
}

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

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

.contact-info-section {
display: flex;
flex-direction: column;
gap: 24px;
}

.contact-info-card {
background-color: var(--light);
padding: 28px;
border-radius: 12px;
}

.info-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 20px;
margin-bottom: 16px;
}

.contact-info-card h3 {
font-size: 1.1rem;
margin-bottom: 12px;
}

.contact-info-card p {
font-size: 14px;
margin-bottom: 0.3rem;
}

.info-note {
font-size: 13px;
font-style: italic;
}

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

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

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

.form-header p {
font-size: 14px;
margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-item {
text-align: center;
padding: 36px;
background-color: var(--light);
border-radius: 12px;
}

.cta-item i {
font-size: 40px;
color: var(--secondary);
margin-bottom: 16px;
}

.cta-item h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.cta-item p {
font-size: 14px;
margin: 0;
}

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

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

.thankyou-icon {
width: 100px;
height: 100px;
background: linear-gradient(135deg, #10b981, #059669);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.thankyou-icon i {
font-size: 50px;
color: #ffffff;
}

.thankyou-content h1 {
margin-bottom: 1.2rem;
}

.thankyou-message {
font-size: 1.05rem;
margin-bottom: 1rem;
}

.thankyou-submessage {
font-size: 14px;
margin-bottom: 2rem;
}

.thankyou-actions {
display: flex;
gap: 16px;
justify-content: center;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.thankyou-info {
display: flex;
gap: 30px;
justify-content: center;
flex-wrap: wrap;
}

.info-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

.info-item i {
color: var(--secondary);
font-size: 18px;
}

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

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

.error-content p {
font-size: 1.05rem;
margin-bottom: 2rem;
}

.error-actions {
display: flex;
gap: 16px;
justify-content: center;
margin-bottom: 2rem;
flex-wrap: wrap;
}

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

.error-links p {
font-size: 14px;
margin-bottom: 16px;
}

.quick-links {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}

.quick-links a {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background-color: var(--light);
border-radius: 8px;
font-size: 14px;
transition: all 0.3s ease;
}

.quick-links a:hover {
background-color: var(--secondary);
color: #ffffff;
}

.quick-links a i {
font-size: 16px;
}

.policy-hero {
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
color: #ffffff;
padding: 60px 0;
text-align: center;
}

.policy-hero h1 {
color: #ffffff;
margin-bottom: 0.5rem;
}

.policy-hero p {
font-size: 14px;
color: rgba(255, 255, 255, 0.9);
margin: 0;
}

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

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

.policy-text h2 {
margin-top: 2.5rem;
margin-bottom: 1rem;
padding-top: 1rem;
border-top: 2px solid #e2e8f0;
}

.policy-text h2:first-child {
margin-top: 0;
border-top: none;
padding-top: 0;
}

.policy-text h3 {
margin-top: 1.5rem;
margin-bottom: 0.8rem;
font-size: 1.3rem;
}

.policy-text h4 {
margin-top: 1.2rem;
margin-bottom: 0.6rem;
}

.policy-text p {
margin-bottom: 1rem;
line-height: 1.7;
}

.policy-text ul {
margin-bottom: 1.5rem;
padding-left: 30px;
}

.policy-text li {
margin-bottom: 0.5rem;
line-height: 1.7;
}

.policy-text strong {
color: var(--primary);
}

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

.menu-toggle {
display: flex;
}

.nav-menu {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
background-color: #ffffff;
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: left 0.3s ease;
gap: 16px;
}

.nav-menu.active {
left: 0;
}

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

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

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

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

.hero-visual {
order: -1;
}

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

.hero-actions .btn-primary, .hero-actions .btn-outline {
width: 100%;
}

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

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

.expertise-image {
order: -1;
}

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

.impact-grid {
grid-template-columns: repeat(2, 1fr);
}

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

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

.engagement-image {
order: -1;
}

.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}

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

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

.process-timeline {
grid-template-columns: 1fr;
}

.results-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.privacy-actions {
width: 100%;
}

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

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

.thankyou-actions .btn-primary, .thankyou-actions .btn-outline,
.error-actions .btn-primary, .error-actions .btn-outline {
width: 100%;
}
}

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

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

.container {
padding: 0 16px;
}

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

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

.hero-stats {
gap: 24px;
}

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

.methodology-section, .expertise-section, .services-showcase, .impact-section,
.testimonial-section, .industries-section, .engagement-section,
.services-detailed, .pricing-section, .process-section, .case-studies-section,
.contact-main, .map-section, .contact-cta, .policy-content {
padding: 50px 0;
}

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

.method-card, .showcase-item, .testimonial-box, .contact-info-card, .cta-item {
padding: 24px;
}

.service-detail {
padding: 28px;
}

.pricing-card {
padding: 28px;
}

.contact-form-section {
padding: 28px;
}

.case-study {
padding: 28px;
}

.impact-value {
font-size: 2.5rem;
}

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

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

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

.thankyou-icon {
width: 80px;
height: 80px;
}

.thankyou-icon i {
font-size: 40px;
}

.price {
font-size: 2.2rem;
}

.footer {
padding: 30px 0 16px;
}

.footer-content {
margin-bottom: 20px;
}
}

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1rem; }

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

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

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

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

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

.price {
font-size: 2rem;
}

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

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

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

.floating-shape {
position: absolute;
opacity: 0.08;
}

.shape-circle {
width: 300px;
height: 300px;
background: var(--secondary);
border-radius: 50%;
top: -100px;
left: -100px;
animation: floatTopLeft 25s infinite ease-in-out;
}

.shape-square {
width: 200px;
height: 200px;
background: var(--accent);
top: 50%;
right: -80px;
transform: rotate(45deg);
animation: floatRight 30s infinite ease-in-out;
}

.shape-triangle {
width: 0;
height: 0;
border-left: 150px solid transparent;
border-right: 150px solid transparent;
border-bottom: 260px solid var(--secondary);
bottom: -100px;
left: 20%;
animation: floatBottom 28s infinite ease-in-out;
}

.shape-hexagon {
width: 180px;
height: 180px;
background: var(--accent);
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
top: 20%;
right: 15%;
animation: floatTopRight 22s infinite ease-in-out;
}

@keyframes floatTopLeft {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(100px, 50px) rotate(90deg); }
50% { transform: translate(150px, 100px) rotate(180deg); }
75% { transform: translate(50px, 150px) rotate(270deg); }
}

@keyframes floatRight {
0%, 100% { transform: translate(0, 0) rotate(45deg); }
33% { transform: translate(-80px, 100px) rotate(135deg); }
66% { transform: translate(-120px, -50px) rotate(225deg); }
}

@keyframes floatBottom {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(200px, -80px); }
}

@keyframes floatTopRight {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(-100px, 80px) rotate(60deg); }
50% { transform: translate(-50px, 150px) rotate(120deg); }
75% { transform: translate(-150px, 50px) rotate(180deg); }
}

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

.hero-left {
color: #ffffff;
}

.hero-label {
display: inline-block;
padding: 8px 20px;
background: rgba(59, 130, 246, 0.2);
border: 1px solid rgba(59, 130, 246, 0.3);
border-radius: 30px;
font-size: 13px;
font-weight: 600;
color: #60a5fa;
margin-bottom: 24px;
letter-spacing: 0.5px;
}

.hero-left h1 {
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 24px;
color: #ffffff;
}

.hero-left p {
font-size: 1.15rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 32px;
}

.hero-features {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
color: rgba(255, 255, 255, 0.9);
font-size: 15px;
}

.feature-item i {
font-size: 20px;
color: #60a5fa;
}

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

.hero-right {
position: relative;
}

.hero-image-container {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-image-container img {
width: 100%;
height: auto;
display: block;
border-radius: 20px;
}

.hero-stats-overlay {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
display: flex;
gap: 12px;
justify-content: space-between;
}

.stat-box {
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 16px 20px;
flex: 1;
text-align: center;
}

.stat-num {
display: block;
font-size: 1.8rem;
font-weight: 700;
color: #60a5fa;
font-family: 'Syne', sans-serif;
margin-bottom: 4px;
}

.stat-label {
display: block;
font-size: 12px;
color: rgba(255, 255, 255, 0.7);
text-transform: uppercase;
letter-spacing: 0.5px;
}

@media (max-width: 768px) {
.hero-unique {
padding: 80px 0 60px;
}

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

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

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

.hero-right {
order: -1;
}

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

.hero-cta .btn-primary, .hero-cta .btn-outline {
width: 100%;
}

.stat-box {
padding: 12px 16px;
}

.stat-num {
font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.hero-unique {
padding: 60px 0 50px;
}

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

.hero-stats-overlay {
flex-direction: column;
gap: 8px;
}
}
