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

:root {
--primary: #2563eb;
--secondary: #0f172a;
--accent: #f59e0b;
--light: #f8fafc;
--white: #ffffff;
--text: #1e293b;
--text-light: #64748b;
--border: #e2e8f0;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.3;
margin-bottom: 1rem;
}

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

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;
width: 100%;
}

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

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

.btn-primary:hover {
background: #1d4ed8;
border-color: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

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

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

.btn-outline {
background: transparent;
color: var(--white);
border-color: var(--white);
}

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

.btn-primary-large {
display: inline-block;
padding: 18px 48px;
background: var(--primary);
color: var(--white);
border-radius: 10px;
font-weight: 700;
font-size: 17px;
transition: all 0.3s ease;
border: 2px solid var(--primary);
}

.btn-primary-large:hover {
background: #1d4ed8;
border-color: #1d4ed8;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.header-unique {
padding: 20px 0;
background: var(--white);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
background: rgba(255,255,255,0.95);
}

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

.logo a {
font-family: 'Syne', sans-serif;
font-size: 1.5rem;
font-weight: 800;
color: var(--primary);
letter-spacing: -0.5px;
}

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

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

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

.nav-menu a:hover::after {
width: 100%;
}

.nav-menu a:hover {
color: var(--primary);
}

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

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

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

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.15) 0%, transparent 60%);
pointer-events: none;
}

.hero-content-mega {
position: relative;
z-index: 2;
max-width: 900px;
color: var(--white);
}

.hero-label {
display: inline-block;
padding: 10px 24px;
background: rgba(255,255,255,0.2);
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.3);
}

.hero-content-mega h1 {
font-size: 4rem;
margin-bottom: 1.5rem;
line-height: 1.1;
letter-spacing: -1px;
}

.hero-content-mega > p {
font-size: 1.3rem;
margin-bottom: 3rem;
opacity: 0.95;
max-width: 700px;
line-height: 1.6;
}

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

.stat-box {
display: flex;
flex-direction: column;
gap: 5px;
}

.stat-box strong {
font-size: 2.5rem;
font-weight: 800;
color: var(--accent);
line-height: 1;
}

.stat-box span {
font-size: 14px;
opacity: 0.9;
font-weight: 500;
}

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

.hero-scroll {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
font-size: 13px;
color: var(--white);
opacity: 0.8;
animation: bounce 2s infinite;
font-weight: 500;
}

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

section {
padding: 90px 0;
}

.section-header {
text-align: center;
max-width: 750px;
margin: 0 auto 60px;
}

.section-header h2 {
margin-bottom: 1.2rem;
font-size: 2.5rem;
}

.section-header p {
color: var(--text-light);
font-size: 1.15rem;
line-height: 1.7;
}

.services-section {
background: var(--white);
}

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

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

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
border-color: var(--primary);
}

.service-card h3 {
margin-bottom: 1rem;
color: var(--primary);
font-size: 1.4rem;
}

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

.showcase-section {
background: var(--light);
}

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

.showcase-image {
position: relative;
}

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

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

.showcase-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
font-size: 16px;
line-height: 1.8;
}

.feature-list {
list-style: none;
margin-bottom: 2.5rem;
}

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

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

.process-section {
background: var(--white);
}

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

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

.process-step:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.step-number {
width: 70px;
height: 70px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
margin: 0 auto 1.5rem;
box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

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

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

.team-section {
background: var(--light);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
margin-top: 60px;
}

.team-card {
padding: 40px 35px;
background: var(--white);
border-radius: 12px;
border-left: 5px solid var(--accent);
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-role {
font-size: 13px;
font-weight: 700;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 1rem;
}

.team-card h3 {
font-size: 1.6rem;
margin-bottom: 1.2rem;
color: var(--text);
}

.team-card p {
color: var(--text-light);
font-size: 15px;
line-height: 1.8;
}

.portfolio-section {
background: var(--white);
}

.portfolio-section h2 {
text-align: center;
margin-bottom: 3.5rem;
font-size: 2.5rem;
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 45px;
}

.portfolio-item {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.portfolio-item:hover {
transform: translateY(-8px);
box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

.portfolio-item:hover img {
transform: scale(1.08);
}

.portfolio-info {
padding: 30px;
background: var(--white);
}

.portfolio-info h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}

.portfolio-info p {
color: var(--text-light);
font-size: 15px;
line-height: 1.7;
}

.clients-section {
background: var(--secondary);
color: var(--white);
}

.clients-content {
text-align: center;
max-width: 850px;
margin: 0 auto;
}

.clients-content h2 {
color: var(--white);
margin-bottom: 1.5rem;
font-size: 2.5rem;
}

.clients-content p {
opacity: 0.95;
font-size: 1.15rem;
line-height: 1.9;
}

.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 70% 50%, rgba(245,158,11,0.1) 0%, transparent 60%);
pointer-events: none;
}

.cta-box {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 70px;
align-items: center;
position: relative;
z-index: 1;
}

.cta-text h2 {
color: var(--white);
margin-bottom: 1.5rem;
font-size: 2.5rem;
line-height: 1.3;
}

.cta-text p {
color: var(--white);
opacity: 0.95;
font-size: 1.15rem;
line-height: 1.8;
}

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

.cta-note {
margin-top: 1.2rem;
font-size: 14px;
color: var(--white);
opacity: 0.85;
font-weight: 500;
}

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

.footer-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 35px;
flex-wrap: wrap;
gap: 40px;
}

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

