/* ============================================
   HOMEPAGE-SPECIFIC STYLES
   Extracted from inline <style> blocks in index.html
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-dark: #0A0A18;
  --bg-card: rgba(21, 21, 49, 0.6);
  --blue: #60a5fa;
  --blue-dark: #3b82f6;
  --purple: #9f7aea;
  --purple-dark: #7c3aed;
  --text-primary: #fff;
  --text-body: #cbd5e1;
  --text-muted: #a0aec0;
  --border-subtle: rgba(255, 255, 255, 0.06);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  background-color: var(--bg-dark);
  color: white;
  padding: 8rem 2rem 5rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 800px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .hero-subtitle-inline {
  display: block;
  font-size: 0.45em;
  opacity: 0.7;
  margin-top: 0.4em;
  background: none;
  -webkit-text-fill-color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Hero Buttons ---- */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-buttons .cta-button {
  min-width: 200px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }
  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
  }
  .hero-buttons .cta-button {
    width: 100%;
  }
}

/* ---- Service Cards ---- */
.service-animated-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(3, 218, 242, 0.06) 0%, transparent 70%);
  opacity: 0.5;
}
.service-card {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(96, 165, 250, 0.08);
}
.service-learn-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}
.service-learn-more:hover {
  color: #d6bcfa;
}

/* ---- Deadly Dozen Showcase ---- */
.dd-showcase {
  margin-top: 4rem;
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(66, 133, 244, 0.1);
}
.dd-showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}
.dd-showcase-header h4 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.dd-showcase-header p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 1.5rem;
}
.dd-tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.dd-tech-tags span {
  background: rgba(96, 165, 250, 0.1);
  color: var(--blue);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.dd-case-study-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dd-case-study-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* ---- Gallery ---- */
.dd-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.dd-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.15);
  background: var(--bg-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dd-gallery-item:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
}
.dd-gallery-item.dd-gallery-main {
  grid-column: 1 / -1;
}
.dd-gallery-item img,
.dd-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dd-gallery-main img {
  max-height: 500px;
}
.dd-gallery-item:not(.dd-gallery-main) img,
.dd-gallery-item:not(.dd-gallery-main) video {
  height: 220px;
}
.dd-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 500;
}
.dd-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.9);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}
.dd-play-btn:hover {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.1);
}
.dd-gallery-video.playing .dd-play-btn {
  opacity: 0;
}
.dd-gallery-video.playing:hover .dd-play-btn {
  opacity: 1;
}

/* ---- Lightbox ---- */
.dd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dd-lightbox.active {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.dd-lightbox-content {
  transform: scale(0.6) translateY(30px);
  opacity: 0;
  filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}
.dd-lightbox.active .dd-lightbox-content {
  transform: scale(1) translateY(0);
  opacity: 1;
  filter: blur(0px);
}
.dd-lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(96, 165, 250, 0.15), 0 0 0 1px rgba(96, 165, 250, 0.1);
  display: block;
}
.dd-lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(96, 165, 250, 0.15), 0 0 0 1px rgba(96, 165, 250, 0.1);
  display: block;
  background: #000;
}
.dd-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s 0.15s, transform 0.3s 0.15s, background 0.2s;
  z-index: 10001;
  backdrop-filter: blur(10px);
}
.dd-lightbox.active .dd-lightbox-close {
  opacity: 0.8;
  transform: translateY(0);
}
.dd-lightbox-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}
.dd-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s 0.15s, transform 0.3s 0.15s, background 0.2s;
  z-index: 10001;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dd-lightbox.active .dd-lightbox-nav {
  opacity: 0.7;
}
.dd-lightbox-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}
.dd-lightbox-prev { left: 1.5rem; }
.dd-lightbox-next { right: 1.5rem; }
.dd-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.dd-lightbox.active .dd-lightbox-counter {
  opacity: 1;
}

