/* Web Design Page Responsive Styles */

/* Scroll Hint - Make more visible on laptop */
.webdev-hero .webdev-scroll-hint,
.hero--webdesign .scroll-hint {
  opacity: 1 !important;
  z-index: 10 !important;
}

.webdev-hero .webdev-scroll-hint .mouse,
.hero--webdesign .scroll-hint .mouse {
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.webdev-hero .webdev-scroll-hint .mouse:after,
.hero--webdesign .scroll-hint .mouse:after {
  background: #fff !important;
  opacity: 1 !important;
}

.webdev-hero .webdev-scroll-hint .label,
.hero--webdesign .scroll-hint .label {
  color: rgba(255, 255, 255, 0.95) !important;
  opacity: 1 !important;
}

/* Web Design Hero Badge - Match Homepage Style */
.webdev-hero-content .badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  position: relative;
  font-size: 14px;
  color: #fff;
}

.webdev-hero-content .badge:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.webdev-hero-content .badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent1);
  position: relative;
  box-shadow: 0 0 0 3px rgba(18, 227, 214, 0.18), 0 0 14px 4px rgba(0, 207, 209, 0.35);
  animation: badgePulse 2.4s ease-in-out infinite;
}

.webdev-hero-content .badge span:after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(0, 207, 209, 0.6), rgba(0, 207, 209, 0));
  filter: blur(4px);
  opacity: 0.8;
}

/* Why Professional section - remove background for all screen sizes */
.why-professional-section{background:transparent !important}
.why-professional-section:before{display:none !important}

/* Process Section - Remove lines and step numbers */
.process-section .step-number,
.webdesign-process-number {
  display: none !important;
}

.process-section .step-number:after,
.process-section .step-1:after,
.process-section .step-2:after,
.process-section .step-3:after,
.process-section .step-4:after,
.process-section .step-5:after,
.process-section .step-6:after,
.webdesign-process-number:after,
.webdesign-process-item:after {
  display: none !important;
}

/* Project Next Projects Section - Match webdesign-projects-section */
.project-next-projects-section {
  background: #090B1B;
  padding: 80px 0;
}

.project-next-projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Apply same title styles to project-next-projects-section */
.project-next-projects-section .webdesign-projects-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 60px 0;
}

/* Apply same grid styles to project-next-projects-section */
.project-next-projects-section .webdesign-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensure all project card styles apply to project-next-projects-section */
.project-next-projects-section .webdesign-project-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  text-decoration: none;
  color: #e9eef4;
  height: auto;
  transition: transform 0.3s ease;
}

.project-next-projects-section .webdesign-project-image {
  position: relative;
  flex: 0 0 400px;
  height: 400px;
  background: transparent;
  overflow: hidden;
}

.project-next-projects-section .webdesign-project-image img,
.project-next-projects-section .webdesign-project-image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.project-next-projects-section .webdesign-project-content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-next-projects-section .webdesign-project-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.project-next-projects-section .webdesign-project-info {
  flex: 1;
}

.project-next-projects-section .webdesign-project-mini-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.project-next-projects-section .webdesign-project-card:hover .webdesign-project-mini-circle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateX(4px);
}