.footer-info p {
font-size: 14px;
opacity: 0.85;
margin-bottom: 0.5rem;
line-height: 1.6;
}

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

.footer-links a {
font-size: 14px;
opacity: 0.85;
transition: all 0.3s ease;
}

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

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

.footer-bottom p {
font-size: 14px;
opacity: 0.75;
}

.page-hero {
padding: 80px 0;
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
color: var(--white);
text-align: center;
position: relative;
}

.page-hero h1 {
font-size: 3rem;
margin-bottom: 1.2rem;
}

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

.content-section {
background: var(--white);
}

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

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

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

.content-text h2 {
margin-bottom: 1.5rem;
font-size: 2.2rem;
}

.content-text p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 16px;
}

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

.services-detail-section {
background: var(--light);
}

.detail-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
margin-top: 60px;
}

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

.detail-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
border-color: var(--primary);
}

.detail-card h3 {
margin-bottom: 1rem;
color: var(--primary);
font-size: 1.4rem;
}

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

.pricing-section {
background: var(--white);
}

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

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

.pricing-card.featured {
border-color: var(--primary);
border-width: 3px;
box-shadow: 0 15px 50px rgba(37,99,235,0.25);
}

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

.pricing-header {
text-align: center;
margin-bottom: 2.5rem;
padding-bottom: 2rem;
border-bottom: 2px solid var(--border);
}

.pricing-header h3 {
font-size: 1.6rem;
margin-bottom: 1.2rem;
}

.price {
font-size: 3rem;
font-weight: 800;
color: var(--primary);
line-height: 1;
}

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

.pricing-features li {
padding: 12px 0;
padding-left: 30px;
font-size: 15px;
position: relative;
color: var(--text);
}

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

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
width: 100%;
text-align: center;
}

.workflow-section {
background: var(--light);
}

.workflow-section h2 {
text-align: center;
margin-bottom: 3.5rem;
font-size: 2.5rem;
}

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

.workflow-item {
text-align: center;
padding: 40px 25px;
background: var(--white);
border-radius: 12px;
transition: all 0.3s ease;
}

.workflow-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.workflow-icon {
width: 80px;
height: 80px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin: 0 auto 1.5rem;
box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.workflow-item h3 {
font-size: 1.2rem;
margin-bottom: 1rem;
}

.workflow-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

.approach-section {
background: var(--light);
}

.approach-section h2 {
text-align: center;
margin-bottom: 3.5rem;
font-size: 2.5rem;
}

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

.approach-card {
padding: 35px 30px;
background: var(--white);
border-radius: 12px;
border-left: 5px solid var(--primary);
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.approach-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.approach-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 1.2rem;
line-height: 1;
}

.approach-card h3 {
margin-bottom: 1rem;
font-size: 1.4rem;
}

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

.benefits-section {
background: var(--white);
}

.benefits-content h2 {
text-align: center;
margin-bottom: 3.5rem;
font-size: 2.5rem;
}

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

.benefit-item {
text-align: center;
padding: 35px 25px;
}
 
.benefit-item i {
    font-size: 35px;
}

.benefit-item h3 {
margin-bottom: 1rem;
font-size: 1.4rem;
}

.benefit-item p {
color: var(--text-light);
font-size: 15px;
line-height: 1.7;
}

.contact-section {
background: var(--white);
}

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

.contact-info-side h2 {
margin-bottom: 1.5rem;
font-size: 2.2rem;
}

.contact-info-side > p {
color: var(--text-light);
margin-bottom: 3rem;
font-size: 16px;
line-height: 1.8;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-item h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
color: var(--text);
}

.contact-item p {
color: var(--text-light);
font-size: 15px;
line-height: 1.7;
}

.contact-form {
background: var(--light);
padding: 45px 40px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
display: block;
margin-bottom: 10px;
font-weight: 600;
font-size: 15px;
color: var(--text);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border);
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
transition: all 0.3s ease;
background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 14px;
cursor: pointer;
line-height: 1.6;
}

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

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