/* ---- Other Client Work ---- */
.other-clients-section {
  margin: 4rem auto 0;
  max-width: 900px;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(96, 165, 250, 0.08);
}
.other-clients-title {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1.2rem 0;
  text-align: center;
}
.other-clients-carousel {
  display: flex;
  gap: 1rem;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.other-clients-carousel::-webkit-scrollbar { display: none; }
.other-client-card {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(159, 122, 234, 0.3);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}
.other-client-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.1);
}
.other-client-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #181a2a;
}
.other-client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.other-client-card:hover .other-client-img img {
  transform: scale(1.05);
}
.other-client-info {
  padding: 0.8rem;
}
.other-client-info h5 {
  margin: 0 0 0.3rem;
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}
.other-client-info p {
  color: #64748b;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

/* ---- Pricing Section (homepage) ---- */
.pricing-section {
  background-color: var(--bg-dark);
  padding: 6rem 2rem;
}
.pricing-section .pricing-grid {
  align-items: stretch !important;
}
.pricing-section .pricing-card {
  height: 100%;
}
.pricing-subtitle {
  text-align: center;
  color: var(--blue);
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}
.pricing-card {
  background-color: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(66, 133, 244, 0.2);
}
.pricing-card.popular {
  background-color: rgba(20, 20, 45, 0.9);
  border-color: rgba(66, 133, 244, 0.3);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.2);
  transform: scale(1.05);
  z-index: 1;
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-4px);
}
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 8px 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(103, 58, 183, 0.3);
}
.pricing-header {
  padding: 3rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(66, 133, 244, 0.2);
  position: relative;
  overflow: hidden;
  background: rgba(10, 10, 25, 0.5);
}
.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #fff;
  position: relative;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
  position: relative;
}
.features {
  list-style: none;
  padding: 2rem;
  margin: 0;
  flex-grow: 1;
}
.pricing-card.popular .features {
  background-color: rgba(20, 20, 45, 0.9);
}
.features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  color: #94a3b8;
  text-align: left;
  position: relative;
}
.features li i {
  color: var(--blue);
  margin-right: 0.75rem;
  font-size: 0.85em;
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.pricing-card .btn.primary-button {
  display: block;
  padding: 1rem;
  background-color: rgba(66, 133, 244, 0.2);
  color: var(--blue);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin: 0 2rem 2rem;
  cursor: pointer;
}
.pricing-card .btn.primary-button:hover {
  background-color: rgba(66, 133, 244, 0.3);
  transform: translateY(-2px);
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: flex;
  justify-content: center;
}
.testimonial-item {
  text-align: center;
  max-width: 700px;
}

/* ---- Thank You Message ---- */
#thank-you-message {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 12px;
  background-color: rgba(46, 125, 50, 0.2);
  border: 2px solid #4caf50;
  text-align: center;
}
.thank-you-heading {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
#thank-you-message p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ---- Mobile Quick Nav ---- */
.mobile-quicknav {
  display: none;
  background-color: var(--bg-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  padding: 6px 0;
  position: sticky;
  top: 60px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-direction: column;
}
.mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-logo .logo-text {
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-right: 3px;
  display: flex;
  flex-direction: row;
}
.mobile-logo .logo-icon {
  font-size: 14px;
}
.quicknav-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.contact-item {
  position: relative;
}
.contact-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--blue);
  border-radius: 1px;
  opacity: 0.7;
}
.quicknav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px;
  transition: all 0.2s ease;
  width: 33.33%;
  max-width: 100px;
  position: relative;
}
.quicknav-item:active {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.quicknav-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quicknav-text {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
.quicknav-item,
.quicknav-item:hover,
.quicknav-item:focus,
.quicknav-item:active {
  text-decoration: none;
  border-bottom: none;
  outline: none;
}
.mobile-quicknav .quicknav-item.active {
  color: var(--blue) !important;
  background-color: rgba(96, 165, 250, 0.08) !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.mobile-quicknav .quicknav-item.active .quicknav-icon {
  transform: scale(1.1) !important;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.7) !important;
}
.mobile-quicknav .quicknav-item.active .quicknav-text {
  font-weight: 600 !important;
}
.mobile-quicknav .quicknav-item.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 15px !important;
  height: 2px !important;
  background-color: var(--blue) !important;
  border-radius: 1px !important;
  box-shadow: 0 0 5px rgba(96, 165, 250, 0.5) !important;
}
.mobile-quicknav .quicknav-item:not(.active)::after {
  display: none !important;
}

/* ---- Hero Stats ---- */
.hero-stats-context {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  margin-bottom: -0.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}
.hero-stats-context a {
  color: #d6bcfa;
  text-decoration: none;
}
.hero-stats-context a:hover {
  color: #fff;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-stat {
  text-align: center;
  flex: 1;
  max-width: 200px;
}
.hero-stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 0.15rem;
}
@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }
  .hero-stat-number {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stats {
    animation: none;
    opacity: 1;
  }
}

/* ---- Social Proof Placeholder ---- */
.testimonial-placeholder {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
}
.testimonial-placeholder-card {
  border: 2px dashed rgba(159, 122, 234, 0.3);
  border-radius: 12px;
  padding: 2rem;
  background: rgba(21, 21, 49, 0.3);
}
.testimonial-placeholder-card p {
  color: #64748b;
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.testimonial-placeholder-card a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.testimonial-placeholder-card a:hover {
  color: #d6bcfa;
}

/* ---- How We Work Section ---- */
.hww-section {
  padding: 6rem 2rem;
  background-color: var(--bg-dark);
  text-align: center;
}
.hww-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.hww-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.hww-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hww-step h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.hww-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .hww-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hww-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Tawk.to Widget ---- */
.tawk-min-container {
  height: 60px !important;
  width: 60px !important;
  bottom: 20px !important;
  right: 20px !important;
}

/* ---- Overflow Fix ---- */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
  .mobile-quicknav {
    display: flex;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .pricing-card.popular {
    transform: scale(1) !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .dd-showcase { padding: 2rem 1rem; margin-top: 3rem; }
  .dd-showcase-header h4 { font-size: 1.4rem; }
  .dd-gallery { grid-template-columns: 1fr; }
  .dd-gallery-main img { max-height: 300px; }
  .dd-gallery-item:not(.dd-gallery-main) img,
  .dd-gallery-item:not(.dd-gallery-main) video { height: 200px; }
  .dd-lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .dd-lightbox-prev { left: 0.75rem; }
  .dd-lightbox-next { right: 0.75rem; }
  .other-clients-carousel { flex-direction: column; align-items: center; }
  .other-client-card { flex: 0 0 auto; width: 100%; max-width: 320px; }
  .other-client-img { height: 140px; }
  .tawk-min-container {
    height: 50px !important;
    width: 50px !important;
    bottom: 15px !important;
    right: 15px !important;
  }
  #tawk-bubble-container {
    width: auto !important;
    height: auto !important;
    right: 5px !important;
    bottom: 5px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
}
