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

:root {
--primary: #6366f1;
--secondary: #ec4899;
--accent: #14b8a6;
--dark: #0f172a;
--gray: #64748b;
--light: #f8fafc;
--white: #ffffff;
}

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

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

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

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 clamp(15px, 3vw, 20px);
}

/* Privacy Popup */
.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: clamp(12px, 2vw, 20px);
z-index: 9999;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
display: none;
}

.privacy-popup.show {
display: block;
}

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

.privacy-content p {
flex: 1;
min-width: 200px;
margin: 0;
font-size: clamp(12px, 2vw, 14px);
}

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

.btn-accept, .btn-learn {
padding: 8px 16px;
border-radius: 6px;
font-size: clamp(12px, 2vw, 14px);
font-weight: 500;
white-space: nowrap;
}

.btn-accept {
background: var(--primary);
color: var(--white);
border: none;
cursor: pointer;
}

.btn-accept:hover {
background: var(--secondary);
}

.btn-learn {
color: var(--white);
border: 1px solid var(--white);
}

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

/* Header */
.header {
background: var(--white);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid #e2e8f0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: clamp(1.1rem, 3vw, 1.5rem);
font-weight: 500;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

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

.nav {
display: flex;
gap: clamp(20px, 3vw, 35px);
align-items: center;
}

.nav-link {
font-size: clamp(14px, 2vw, 15px);
font-weight: 500;
color: var(--dark);
position: relative;
}

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

/* Hero Section */
.mega-hero {
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
padding: clamp(50px, 8vw, 100px) 0;
position: relative;
overflow: hidden;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 0;
pointer-events: none;
}

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

.shape-1 {
width: clamp(200px, 30vw, 400px);
height: clamp(200px, 30vw, 400px);
background: var(--primary);
top: -100px;
right: -100px;
}

.shape-2 {
width: clamp(150px, 25vw, 300px);
height: clamp(150px, 25vw, 300px);
background: var(--secondary);
bottom: -80px;
left: -80px;
}

.shape-3 {
width: clamp(100px, 20vw, 200px);
height: clamp(100px, 20vw, 200px);
background: var(--accent);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.mega-hero-grid {
display: grid;
grid-template-columns: 1fr;
gap: clamp(30px, 5vw, 60px);
align-items: center;
position: relative;
z-index: 1;
}

.hero-badge {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 8px 18px;
border-radius: 30px;
font-size: clamp(11px, 2vw, 13px);
font-weight: 600;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.mega-hero-title {
margin-bottom: 20px;
line-height: 1.1;
}

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

.mega-hero-text {
font-size: clamp(14px, 2.5vw, 18px);
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: clamp(15px, 3vw, 30px);
margin-bottom: 30px;
}

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

.stat-value {
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: clamp(12px, 2vw, 14px);
color: var(--gray);
}

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

.btn-hero-primary,
.btn-hero-secondary {
padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 35px);
border-radius: 10px;
font-weight: 600;
font-size: clamp(14px, 2vw, 15px);
text-align: center;
display: inline-block;
}

.btn-hero-primary {
background: var(--primary);
color: var(--white);
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-hero-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 12px 25px rgba(236, 72, 153, 0.3);
}

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

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

.hero-image-wrapper {
position: relative;
margin-top: 30px;
}

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

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

.floating-card i {
font-size: clamp(20px, 3vw, 24px);
color: var(--primary);
}

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

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

.card-3 {
bottom: 10%;
right: -10px;
animation-delay: 2s;
}

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

/* Section Base */
section {
padding: clamp(40px, 8vw, 80px) 0;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto clamp(30px, 5vw, 50px);
}

.section-label {
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: clamp(11px, 2vw, 13px);
font-weight: 600;
margin-bottom: 12px;
}

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

.section-intro p {
color: var(--gray);
font-size: clamp(14px, 2vw, 16px);
line-height: 1.6;
}

/* Expertise Section */
.expertise {
background: var(--white);
}

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

.expertise-card {
background: var(--light);
padding: clamp(25px, 4vw, 35px);
border-radius: 16px;
transition: all 0.3s ease;
}

.expertise-card:hover {
background: var(--white);
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
transform: translateY(-5px);
}

.expertise-icon {
width: clamp(50px, 8vw, 60px);
height: clamp(50px, 8vw, 60px);
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 18px;
}

.expertise-icon i {
font-size: clamp(24px, 4vw, 28px);
}

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

.expertise-card p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
margin-bottom: 15px;
line-height: 1.6;
}

.card-link {
color: var(--primary);
font-weight: 600;
font-size: clamp(13px, 2vw, 14px);
display: inline-flex;
align-items: center;
gap: 5px;
}

.card-link:hover {
color: var(--secondary);
}

/* Workflow Section */
.workflow {
background: var(--light);
}

.workflow-layout {
display: grid;
grid-template-columns: 1fr;
gap: clamp(30px, 5vw, 60px);
align-items: center;
}

.workflow-content h2 {
margin-bottom: 18px;
}

.workflow-content > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
font-size: clamp(14px, 2vw, 16px);
}