.contact-form .btn-primary {
width: 100%;
padding: 16px;
font-size: 16px;
}

.map-section {
background: var(--light);
}

.map-section h2 {
text-align: center;
margin-bottom: 2.5rem;
font-size: 2.5rem;
}

.map-container {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.thankyou-section, .error-section {
padding: 120px 0;
min-height: calc(100vh - 250px);
display: flex;
align-items: center;
background: var(--light);
}

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

.thankyou-icon {
font-size: 6rem;
color: var(--primary);
margin-bottom: 2rem;
font-weight: 700;
line-height: 1;
}

.thankyou-content h1, .error-content h1 {
margin-bottom: 1.5rem;
font-size: 2.5rem;
}

.thankyou-content p, .error-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
font-size: 1.1rem;
line-height: 1.8;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 3rem;
flex-wrap: wrap;
}

.error-number {
font-size: 10rem;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 1.5rem;
}

.policy-section {
background: var(--white);
}

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

.policy-content h1 {
font-size: 3rem;
margin-bottom: 1.2rem;
}

.policy-date {
color: var(--text-light);
font-size: 15px;
margin-bottom: 3.5rem;
font-weight: 500;
}

.policy-content h2 {
margin-top: 3rem;
margin-bottom: 1.2rem;
font-size: 1.8rem;
}

.policy-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.9;
font-size: 16px;
}

.policy-content strong {
color: var(--text);
font-weight: 600;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--secondary);
color: var(--white);
padding: 25px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.privacy-content p {
flex: 1;
margin: 0;
font-size: 15px;
line-height: 1.6;
}

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