.project-next-projects-section .webdesign-project-mini-circle img {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.project-next-projects-section .webdesign-project-tag-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent1);
  font-weight: 600;
  background: rgba(0, 207, 209, 0.20);
  border: none;
  box-shadow: none;
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.project-next-projects-section .webdesign-project-title {
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.project-next-projects-section .webdesign-project-desc {
  color: #aab8c7;
  font-size: 14px;
  margin: 0;
}

.project-next-projects-section .webdesign-project-card:hover {
  transform: translateY(-4px);
}

/* Back to All Projects button */
.project-next-projects-back {
  text-align: center;
  margin-top: 48px;
}

/* Why Choose Cards Section */
.webdev-choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.webdev-choose-card {
  width: 100%;
  max-width: 100%;
  padding: 32px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webdev-choose-icon {
  width: 62px;
  height: 62px;
  position: relative;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webdev-choose-icon img {
  width: 24px;
  height: 24px;
}

.webdev-choose-icon img[src*="conversion-focused"] {
  width: 56px;
  height: 56px;
}

/* Why Choose Stats Section */
.webdev-choose-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.webdev-choose-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 200px;
  max-width: 100%;
}

.webdev-choose-stat-num {
  width: 100%;
  text-align: center;
  color: #00CFD1;
  font-size: 42px;
  font-family: 'SF Pro', -apple-system, 'SF Pro Text', 'SF Pro Display', system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 50px;
}

.webdev-choose-stat-label {
  width: 100%;
  text-align: center;
  color: white;
  font-size: 20px;
  font-family: 'SF Pro', -apple-system, 'SF Pro Text', 'SF Pro Display', system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.webdev-choose-stat-divider {
  width: 100%;
  height: 1px;
  background: white;
  border-radius: 10px;
}

/* What Is Web Design Cards - Equal height and offset */
.webdev-what-cards {
  align-items: stretch !important;
}

.webdev-what-cards .webdev-info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Offset the right column cards (2nd and 4th) upward */
.webdev-what-cards .webdev-info-card:nth-child(2),
.webdev-what-cards .webdev-info-card:nth-child(4) {
  margin-top: -24px;
  transform: translateY(-24px);
}

.webdev-choose-card-title {
  align-self: stretch;
  color: white;
  font-size: 22px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

.webdev-choose-card-desc {
  align-self: stretch;
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

/* CTA Banner Section Styles */
.webdesign-cta-banner {
  background: #090B1B;
  padding: 80px 0;
}

.webdesign-cta-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webdesign-cta-banner-content {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(149deg, #0075E3 0%, #F87171 100%);
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.webdesign-cta-title {
  width: 100%;
  max-width: 1090px;
  text-align: center;
  color: white;
  font-size: 40px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 40px;
  word-wrap: break-word;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.webdesign-cta-subtitle {
  width: 100%;
  max-width: 1090px;
  text-align: center;
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Testimonials Section Styles */
.webdesign-testimonials-section {
  background: #090B1B;
  padding: 80px 0;
}

.webdesign-testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdesign-testimonials-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 24px 0;
}

.webdesign-testimonials-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.webdesign-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.webdesign-testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webdesign-testimonial-quote {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.webdesign-testimonial-quote img {
  width: 32px;
  height: 32px;
}

.webdesign-testimonial-text {
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.webdesign-testimonial-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 10px;
}

.webdesign-testimonial-name {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 4px 0;
}

.webdesign-testimonial-role {
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Insights Section Styles */
.webdesign-insights-section {
  background: #090B1B;
  padding: 80px 0;
}

.webdesign-insights-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdesign-insights-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 24px 0;
}

.webdesign-insights-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.webdesign-insights-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.webdesign-insight-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
}

.webdesign-insight-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.webdesign-insight-icon img {
  width: 24px;
  height: 24px;
}

.webdesign-insight-text {
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Projects Section Styles */
.webdesign-projects-section {
  background: #090B1B;
  padding: 80px 0;
}

.webdesign-projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdesign-projects-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 60px 0;
}

.webdesign-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.webdesign-project-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  text-decoration: none;
  color: #e9eef4;
  height: auto;
  transition: transform 0.3s ease;
}

.webdesign-project-card,
.webdesign-project-card *,
.webdesign-project-card *::before,
.webdesign-project-card *::after {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.webdesign-project-card h3,
.webdesign-project-card h3::before,
.webdesign-project-card h3::after,
.webdesign-project-card p,
.webdesign-project-card p::before,
.webdesign-project-card p::after,
.webdesign-project-card span,
.webdesign-project-card span::before,
.webdesign-project-card span::after,
.webdesign-project-card a,
.webdesign-project-card a::before,
.webdesign-project-card a::after,
.webdesign-project-card .webdesign-project-title,
.webdesign-project-card .webdesign-project-title::before,
.webdesign-project-card .webdesign-project-title::after,
.webdesign-project-card .webdesign-project-link,
.webdesign-project-card .webdesign-project-link::before,
.webdesign-project-card .webdesign-project-link::after {
  text-decoration: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-image: none !important;
}

.webdesign-project-card:hover {
  transform: translateY(-4px);
}

.webdesign-project-image {
  position: relative;
  flex: 0 0 400px;
  height: 400px;
  background: transparent;
  overflow: hidden;
}

.webdesign-project-image img,
.webdesign-project-image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.webdesign-project-content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webdesign-project-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.webdesign-project-info {
  flex: 1;
}

.webdesign-project-mini-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.webdesign-project-card:hover .webdesign-project-mini-circle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateX(4px);
}

.webdesign-project-mini-circle img {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}


.webdesign-project-tag-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent1);
  font-weight: 600;
  background: rgba(0, 207, 209, 0.20);
  border: none;
  box-shadow: none;
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.webdesign-project-title {
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.webdesign-project-title::before,
.webdesign-project-title::after {
  content: none !important;
  display: none !important;
}

.webdesign-project-desc {
  color: #aab8c7;
  font-size: 14px;
  margin: 0;
}

.webdesign-project-tag {
  display: inline-block;
  margin-bottom: 8px;
}

.webdesign-project-link {
  display: none;
}

.webdesign-project-link::before,
.webdesign-project-link::after {
  content: none !important;
  display: none !important;
}

.webdesign-project-card:hover .webdesign-project-link {
  color: #00a8aa;
}


/* Benefits Section Styles */
.webdesign-benefits-section {
  background: #090B1B;
  padding: 80px 0;
}

.webdesign-benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdesign-benefits-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 24px 0;
}

.webdesign-benefits-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.webdesign-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.webdesign-benefit-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webdesign-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.webdesign-benefit-icon img {
  width: 24px;
  height: 24px;
}

.webdesign-benefit-title {
  color: white;
  font-size: 22px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.webdesign-benefit-desc {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Services/Process Section Styles */
.webdesign-services-section {
  background: #090B1B;
  padding: 80px 0;
}

.webdesign-services-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 24px 0;
}

.webdesign-services-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.webdesign-process {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.webdesign-process-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.webdesign-process-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
}

.webdesign-process-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.webdesign-process-icon img {
  width: 24px;
  height: 24px;
}

.webdesign-process-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webdesign-process-title {
  color: white;
  font-size: 22px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.webdesign-process-desc {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Tablet (≤991px) */
@media (max-width: 991px) {
  /* Hero section tablet */
  .webdev-hero-title{font-size:clamp(36px,6.2vw,56px) !important;line-height:1.1 !important;text-align:center !important}
  .webdev-hero-cta{flex-direction:row !important;flex-wrap:wrap !important;gap:12px !important;justify-content:center !important}
  
  /* Why Choose Stats tablet */
  .webdev-choose-stats {
    gap: 24px !important;
    margin-bottom: 50px !important;
  }
  
  .webdev-choose-stat {
    width: 180px !important;
  }
  
  .webdev-choose-stat-num {
    font-size: 36px !important;
    line-height: 44px !important;
  }
  
  .webdev-choose-stat-label {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  /* Why Choose Cards tablet */
  .webdev-choose-cards {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
  
  .webdev-choose-card {
    width: 100% !important;
    padding: 24px !important;
  }
}

/* Why Choose Section - Responsive Styles */
@media (max-width: 640px) {
  .webdev-choose-section {
    padding: 40px 0 !important;
  }

  .webdev-choose-section .container {
    padding: 0 18px !important;
  }

  /* Stats row mobile - keep 3 columns */
  .webdev-choose-stats {
    flex-direction: row !important;
    gap: 12px !important;
    margin-bottom: 40px !important;
    align-items: stretch !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    padding: 0 18px !important;
  }

  .webdev-choose-stat {
    width: auto !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 33.33% !important;
    gap: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .webdev-choose-stat-num {
    font-size: 28px !important;
    line-height: 32px !important;
    margin: 0 !important;
  }

  .webdev-choose-stat-label {
    font-size: 12px !important;
    line-height: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .webdev-choose-stat-divider {
    width: 100% !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    height: 1px !important;
  }

  /* Description text mobile */
  .webdev-choose-section .container > div[style*="width: 1002px"][style*="margin: 0 auto 40px"] {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 24px !important;
    padding: 0 !important;
    margin-bottom: 32px !important;
  }

  /* Highlight text mobile */
  .webdev-choose-section .container > div[style*="width: 1002px"][style*="margin: 0 auto 60px"] {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 24px !important;
    padding: 0 !important;
    margin-bottom: 40px !important;
  }


  /* Section title mobile */
  .webdev-choose-section .webdev-section-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    line-height: 1.2 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .webdev-choose-section .webdev-section-subtitle {
    font-size: 14px !important;
    line-height: 1.6 !important;
    padding: 0 !important;
    margin-bottom: 32px !important;
  }
  
  /* Why Choose Cards mobile */
  .webdev-choose-cards {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  
  .webdev-choose-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px !important;
    gap: 16px !important;
  }
  
  .webdev-choose-icon {
    width: 56px !important;
    height: 56px !important;
  }
  
  .webdev-choose-icon img {
    width: 22px !important;
    height: 22px !important;
  }
  
  .webdev-choose-icon img[src*="conversion-focused"] {
    width: 48px !important;
    height: 48px !important;
  }
  
  .webdev-choose-card-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  
  .webdev-choose-card-desc {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  /* Hero section mobile - full screen */
  .webdev-hero {
    min-height: 100vh !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .webdev-hero-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 80px 18px 32px !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    z-index: 2 !important;
  }

  /* Hero title mobile - significantly reduced */
  .webdev-hero-title {
    font-size: clamp(32px, 8vw, 48px) !important;
    line-height: 1.1 !important;
    text-align: center !important;
    margin: 0 0 16px 0 !important;
  }

  /* Badge mobile */
  .webdev-hero-content .badge {
    font-size: 12px !important;
    padding: 6px 12px !important;
    margin-bottom: 12px !important;
  }

  /* Spacer mobile */
  .webdev-spacer {
    height: 12px !important;
    margin: 0 !important;
  }

  /* Hero CTA mobile */
  .webdev-hero-cta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 8px !important;
  }

  .webdev-hero-cta .btn {
    font-size: 13px !important;
    padding: 8px 16px !important;
    min-height: 36px !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    max-width: calc(50% - 4px) !important;
  }

  /* Scroll hint mobile */
  .webdev-scroll-hint {
    bottom: 20px !important;
    z-index: 10 !important;
  }

  /* Intro section mobile */
  .webdev-intro-section {
    padding-top: 40px !important;
    padding-bottom: 0 !important;
  }

  .webdev-intro-section .container-narrow {
    max-width: 680px !important;
    padding: 0 18px !important;
  }

  .webdev-intro-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* Bottom CTA mobile */
  .webdev-bottom-cta {
    padding: 30px 18px !important;
  }
  
  .container-cta {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
    align-items: center !important;
  }
  
  .webdev-bottom-cta-text {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }
  
  .webdev-bottom-cta .btn {
    width: 100% !important;
    max-width: 280px !important;
    height: 44px !important;
    padding: 0 24px !important;
    font-size: 16px !important;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991px) {
  /* Intro section tablet */
  .webdev-intro-section {
    padding: 72px 0 !important;
  }
  
  .webdev-intro-section .container-narrow {
    max-width: 820px !important;
    padding: 0 24px !important;
  }
  
  .webdev-intro-text {
    font-size: 16px !important;
    line-height: 1.65 !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* Bottom CTA tablet */
  .webdev-bottom-cta {
    padding: 40px 40px !important;
  }
  
  .webdev-bottom-cta-text {
    font-size: 24px !important;
    line-height: 1.4 !important;
  }
  
  .webdev-bottom-cta .btn {
    height: 44px !important;
    padding: 0 28px !important;
    font-size: 17px !important;
  }

  .wd-intro{padding:32px 0 16px;margin-top:80px}
  .wd-intro .intro-text{width:100%;max-width:800px;height:auto;font-size:16px;line-height:1.75;padding:0 24px}

  /* What Is Web Design section tablet */
  .wd-what-title{font-size:clamp(32px,6vw,48px) !important;line-height:1.2 !important;margin-bottom:24px}
  .what-grid{grid-template-columns:1fr !important;gap:24px !important}
  .wd-what-copy{width:100% !important;max-width:100%;padding:0 24px}
  .wd-what-copy .text-body{font-size:16px !important;line-height:1.75 !important}
  .card-grid-2{grid-template-columns:repeat(2,1fr) !important;gap:16px !important;justify-content:center !important;padding-top:20px}
  .card-grid-2 .info-card{width:100% !important;max-width:none}
  .card-grid-2 .info-card:nth-child(2n){transform:none}

  /* Why Choose section tablet */
  .why-choose .projects-title{font-size:clamp(32px,6vw,48px) !important;line-height:1.2 !important;margin-bottom:20px}
  .why-choose .why-sub{font-size:15px !important;line-height:1.6 !important;padding:0 24px;margin-bottom:20px}
  .stats-row{gap:40px !important;margin:20px 0 18px !important}
  .stat .num{font-size:36px !important}
  .stat .label{font-size:14px !important}
  .why-copy{max-width:800px !important;padding:0 24px}
  .why-copy p{font-size:16px !important;line-height:1.75 !important}
  .why-copy strong{font-size:16px !important;line-height:1.75 !important}
  .why-highlight{font-size:18px !important;line-height:1.5 !important}
  .why-cards{grid-template-columns:repeat(3,1fr) !important;gap:16px !important;margin-top:20px}
  .why-card{padding:20px !important}

  /* Process section tablet */
  .process-section .projects-title{font-size:clamp(32px,6vw,48px) !important;line-height:1.2 !important;margin-bottom:20px}
  .process-intro{font-size:15px !important;line-height:1.65 !important;padding:0 24px;margin-bottom:32px}
  .process-step{margin-bottom:28px !important;gap:18px !important}
  .step-number{width:50px !important;height:50px !important;font-size:20px !important}
  .step-number:after{display:none !important}
  .step-card{padding:20px !important;gap:16px !important}
  .step-icon{width:44px !important;height:44px !important}
  .step-icon img{width:22px !important;height:22px !important}
  .step-content{gap:10px !important}
  .step-title{font-size:18px !important;line-height:1.3 !important}
  .step-desc{font-size:15px !important;line-height:1.6 !important}

  /* CTA Banner Section tablet */
  .webdesign-cta-banner {
    padding: 60px 0 !important;
  }

  .webdesign-cta-banner .container {
    padding: 0 24px !important;
  }
  
  .webdesign-cta-banner-content {
    padding: 60px 32px !important;
    gap: 16px !important;
  }

  .webdesign-cta-title {
    font-size: clamp(32px, 6vw, 40px) !important;
    line-height: 1.2 !important;
  }

  .webdesign-cta-subtitle {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  /* Insights Section tablet */
  .webdesign-insights-section {
    padding: 60px 0 !important;
  }

  .webdesign-insights-section .container {
    padding: 0 24px !important;
  }

  .webdesign-insights-title {
    font-size: clamp(32px, 6vw, 48px) !important;
    margin-bottom: 20px !important;
  }

  .webdesign-insights-subtitle {
    font-size: 16px !important;
    margin-bottom: 40px !important;
  }

  .webdesign-insights-list {
    gap: 20px !important;
  }

  .webdesign-insight-item {
    padding: 20px !important;
    gap: 16px !important;
  }

  .webdesign-insight-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .webdesign-insight-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .webdesign-insight-text {
    font-size: 16px !important;
  }

  /* Projects Section tablet */
  .webdesign-projects-section,
  .project-next-projects-section {
    padding: 60px 0 !important;
  }

  .webdesign-projects-section .container,
  .project-next-projects-section .container {
    padding: 0 24px !important;
  }

  .webdesign-projects-title,
  .project-next-projects-section .webdesign-projects-title {
    font-size: clamp(32px, 6vw, 48px) !important;
    margin-bottom: 40px !important;
  }

  .webdesign-projects-grid,
  .project-next-projects-section .webdesign-projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .project-next-projects-back {
    margin-top: 40px !important;
  }

  .webdesign-project-image {
    flex: 0 0 200px !important;
    height: 200px !important;
  }

  .webdesign-project-content {
    padding: 12px 14px !important;
  }

  .webdesign-project-title {
    font-size: 20px !important;
  }
  
  .webdesign-project-desc {
    font-size: 13px !important;
  }
  
  .webdesign-project-mini-circle {
    width: 40px !important;
    height: 40px !important;
  }
  
  .webdesign-project-tag {
    margin-bottom: 6px !important;
  }
  
  .webdesign-project-tag-text {
    font-size: 11px !important;
    padding: 8px 12px !important;
    height: auto !important;
  }


  /* Testimonials Section tablet */
  .webdesign-testimonials-section {
    padding: 60px 0 !important;
  }

  .webdesign-testimonials-section .container {
    padding: 0 24px !important;
  }

  .webdesign-testimonials-title {
    font-size: clamp(32px, 6vw, 48px) !important;
    margin-bottom: 20px !important;
  }

  .webdesign-testimonials-subtitle {
    font-size: 16px !important;
    margin-bottom: 40px !important;
  }

  .webdesign-testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .webdesign-testimonial-card {
    padding: 24px !important;
    gap: 16px !important;
  }

  .webdesign-testimonial-quote {
    width: 36px !important;
    height: 36px !important;
  }

  .webdesign-testimonial-quote img {
    width: 28px !important;
    height: 28px !important;
  }

  .webdesign-testimonial-text {
    font-size: 15px !important;
  }

  .webdesign-testimonial-name {
    font-size: 16px !important;
  }

  .webdesign-testimonial-role {
    font-size: 13px !important;
  }

  /* Benefits Section tablet */
  .webdesign-benefits-section {
    padding: 60px 0 !important;
  }

  .webdesign-benefits-section .container {
    padding: 0 24px !important;
  }

  .webdesign-benefits-title {
    font-size: clamp(32px, 6vw, 48px) !important;
    margin-bottom: 20px !important;
  }

  .webdesign-benefits-subtitle {
    font-size: 16px !important;
    margin-bottom: 40px !important;
  }

  .webdesign-benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .webdesign-benefit-card {
    padding: 24px !important;
    gap: 16px !important;
  }

  .webdesign-benefit-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .webdesign-benefit-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .webdesign-benefit-title {
    font-size: 20px !important;
  }

  .webdesign-benefit-desc {
    font-size: 15px !important;
  }

  /* Services/Process Section tablet */
  .webdesign-services-section {
    padding: 60px 0 !important;
  }

  .webdesign-services-title {
    font-size: clamp(32px, 6vw, 48px) !important;
    padding: 0 24px !important;
  }

  .webdesign-services-subtitle {
    font-size: 16px !important;
    padding: 0 24px !important;
    margin-bottom: 40px !important;
  }

  .webdesign-process {
    padding: 0 24px !important;
    gap: 24px !important;
  }

  .webdesign-process-card {
    padding: 24px !important;
    gap: 20px !important;
  }

  .webdesign-process-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .webdesign-process-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .webdesign-process-title {
    font-size: 20px !important;
  }

  .webdesign-process-desc {
    font-size: 15px !important;
  }

  /* Testimonials section tablet */
  .testimonials-section{margin-top:80px !important}
  .testimonials-banner{padding:60px 32px !important;margin-bottom:48px !important;gap:16px !important}
  .testimonials-banner-title{font-size:clamp(28px,5vw,36px) !important;line-height:1.2 !important}
  .testimonials-banner-subtitle{font-size:16px !important}
  .testimonials-intro{max-width:800px !important;padding:0 24px;margin-bottom:40px !important}
  .testimonials-title{font-size:clamp(32px,6vw,40px) !important;line-height:1.2 !important;margin-bottom:12px !important}
  .testimonials-description{font-size:16px !important;line-height:1.6 !important}
  .testimonials-grid{grid-template-columns:repeat(2,1fr) !important;gap:16px !important}
  .testimonial-card{width:100% !important;max-width:none !important;padding:24px !important;gap:20px !important}
  .testimonial-quote{width:36px !important;height:36px !important}
  .testimonial-text{font-size:15px !important;line-height:1.5 !important}
  .testimonial-rating img{width:18px !important;height:18px !important}
  .testimonial-separator{width:100% !important;max-width:280px !important}
  .testimonial-author{font-size:15px !important}
  .testimonial-position{font-size:13px !important}

  /* Why Professional section tablet */
  .why-professional-section{background:transparent !important;padding:60px 0 !important;margin-top:80px !important}
  .why-professional-section:before{display:none !important}
  .why-professional-title{font-size:clamp(32px,6vw,40px) !important;line-height:1.3 !important;margin-bottom:20px !important}
  .why-professional-description{font-size:16px !important;line-height:1.6 !important;padding:0 24px;margin-bottom:40px !important}
  .why-professional-grid{grid-template-columns:repeat(2,1fr) !important;gap:20px !important;max-width:100% !important;padding:0 24px}
  .why-professional-card{padding:24px !important;gap:16px !important}
  .why-professional-icon{width:44px !important;height:44px !important;margin-bottom:16px !important}
  .why-professional-icon img{width:28px !important;height:28px !important}
  .why-professional-card-title{font-size:18px !important;margin:0 0 12px !important}
  .why-professional-card-text{font-size:15px !important;line-height:1.5 !important}

  /* Insights section tablet */
  .insights-section{margin-top:80px !important;padding:60px 0 !important}
  .insights-section:before{display:none !important}
  .insights-title{font-size:clamp(32px,6vw,40px) !important;line-height:1.3 !important;margin-bottom:20px !important}
  .insights-description{font-size:16px !important;line-height:1.6 !important;padding:0 24px;margin-bottom:40px !important}
  .insights-grid{max-width:100% !important;padding:0 24px;gap:20px !important}
  .insight-item{flex-direction:row !important;align-items:center !important;gap:16px !important;padding:16px 0 !important}
  .insight-icon{width:44px !important;height:44px !important}
  .insight-icon img{width:22px !important;height:22px !important}
  .insight-text{font-size:15px !important;line-height:1.6 !important}

  /* Latest Projects section tablet */
  .latest-projects-section{margin-top:80px !important;padding:60px 0 !important}
  .latest-projects-title{font-size:clamp(32px,6vw,40px) !important;line-height:1.3 !important;margin-bottom:40px !important}
  .latest-projects-grid{grid-template-columns:repeat(2,1fr) !important;gap:20px !important;max-width:100% !important;padding:0 24px !important;margin-bottom:40px !important}
  .latest-project-card{border-radius:12px !important}
  .project-image{aspect-ratio:4/3 !important}
  .project-content{padding:20px !important;gap:10px !important}
  .project-category{font-size:11px !important;padding:5px 10px !important}
  .project-title{font-size:20px !important;line-height:1.3 !important}
  .project-description{font-size:15px !important;line-height:1.5 !important}
  .project-link{font-size:15px !important}
  .view-all-projects{margin-top:20px !important}
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  /* Intro section mobile */
  .wd-intro{padding:24px 0 12px;margin-top:60px}
  .wd-intro .intro-text{width:100%;max-width:680px;height:auto;font-size:15px;line-height:1.7;padding:0 18px;text-align:left}

  /* What Is Web Design section mobile */
  .webdev-what-section {
    padding: 40px 0 !important;
  }

  .webdev-what-section .container-narrow {
    padding: 0 18px !important;
  }

  .webdev-what-section .webdev-section-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    line-height: 1.2 !important;
    margin-bottom: 32px !important;
  }

  .webdev-what-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .webdev-what-text {
    text-align: left !important;
  }

  .webdev-what-text p {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  .webdev-what-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .webdev-what-cards .webdev-info-card {
    padding: 16px !important;
    gap: 12px !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .webdev-what-cards .webdev-card-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .webdev-what-cards .webdev-card-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .webdev-what-cards .webdev-card-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }

  .webdev-what-cards .webdev-card-desc {
    font-size: 13px !important;
    line-height: 18px !important;
  }

  /* Why Choose section mobile */
  .why-choose .projects-title{font-size:clamp(24px,7vw,32px) !important;line-height:1.2 !important;margin-bottom:16px !important;padding:0 18px}
  .why-choose .why-sub{font-size:14px !important;line-height:1.65 !important;padding:0 18px !important;margin-bottom:20px}
  .stats-row{gap:12px !important;margin:16px 0 20px !important;flex-wrap:nowrap !important;justify-content:center !important;padding:0 18px;align-items:stretch !important}
  .stat{flex:1 1 0 !important;min-width:0;display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:flex-start !important;text-align:center !important}
  .stat .num{font-size:24px !important;text-align:center !important;width:100% !important}
  .stat .label{font-size:12px !important;text-align:center !important;width:100% !important}
  .stat .label:after{width:60px !important;margin-left:auto !important;margin-right:auto !important}
  .why-copy{max-width:100% !important;padding:0 18px !important}
  .why-copy p{font-size:15px !important;line-height:1.7 !important}
  .why-copy strong{font-size:15px !important;line-height:1.7 !important}
  .why-highlight{font-size:16px !important;line-height:1.5 !important;margin-top:12px !important}
  .why-cards{grid-template-columns:1fr !important;gap:12px !important;margin-top:20px}
  .why-card{padding:16px !important}
  .why-card .icon{width:32px !important;height:32px !important;margin-bottom:8px !important}
  .why-card .icon img{width:18px !important;height:18px !important}
  .why-card .title{font-size:16px !important;margin:0 0 6px 0 !important}
  .why-card .text{font-size:14px !important;line-height:1.5 !important}

  /* Process section mobile */
  .process-section .projects-title{font-size:clamp(24px,7vw,32px) !important;line-height:1.2 !important;margin-bottom:16px !important;padding:0 18px}
  .process-intro{font-size:14px !important;line-height:1.65 !important;padding:0 18px !important;margin-bottom:24px}
  .process-timeline{padding-left:0 !important}
  .process-step{flex-direction:column !important;align-items:flex-start !important;gap:12px !important;margin-bottom:24px !important}
  .step-number{display:none !important}
  .step-number:after{display:none !important}
  .step-card{padding:16px !important;gap:12px !important;width:100%}
  .step-icon{width:40px !important;height:40px !important}
  .step-icon img{width:20px !important;height:20px !important}
  .step-content{gap:8px !important}
  .step-title{font-size:16px !important;line-height:1.3 !important}
  .step-desc{font-size:14px !important;line-height:1.6 !important}

  /* CTA Banner Section mobile */
  .webdesign-cta-banner {
    padding: 40px 0 !important;
  }

  .webdesign-cta-banner .container {
    padding: 0 18px !important;
  }
  
  .webdesign-cta-banner-content {
    padding: 40px 24px !important;
    gap: 12px !important;
    border-radius: 16px !important;
  }

  .webdesign-cta-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .webdesign-cta-subtitle {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  /* Insights Section mobile */
  .webdesign-insights-section {
    padding: 40px 0 !important;
  }

  .webdesign-insights-section .container {
    padding: 0 18px !important;
  }

  .webdesign-insights-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    margin-bottom: 20px !important;
  }

  .webdesign-insights-subtitle {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }

  .webdesign-insights-list {
    gap: 16px !important;
  }

  .webdesign-insight-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
    gap: 12px !important;
  }

  .webdesign-insight-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .webdesign-insight-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .webdesign-insight-text {
    font-size: 15px !important;
  }

  /* Projects Section mobile */
  .webdesign-projects-section,
  .project-next-projects-section {
    padding: 40px 0 !important;
  }

  .webdesign-projects-section .container,
  .project-next-projects-section .container {
    padding: 0 18px !important;
  }

  .webdesign-projects-title,
  .project-next-projects-section .webdesign-projects-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    margin-bottom: 32px !important;
  }

  .webdesign-projects-grid,
  .project-next-projects-section .webdesign-projects-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .project-next-projects-back {
    margin-top: 32px !important;
  }

  .webdesign-project-image {
    flex: 0 0 200px !important;
    height: 200px !important;
  }

  .webdesign-project-content {
    padding: 12px 14px !important;
  }

  .webdesign-project-title {
    font-size: 18px !important;
  }
  
  .webdesign-project-desc {
    font-size: 12px !important;
  }
  
  .webdesign-project-mini-circle {
    width: 36px !important;
    height: 36px !important;
  }
  
  .webdesign-project-mini-circle img {
    width: 14px !important;
    height: 14px !important;
  }
  
  .webdesign-project-tag {
    margin-bottom: 6px !important;
  }
  
  .webdesign-project-tag-text {
    font-size: 11px !important;
    padding: 6px 10px !important;
    height: auto !important;
  }

  .webdesign-project-link {
    font-size: 14px !important;
  }


  /* Testimonials Section mobile */
  .webdesign-testimonials-section {
    padding: 40px 0 !important;
  }

  .webdesign-testimonials-section .container {
    padding: 0 18px !important;
  }

  .webdesign-testimonials-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    margin-bottom: 20px !important;
  }

  .webdesign-testimonials-subtitle {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }

  .webdesign-testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .webdesign-testimonial-card {
    padding: 20px !important;
    gap: 16px !important;
  }

  .webdesign-testimonial-quote {
    width: 32px !important;
    height: 32px !important;
  }

  .webdesign-testimonial-quote img {
    width: 24px !important;
    height: 24px !important;
  }

  .webdesign-testimonial-text {
    font-size: 14px !important;
  }

  .webdesign-testimonial-name {
    font-size: 16px !important;
  }

  .webdesign-testimonial-role {
    font-size: 12px !important;
  }

  /* Benefits Section mobile */
  .webdesign-benefits-section {
    padding: 40px 0 !important;
  }

  .webdesign-benefits-section .container {
    padding: 0 18px !important;
  }

  .webdesign-benefits-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    margin-bottom: 20px !important;
  }

  .webdesign-benefits-subtitle {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }

  .webdesign-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .webdesign-benefit-card {
    padding: 20px !important;
    gap: 16px !important;
  }

  .webdesign-benefit-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .webdesign-benefit-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .webdesign-benefit-title {
    font-size: 18px !important;
  }

  .webdesign-benefit-desc {
    font-size: 14px !important;
  }

  /* Services/Process Section mobile */
  .webdesign-services-section {
    padding: 40px 0 !important;
  }

  .webdesign-services-title {
    font-size: clamp(28px, 7vw, 36px) !important;
    padding: 0 18px !important;
    margin-bottom: 20px !important;
  }

  .webdesign-services-subtitle {
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding: 0 18px !important;
    margin-bottom: 32px !important;
  }

  .webdesign-process {
    padding: 0 18px !important;
    gap: 20px !important;
  }

  .webdesign-process-card {
    flex-direction: column !important;
    padding: 20px !important;
    gap: 16px !important;
  }

  .webdesign-process-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .webdesign-process-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .webdesign-process-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .webdesign-process-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* Testimonials section mobile */
  .testimonials-section{margin-top:60px !important}
  .testimonials-banner{padding:40px 20px !important;margin-bottom:32px !important;gap:12px !important;border-radius:16px !important}
  .testimonials-banner-title{font-size:clamp(24px,6vw,28px) !important;line-height:1.3 !important}
  .testimonials-banner-subtitle{font-size:14px !important}
  .testimonials-intro{max-width:100% !important;padding:0 18px !important;margin-bottom:32px !important}
  .testimonials-title{font-size:clamp(24px,7vw,32px) !important;line-height:1.3 !important;margin-bottom:12px !important}
  .testimonials-description{font-size:14px !important;line-height:1.6 !important}
  .testimonials-grid{grid-template-columns:1fr !important;gap:16px !important}
  .testimonial-card{width:100% !important;max-width:none !important;padding:20px !important;gap:16px !important}
  .testimonial-quote{width:32px !important;height:32px !important}
  .testimonial-text{font-size:14px !important;line-height:1.5 !important}
  .testimonial-rating{gap:3px !important}
  .testimonial-rating img{width:16px !important;height:16px !important}
  .testimonial-separator{width:100% !important;max-width:240px !important;height:1px !important}
  .testimonial-author{font-size:14px !important}
  .testimonial-position{font-size:12px !important}

  /* Why Professional section mobile */
  .why-professional-section{background:transparent !important;padding:40px 0 !important;margin-top:60px !important}
  .why-professional-section:before{display:none !important}
  .why-professional-title{font-size:clamp(24px,7vw,32px) !important;line-height:1.3 !important;margin-bottom:16px !important;padding:0 18px}
  .why-professional-description{font-size:14px !important;line-height:1.65 !important;padding:0 18px !important;margin-bottom:32px !important}
  .why-professional-grid{grid-template-columns:1fr !important;gap:16px !important;max-width:100% !important;padding:0 18px}
  .why-professional-card{padding:20px !important;gap:12px !important}
  .why-professional-icon{width:40px !important;height:40px !important;margin-bottom:12px !important}
  .why-professional-icon img{width:24px !important;height:24px !important}
  .why-professional-card-title{font-size:16px !important;margin:0 0 10px !important}
  .why-professional-card-text{font-size:14px !important;line-height:1.5 !important}

  /* Insights section mobile */
  .insights-section{margin-top:60px !important;padding:40px 0 !important}
  .insights-section:before{display:none !important}
  .insights-title{font-size:clamp(24px,7vw,32px) !important;line-height:1.3 !important;margin-bottom:16px !important;padding:0 18px}
  .insights-description{font-size:14px !important;line-height:1.65 !important;padding:0 18px !important;margin-bottom:32px !important}
  .insights-grid{max-width:100% !important;padding:0 18px;gap:16px !important}
  .insight-item{flex-direction:row !important;align-items:center !important;gap:12px !important;padding:12px 0 !important;flex-wrap:wrap !important}
  .insight-icon{width:36px !important;height:36px !important;flex-shrink:0 !important}
  .insight-icon img{width:18px !important;height:18px !important}
  .insight-text{font-size:14px !important;line-height:1.6 !important;flex:1 1 0 !important;min-width:200px !important}

  /* Latest Projects section mobile */
  .latest-projects-section{margin-top:60px !important;padding:40px 0 !important}
  .latest-projects-title{font-size:clamp(24px,7vw,32px) !important;line-height:1.3 !important;margin-bottom:32px !important;padding:0 18px}
  .latest-projects-grid{grid-template-columns:1fr !important;gap:20px !important;max-width:100% !important;padding:0 18px !important;margin-bottom:32px !important}
  .latest-project-card{border-radius:12px !important}
  .project-image{aspect-ratio:4/3 !important}
  .project-content{padding:20px !important;gap:12px !important}
  .project-category{font-size:11px !important;padding:5px 10px !important}
  .project-title{font-size:18px !important;line-height:1.3 !important}
  .project-description{font-size:14px !important;line-height:1.5 !important}
  .project-link{font-size:14px !important}
  .view-all-projects{margin-top:16px !important}
}