.workflow-steps {
display: flex;
flex-direction: column;
gap: clamp(18px, 3vw, 25px);
}

.workflow-step {
display: flex;
gap: clamp(12px, 2vw, 20px);
}

.step-marker {
width: clamp(45px, 7vw, 50px);
height: clamp(45px, 7vw, 50px);
background: var(--primary);
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: clamp(16px, 2.5vw, 18px);
flex-shrink: 0;
}

.step-info h4 {
margin-bottom: 8px;
}

.step-info p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
line-height: 1.6;
}

.workflow-visual img {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.12);
width: 100%;
}

/* Packages Section */
.packages {
background: var(--white);
}

.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: clamp(20px, 3vw, 30px);
}

.package-card {
background: var(--light);
border-radius: 20px;
padding: clamp(30px, 5vw, 40px);
position: relative;
transition: all 0.3s ease;
}

.package-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.package-card.featured {
background: var(--white);
border: 2px solid var(--primary);
box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.package-badge {
position: absolute;
top: -12px;
right: clamp(20px, 4vw, 30px);
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: clamp(11px, 2vw, 12px);
font-weight: 600;
}

.package-header {
text-align: center;
margin-bottom: 25px;
padding-bottom: 20px;
border-bottom: 2px solid rgba(0,0,0,0.05);
}

.package-header h3 {
margin-bottom: 8px;
}

.package-desc {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
margin-bottom: 18px;
}

.package-price {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 3px;
}

.currency {
font-size: clamp(1.2rem, 2.5vw, 1.5rem);
font-weight: 700;
color: var(--primary);
margin-top: 5px;
}

.amount {
font-size: clamp(2.2rem, 5vw, 3rem);
font-weight: 700;
color: var(--primary);
line-height: 1;
}

.period {
font-size: clamp(0.9rem, 2vw, 1rem);
color: var(--gray);
margin-top: 15px;
}

.package-features {
list-style: none;
margin-bottom: 25px;
}

.package-features li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 10px;
font-size: clamp(13px, 2vw, 14px);
color: var(--dark);
}

.package-features i {
color: var(--accent);
font-size: clamp(18px, 3vw, 20px);
flex-shrink: 0;
}

.package-btn {
display: block;
background: var(--primary);
color: var(--white);
padding: clamp(12px, 2vw, 14px);
border-radius: 10px;
font-weight: 600;
text-align: center;
font-size: clamp(14px, 2vw, 15px);
}

.package-btn:hover {
background: var(--secondary);
}

/* Testimonials Section */
.testimonials {
background: var(--light);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: clamp(20px, 3vw, 30px);
}

.testimonial-card {
background: var(--white);
padding: clamp(25px, 4vw, 35px);
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 18px;
}

.testimonial-rating i {
color: #fbbf24;
font-size: clamp(16px, 2.5vw, 18px);
}

.testimonial-text {
color: var(--gray);
font-size: clamp(13px, 2vw, 15px);
line-height: 1.7;
margin-bottom: 20px;
}

.author-name {
font-weight: 600;
color: var(--dark);
margin-bottom: 3px;
font-size: clamp(14px, 2vw, 15px);
}

.author-role {
font-size: clamp(12px, 2vw, 13px);
color: var(--gray);
}

/* Industries Section */
.industries {
background: var(--white);
}

.industries-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: clamp(15px, 2vw, 25px);
}

.industry-item {
background: var(--light);
padding: clamp(20px, 4vw, 30px);
border-radius: 16px;
text-align: center;
transition: all 0.3s ease;
}

.industry-item:hover {
background: var(--white);
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

.industry-item i {
font-size: clamp(32px, 5vw, 40px);
color: var(--primary);
margin-bottom: 12px;
}

.industry-item h4 {
font-size: clamp(13px, 2vw, 15px);
color: var(--dark);
}

/* Insights Section */
.insights {
background: var(--light);
}

.insights-layout {
display: grid;
grid-template-columns: 1fr;
gap: clamp(30px, 5vw, 60px);
align-items: center;
}

.insights-content h2 {
margin-bottom: 18px;
}

.insights-content > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
font-size: clamp(14px, 2vw, 16px);
}