.btn-accept {
padding: 12px 30px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-accept:hover {
background: #1d4ed8;
transform: translateY(-2px);
}

.btn-learn {
padding: 12px 30px;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
.hero-content-mega h1 {
font-size: 3.5rem;
}

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

@media (max-width: 768px) {
body {
font-size: 15px;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

.container {
padding: 0 18px;
}

.header-unique {
padding: 15px 0;
}

.logo a {
font-size: 1.3rem;
}

.nav-menu {
position: fixed;
top: 65px;
left: -100%;
width: 100%;
height: calc(100vh - 65px);
background: var(--white);
flex-direction: column;
padding: 40px 25px;
gap: 25px;
transition: left 0.4s ease;
box-shadow: 0 5px 30px rgba(0,0,0,0.15);
align-items: flex-start;
}

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

.nav-menu a {
font-size: 16px;
width: 100%;
padding: 10px 0;
}

.menu-toggle {
display: flex;
}

.hero-mega {
min-height: 75vh;
padding: 60px 0;
}

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

.hero-content-mega > p {
font-size: 1.1rem;
}

.hero-label {
font-size: 13px;
padding: 8px 20px;
}

.hero-stats {
gap: 35px;
}

.stat-box strong {
font-size: 2rem;
}

.stat-box span {
font-size: 13px;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

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

section {
padding: 60px 0;
}

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

.section-header h2 {
font-size: 2rem;
}

.section-header p {
font-size: 1rem;
}

.services-grid,
.detail-grid,
.pricing-grid,
.team-grid,
.benefits-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.showcase-grid,
.content-grid,
.contact-wrapper,
.cta-box {
grid-template-columns: 1fr;
gap: 45px;
}

.process-timeline,
.workflow-steps,
.approach-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.portfolio-grid {
grid-template-columns: 1fr;
gap: 35px;
}

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

.page-hero {
padding: 60px 0;
}

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

.page-hero p {
font-size: 1.05rem;
}

.footer {
padding: 40px 0 20px;
}

.footer-content {
flex-direction: column;
gap: 30px;
}

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

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

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

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

.thankyou-content h1, .error-content h1 {
font-size: 2rem;
}

.thankyou-content p, .error-content p {
font-size: 1rem;
}

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

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

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

.privacy-buttons {
width: 100%;
}

.btn-accept, .btn-learn {
flex: 1;
}

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

.cta-text p {
font-size: 1.05rem;
}

.cta-contact {
text-align: left;
}

.btn-primary-large {
width: 100%;
text-align: center;
padding: 16px 40px;
font-size: 16px;
}

.final-cta {
padding: 70px 0;
}

.contact-form {
padding: 35px 30px;
}

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

.policy-content h2 {
font-size: 1.6rem;
}
}

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

h1 { font-size: 1.7rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.container {
padding: 0 16px;
}

.logo a {
font-size: 0.8rem;
}

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

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

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

.hero-content-mega > p {
font-size: 1rem;
margin-bottom: 2.5rem;
}

.hero-label {
font-size: 12px;
padding: 7px 18px;
}

.hero-stats {
gap: 25px;
}

.stat-box strong {
font-size: 1.7rem;
}

.stat-box span {
font-size: 12px;
}

section {
padding: 50px 0;
}

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

.section-header h2 {
font-size: 1.7rem;
}

.section-header p {
font-size: 0.95rem;
}

.service-card,
.detail-card,
.pricing-card,
.team-card,
.approach-card {
padding: 30px 25px;
}

.service-card h3,
.detail-card h3,
.team-card h3 {
font-size: 1.2rem;
}

.service-card p,
.detail-card p,
.team-card p,
.approach-card p,
.benefit-item p {
font-size: 14px;
}

.step-number,
.workflow-icon {
width: 65px;
height: 65px;
font-size: 1.3rem;
}

.process-step,
.workflow-item {
padding: 30px 20px;
}

.process-step h3,
.workflow-item h3 {
font-size: 1.1rem;
}

.process-step p,
.workflow-item p {
font-size: 13px;
}

.team-role {
font-size: 11px;
}

.portfolio-section h2,
.workflow-section h2,
.approach-section h2,
.benefits-content h2,
.map-section h2 {
font-size: 1.7rem;
}

.portfolio-info {
padding: 25px;
}

.portfolio-info h3 {
font-size: 1.3rem;
}

.portfolio-info p {
font-size: 14px;
}

.clients-content h2 {
font-size: 1.7rem;
}

.clients-content p {
font-size: 1rem;
}

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

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

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

.cta-note {
font-size: 13px;
}

.final-cta {
padding: 60px 0;
}

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

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

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

.content-text h2,
.contact-info-side h2 {
font-size: 1.7rem;
}

.content-text p,
.contact-info-side > p,
.contact-item p {
font-size: 14px;
}

.pricing-header h3 {
font-size: 1.4rem;
}

.price {
font-size: 2.5rem;
}

.pricing-features li {
font-size: 14px;
}

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

.approach-card h3 {
font-size: 1.2rem;
}

.benefit-item h3 {
font-size: 1.2rem;
}

.contact-form {
padding: 30px 25px;
}

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

.form-group label {
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px 16px;
font-size: 14px;
}

.checkbox-label {
font-size: 13px;
}

.thankyou-section, .error-section {
padding: 70px 0;
}

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

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

.thankyou-content h1, .error-content h1 {
font-size: 1.7rem;
}

.thankyou-content p, .error-content p {
font-size: 0.95rem;
}

.policy-content h1 {
font-size: 2rem;
}

.policy-content h2 {
font-size: 1.5rem;
}

.policy-content p {
font-size: 15px;
}

.footer {
padding: 35px 0 18px;
}

.footer-brand {
font-size: 1.2rem;
}

.footer-info p,
.footer-links a {
font-size: 13px;
}

.privacy-popup {
padding: 20px;
}

.privacy-content p {
font-size: 14px;
}

.btn-accept, .btn-learn {
padding: 10px 24px;
font-size: 14px;
}
}

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

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

.container {
padding: 0 14px;
}



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

.hero-content-mega > p {
font-size: 0.95rem;
}

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

.section-header h2 {
font-size: 1.5rem;
}

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

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

.thankyou-content h1, .error-content h1 {
font-size: 1.5rem;
}

.policy-content h1 {
font-size: 1.8rem;
}
}

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

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

.container {
padding: 0 12px;
}



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

.hero-mega {
min-height: 60vh;
padding: 40px 0;
}

.hero-content-mega {
padding: 0;
}

.hero-content-mega h1 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.hero-content-mega > p {
font-size: 0.9rem;
margin-bottom: 2rem;
}

.hero-label {
font-size: 11px;
padding: 6px 16px;
margin-bottom: 1.5rem;
}

.hero-stats {
gap: 20px;
margin-bottom: 2rem;
}

.stat-box strong {
font-size: 1.4rem;
}

.stat-box span {
font-size: 11px;
}

.hero-scroll {
font-size: 11px;
bottom: 25px;
}

section {
padding: 40px 0;
}

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

.section-header h2 {
font-size: 1.4rem;
margin-bottom: 0.8rem;
}

.section-header p {
font-size: 0.9rem;
}

.service-card,
.detail-card,
.pricing-card,
.team-card,
.approach-card,
.benefit-item {
padding: 25px 20px;
}

.service-card h3,
.detail-card h3,
.team-card h3,
.approach-card h3,
.benefit-item h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
}

.service-card p,
.detail-card p,
.team-card p,
.approach-card p,
.benefit-item p {
font-size: 13px;
}

.team-role {
font-size: 10px;
letter-spacing: 1px;
}

.step-number,
.workflow-icon {
width: 55px;
height: 55px;
font-size: 1.2rem;
margin-bottom: 1rem;
}

.process-step,
.workflow-item {
padding: 25px 18px;
}

.process-step h3,
.workflow-item h3 {
font-size: 1rem;
margin-bottom: 0.8rem;
}

.process-step p,
.workflow-item p {
font-size: 12px;
}

.portfolio-section h2,
.workflow-section h2,
.approach-section h2,
.benefits-content h2,
.map-section h2 {
font-size: 1.4rem;
margin-bottom: 2.5rem;
}

.portfolio-info {
padding: 20px;
}

.portfolio-info h3 {
font-size: 1.2rem;
}

.portfolio-info p {
font-size: 13px;
}

.clients-content h2 {
font-size: 1.4rem;
}

.clients-content p {
font-size: 0.95rem;
}

.final-cta {
padding: 50px 0;
}

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

.cta-text p {
font-size: 0.95rem;
}

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

.cta-note {
font-size: 12px;
margin-top: 1rem;
}

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

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

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

.content-text h2,
.contact-info-side h2 {
font-size: 1.4rem;
}

.content-text p,
.contact-info-side > p {
font-size: 13px;
}

.contact-item h3 {
font-size: 1rem;
}

.contact-item p {
font-size: 13px;
}

.pricing-header h3 {
font-size: 1.3rem;
}

.price {
font-size: 2.2rem;
}

.pricing-features li {
font-size: 13px;
padding: 10px 0 10px 28px;
}

.pricing-features li:before {
font-size: 16px;
}

.approach-number {
font-size: 1.8rem;
}

.contact-form {
padding: 25px 20px;
}

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

.form-group label {
font-size: 13px;
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
padding: 11px 14px;
font-size: 13px;
}

.form-group textarea {
min-height: 100px;
}

.checkbox-label {
font-size: 12px;
gap: 10px;
}

.contact-form .btn-primary {
padding: 13px;
font-size: 14px;
}

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

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

.error-number {
font-size: 4.5rem;
margin-bottom: 1rem;
}

.thankyou-content h1, .error-content h1 {
font-size: 1.5rem;
margin-bottom: 1.2rem;
}

.thankyou-content p, .error-content p {
font-size: 0.9rem;
margin-bottom: 1rem;
}

.thankyou-actions, .error-actions {
margin-top: 2rem;
gap: 15px;
}

.policy-content h1 {
font-size: 1.7rem;
}

.policy-date {
font-size: 13px;
margin-bottom: 3rem;
}

.policy-content h2 {
font-size: 1.3rem;
margin-top: 2.5rem;
}

.policy-content p {
font-size: 14px;
margin-bottom: 1.2rem;
}

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

.footer-content {
margin-bottom: 25px;
gap: 25px;
}

.footer-brand {
font-size: 1.1rem;
margin-bottom: 1rem;
}

.footer-info p {
font-size: 12px;
}

.footer-links {
gap: 10px;
}

.footer-links a {
font-size: 12px;
}

.footer-bottom {
padding-top: 20px;
}

.footer-bottom p {
font-size: 12px;
}

.privacy-popup {
padding: 18px;
}

.privacy-content {
gap: 20px;
}

.privacy-content p {
font-size: 13px;
}

.privacy-buttons {
gap: 12px;
}

.btn-accept, .btn-learn {
padding: 9px 20px;
font-size: 13px;
}
}