.insights-list {
display: flex;
flex-direction: column;
gap: clamp(18px, 3vw, 25px);
margin-bottom: 30px;
}

.insight-item {
display: flex;
gap: clamp(12px, 2vw, 18px);
}

.insight-icon {
width: clamp(45px, 7vw, 50px);
height: clamp(45px, 7vw, 50px);
background: var(--primary);
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.insight-icon i {
font-size: clamp(20px, 3vw, 24px);
}

.insight-text h4 {
margin-bottom: 6px;
}

.insight-text p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
line-height: 1.6;
}

.insights-visual img {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.12);
width: 100%;
}

.btn-primary {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 32px);
border-radius: 10px;
font-weight: 600;
font-size: clamp(14px, 2vw, 15px);
}

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

/* Final CTA Section */
.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
text-align: center;
padding: clamp(50px, 8vw, 80px) 0;
}

.final-cta-content h2 {
margin-bottom: 18px;
}

.final-cta-content > p {
font-size: clamp(14px, 2.5vw, 18px);
margin-bottom: 30px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}

.cta-features {
display: flex;
justify-content: center;
gap: clamp(20px, 4vw, 40px);
margin-bottom: 30px;
flex-wrap: wrap;
}

.cta-feature {
display: flex;
align-items: center;
gap: 8px;
font-weight: 500;
font-size: clamp(13px, 2vw, 15px);
}

.cta-feature i {
font-size: clamp(20px, 3vw, 24px);
}

.btn-final-cta {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: clamp(14px, 2vw, 16px) clamp(28px, 5vw, 40px);
border-radius: 10px;
font-weight: 700;
font-size: clamp(14px, 2vw, 16px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* Footer */
.footer {
background: var(--dark);
color: var(--white);
padding: clamp(25px, 4vw, 35px) 0;
}

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

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

.footer-info p {
font-size: clamp(12px, 2vw, 14px);
opacity: 0.7;
}

.footer-links {
display: flex;
gap: clamp(15px, 3vw, 25px);
flex-wrap: wrap;
}

.footer-links a {
font-size: clamp(12px, 2vw, 14px);
opacity: 0.7;
}

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

/* Page Hero */
.page-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
padding: clamp(50px, 8vw, 70px) 0;
text-align: center;
}

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

.page-hero p {
font-size: clamp(14px, 2.5vw, 18px);
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

/* Service Pages */
.visual-services,
.design-approach,
.portfolio-showcase,
.strategy-overview,
.strategy-services,
.methodology,
.content-types {
background: var(--white);
}

.visual-services:nth-of-type(even),
.design-approach:nth-of-type(even),
.strategy-services:nth-of-type(even),
.content-types:nth-of-type(even) {
background: var(--light);
}

.visual-grid,
.strategy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: clamp(20px, 3vw, 30px);
}

.visual-item,
.strategy-card {
padding: clamp(20px, 4vw, 30px);
background: var(--light);
border-radius: 16px;
transition: all 0.3s ease;
}

.visual-services .visual-item,
.strategy-services .strategy-card {
background: var(--white);
}

.visual-item:hover,
.strategy-card:hover {
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
transform: translateY(-5px);
}

.visual-item i,
.strategy-card .strategy-icon i {
font-size: clamp(28px, 4vw, 32px);
color: white;
}

.visual-item h3,
.strategy-card h3 {
margin-bottom: 12px;
}

.visual-item p,
.strategy-card p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
line-height: 1.6;
}

.strategy-icon {
width: clamp(50px, 8vw, 60px);
height: clamp(50px, 8vw, 60px);
background: var(--primary);
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.approach-grid,
.overview-grid {
display: grid;
grid-template-columns: 1fr;
gap: clamp(30px, 5vw, 60px);
align-items: center;
}

.approach-content h2,
.overview-content h2 {
margin-bottom: 18px;
}

.approach-content > p,
.overview-content p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
font-size: clamp(14px, 2vw, 16px);
}

.approach-points {
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 25px;
}

.point h4 {
margin-bottom: 6px;
}

.point p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
line-height: 1.6;
}

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

.overview-stats {
display: flex;
flex-direction: column;
gap: 18px;
}

.stat-card {
background: var(--light);
padding: clamp(20px, 4vw, 30px);
border-radius: 16px;
text-align: center;
}

.stat-number {
font-size: clamp(2.2rem, 5vw, 3rem);
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
line-height: 1;
}

.stat-card p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: clamp(15px, 2vw, 25px);
}

.showcase-card {
padding: clamp(20px, 4vw, 30px);
background: var(--light);
border-radius: 16px;
text-align: center;
transition: all 0.3s ease;
}

.showcase-card:hover {
background: var(--white);
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

.showcase-icon {
width: clamp(60px, 10vw, 70px);
height: clamp(60px, 10vw, 70px);
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
}

.showcase-icon i {
font-size: clamp(28px, 4vw, 32px);
}

.showcase-card h3 {
margin-bottom: 8px;
font-size: clamp(14px, 2vw, 16px);
}

.showcase-card p {
color: var(--gray);
font-size: clamp(12px, 2vw, 13px);
line-height: 1.6;
}

.methodology-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: clamp(20px, 3vw, 30px);
}

.method-step {
text-align: center;
padding: clamp(15px, 3vw, 25px);
}

.method-icon {
width: clamp(60px, 10vw, 70px);
height: clamp(60px, 10vw, 70px);
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.method-icon i {
font-size: clamp(28px, 4vw, 32px);
}

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

.method-step p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
line-height: 1.6;
}

.types-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: clamp(15px, 2vw, 20px);
}

.type-item {
background: var(--white);
padding: clamp(18px, 3vw, 25px);
border-radius: 16px;
text-align: center;
transition: all 0.3s ease;
}

.type-item:hover {
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

.type-item i {
font-size: clamp(30px, 5vw, 36px);
color: var(--primary);
margin-bottom: 10px;
}

.type-item h4 {
margin-bottom: 5px;
font-size: clamp(13px, 2vw, 15px);
}

.type-item p {
color: var(--gray);
font-size: clamp(12px, 2vw, 13px);
}

/* Contact Page */
.contact-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
padding: clamp(45px, 7vw, 60px) 0;
text-align: center;
}

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

.contact-hero-content p {
font-size: clamp(14px, 2.5vw, 18px);
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

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

.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: clamp(30px, 5vw, 50px);
}

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

.contact-info-section > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
font-size: clamp(14px, 2vw, 16px);
}

.contact-methods {
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 30px;
}

.contact-method {
display: flex;
gap: clamp(12px, 2vw, 18px);
padding: clamp(18px, 3vw, 25px);
background: var(--light);
border-radius: 16px;
}

.method-icon {
width: clamp(50px, 8vw, 55px);
height: clamp(50px, 8vw, 55px);
background: var(--primary);
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.method-icon i {
font-size: clamp(20px, 3vw, 24px);
}

.method-details h3 {
margin-bottom: 6px;
font-size: clamp(15px, 2vw, 17px);
}

.method-details p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
word-break: break-word;
}

.business-hours {
background: var(--light);
padding: clamp(18px, 3vw, 25px);
border-radius: 16px;
}

.business-hours h3 {
margin-bottom: 15px;
}

.hours-list {
display: flex;
flex-direction: column;
gap: 10px;
}

.hours-item {
display: flex;
justify-content: space-between;
font-size: clamp(13px, 2vw, 14px);
gap: 10px;
}

.hours-item span:first-child {
color: var(--dark);
font-weight: 500;
}

.hours-item span:last-child {
color: var(--gray);
}

.form-container {
background: var(--light);
padding: clamp(25px, 5vw, 40px);
border-radius: 20px;
}

.form-container h2 {
margin-bottom: 10px;
}

.form-container > p {
color: var(--gray);
margin-bottom: 25px;
font-size: clamp(13px, 2vw, 14px);
}

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

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

.form-group label {
font-weight: 500;
font-size: clamp(13px, 2vw, 14px);
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: clamp(12px, 2vw, 14px);
border: 2px solid #e2e8f0;
border-radius: 10px;
font-family: inherit;
font-size: clamp(13px, 2vw, 14px);
transition: all 0.3s ease;
background: var(--white);
width: 100%;
}

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

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

.checkbox-group {
margin-top: 5px;
}

.checkbox-label {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: clamp(12px, 2vw, 14px);
cursor: pointer;
color: var(--gray);
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
width: 18px;
height: 18px;
flex-shrink: 0;
}

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

.btn-submit {
background: var(--primary);
color: var(--white);
padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 35px);
border: none;
border-radius: 10px;
font-weight: 600;
font-size: clamp(14px, 2vw, 15px);
cursor: pointer;
transition: all 0.3s ease;
}

.btn-submit:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

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

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

.map-container {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.map-container iframe {
width: 100%;
height: clamp(300px, 50vw, 450px);
border: none;
}

/* Thank You & Error Pages */
.thankyou-section,
.error-section {
min-height: calc(100vh - 250px);
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
padding: clamp(40px, 8vw, 60px) 0;
}

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

.thankyou-icon {
width: clamp(80px, 15vw, 110px);
height: clamp(80px, 15vw, 110px);
background: var(--accent);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
}

.thankyou-icon i {
font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.thankyou-content h1 {
margin-bottom: 18px;
color: var(--dark);
}

.thankyou-content p {
color: var(--gray);
margin-bottom: 30px;
font-size: clamp(14px, 2vw, 16px);
line-height: 1.7;
}

.thankyou-actions {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 30px;
}

.thankyou-extra {
padding: clamp(18px, 3vw, 25px);
background: var(--white);
border-radius: 16px;
}

.thankyou-extra p {
color: var(--gray);
font-size: clamp(13px, 2vw, 14px);
margin: 0;
}

.error-code {
font-size: clamp(4rem, 10vw, 7rem);
font-weight: 700;
color: var(--primary);
margin-bottom: 18px;
line-height: 1;
}

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

.error-content p {
color: var(--gray);
margin-bottom: 30px;
font-size: clamp(14px, 2vw, 16px);
line-height: 1.7;
}

.error-actions {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 35px;
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 32px);
border-radius: 10px;
font-weight: 600;
font-size: clamp(14px, 2vw, 15px);
border: 2px solid var(--primary);
}

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

.error-suggestions {
background: var(--white);
padding: clamp(20px, 4vw, 30px);
border-radius: 16px;
}

.error-suggestions h3 {
margin-bottom: 18px;
}

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

.suggestion-links a {
display: flex;
align-items: center;
gap: 10px;
padding: clamp(12px, 2vw, 15px);
background: var(--light);
border-radius: 10px;
color: var(--dark);
font-size: clamp(13px, 2vw, 14px);
font-weight: 500;
}

.suggestion-links a:hover {
background: var(--primary);
color: var(--white);
}

.suggestion-links i {
color: var(--primary);
font-size: clamp(18px, 3vw, 20px);
flex-shrink: 0;
}

.suggestion-links a:hover i {
color: var(--white);
}

/* Policy Pages */
.policy-page {
background: var(--white);
padding: clamp(40px, 8vw, 70px) 0;
}

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

.policy-content h1 {
margin-bottom: 12px;
}

.policy-date {
color: var(--gray);
font-size: clamp(12px, 2vw, 14px);
margin-bottom: 35px;
}

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

.policy-section h2 {
margin-bottom: 15px;
color: var(--dark);
}

.policy-section h3 {
margin: 20px 0 10px;
color: var(--dark);
font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.policy-section p {
color: var(--gray);
margin-bottom: 15px;
line-height: 1.8;
font-size: clamp(13px, 2vw, 15px);
}

.policy-section ul {
margin: 15px 0;
padding-left: clamp(20px, 4vw, 30px);
}

.policy-section li {
color: var(--gray);
margin-bottom: 10px;
line-height: 1.8;
font-size: clamp(13px, 2vw, 15px);
}

/* Responsive Media Queries */
@media (min-width: 768px) {
.mega-hero-grid {
grid-template-columns: 1.1fr 1fr;
}

.workflow-layout,
.insights-layout,
.approach-grid,
.overview-grid {
grid-template-columns: 1fr 1fr;
}

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

.floating-card {
display: flex;
}
}

@media (max-width: 767px) {
.nav {
position: fixed;
top: 0;
left: -100%;
width: 280px;
height: 100vh;
background: var(--white);
flex-direction: column;
padding: 80px 20px 20px;
box-shadow: 2px 0 20px rgba(0,0,0,0.1);
transition: left 0.3s ease;
z-index: 999;
align-items: flex-start;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.floating-card {
display: none;
}

.hero-image-wrapper {
order: -1;
}

.workflow-visual,
.insights-visual,
.approach-image {
order: -1;
}
}

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

.hero-cta-group {
width: 100%;
}

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

.hero-stats {
grid-template-columns: 1fr;
}

.cta-features {
flex-direction: column;
align-items: center;
}

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

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

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

.expertise-grid,
.packages-grid,
.testimonials-grid,
.visual-grid,
.strategy-grid,
.showcase-grid,
.methodology-steps,
.types-grid,
.industries-grid {
grid-template-columns: 1fr;
}

.privacy-actions {
width: 100%;
}

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

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

.logo {
font-size: 0.8rem;
}

.expertise-card,
.package-card,
.testimonial-card {
padding: 20px;
}

.form-container {
padding: 20px;
}

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

.package-price .amount {
font-size: 2rem;
}

.hero-badge,
.section-label,
.package-badge {
font-size: 10px;
padding: 5px 12px;
}
}
