/* ===============================================
   SECTION 5 — HOW IT WORKS (DEPRECATED — see how-it-works-v2.css)
   =============================================== */

/*
.how-it-works-section {
  background: linear-gradient(120deg, #fafdff 0%, #f3f7fa 100%);
  padding: 96px 0 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 340px;
  background: radial-gradient(ellipse at center, #eaf3fe 0%, rgba(47,128,237,0.07) 100%);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 48px;
}

.how-it-works-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-family: 'Inter', 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
}

.how-it-works-subtitle {
  font-size: 1.25rem;
  color: #6B7280;
  margin: 0 auto;
  max-width: 480px;
  font-weight: 400;
}

.how-it-works-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 48px;
  width: 100%;
}

.how-it-works-card {
  background: linear-gradient(120deg, #fff 80%, #eaf3fe 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(47,128,237,0.10), 0 2px 8px rgba(17,24,39,0.08);
  border: 1.5px solid #eaf3fe;
  padding: 40px 32px 32px 32px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.how-it-works-card:hover {
  box-shadow: 0 16px 48px rgba(47,128,237,0.13), 0 4px 16px rgba(17,24,39,0.10);
  border-color: #bfe0fd;
  background: linear-gradient(120deg, #fafdff 60%, #eaf3fe 100%);
  transform: translateY(-2px) scale(1.015);
}

.how-it-works-illustration {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.how-it-works-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.how-it-works-card-text {
  font-size: 1rem;
  color: #6B7280;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.how-it-works-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
.how-it-works-illustration svg {
  filter: drop-shadow(0 2px 12px rgba(47,128,237,0.08));
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}

.how-it-works-card:hover .how-it-works-illustration svg {
  transform: scale(1.06) translateY(-2px);
}

.how-it-works-cta {
  display: inline-block;
  background: linear-gradient(90deg, #2F80ED 80%, #2563c9 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 18px 48px;
  box-shadow: 0 4px 24px rgba(47,128,237,0.16);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-bottom: 14px;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.how-it-works-cta:hover, .how-it-works-cta:focus {
  background: linear-gradient(90deg, #2563c9 60%, #2F80ED 100%);
  box-shadow: 0 8px 32px rgba(47,128,237,0.22);
  transform: translateY(-2px) scale(1.05);
}

/* Animation Keyframes */
@keyframes fadein {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}

@keyframes floatin {
  from { opacity: 0; transform: translateY(48px) scale(0.98); }
  60% { opacity: 1; transform: translateY(-8px) scale(1.03); }
  to { opacity: 1; transform: none; }
}

.animate-fadein {
  animation: fadein 1.1s cubic-bezier(.22,1,.36,1) both;
}

.animate-floatin {
  animation: floatin 1.2s cubic-bezier(.22,1,.36,1) both;
} box-shadow: 0 4px 24px rgba(47,128,237,0.16);
  transform: translateY(-1px) scale(1.03);
}

.how-it-works-reassurance {
  color: #6B7280;
  font-size: 1rem;
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .how-it-works-cards {
    gap: 20px;
  }
  .how-it-works-card {
    padding: 32px 18px 24px 18px;
    max-width: 300px;
  }
}

@media (max-width: 800px) {
  .how-it-works-section {
    padding: 64px 0 56px 0;
  }
  .how-it-works-cards {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .how-it-works-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 500px) {
  .how-it-works-title {
    font-size: 1.45rem;
  }
  .how-it-works-section {
    padding: 40px 0 32px 0;
  }
  .how-it-works-card {
    padding: 20px 8px 16px 8px;
    border-radius: 18px;
  }
  .how-it-works-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }
}
*/

/* ===============================================
   URBANCE HOMEPAGE V2 - Premium Conversion Landing
   Calm, minimal, trust-first with image placeholders
   =============================================== */

/* ===============================================
   REUSABLE COMPONENTS
   =============================================== */

/* Section Badge (Pill) */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(47, 128, 237, 0.08);
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2F80ED;
  margin-bottom: 16px;
}

/* Card Component */
.card {
  background: #FFFFFF;
  border: 1px solid #F5F7FA;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: #E5E7EB;
}

/* Image Placeholder */
.image-placeholder {
  position: relative;
  background: #F5F7FA;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.875rem;
  font-weight: 500;
}

.image-placeholder::after {
  content: 'Image Placeholder';
  position: absolute;
  opacity: 0.5;
}

/* Aspect Ratios */
.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-1-1 {
  aspect-ratio: 1 / 1;
}

.aspect-3-4 {
  aspect-ratio: 3 / 4;
}

/* ===============================================
   GLOBAL SECTION STYLES
   =============================================== */

.section-v2 {
  padding: 100px 0;
  position: relative;
}

.section-v2.bg-white {
  background: #FFFFFF;
}

.section-v2.bg-light {
  background: #F5F7FA;
}

.section-v2.bg-blue-tint {
  background: #EAF2FF;
}

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

.section-header-v2 {
  text-align: center;
  margin-bottom: 56px;
}

.section-title-v2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle-v2 {
  font-size: 1.125rem;
  color: #6B7280;
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===============================================
   SECTION 1 — TRUST STRIP
   =============================================== */

.trust-strip-v2 {
  padding: 48px 0;
  background: #FFFFFF;
  border-bottom: 1px solid #F5F7FA;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 16px;
  background: #FAFBFC;
  border: 1px solid #F5F7FA;
  border-radius: 16px;
}

.trust-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 128, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.trust-item-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
}

/* ===============================================
   SECTION 2 — POPULAR SERVICES (3 FLOATING CARDS WITH IMAGE PLACEHOLDERS)
   =============================================== */

.section-services {
  padding: 120px 0;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 10;
}

.section-services .section-header-v2 {
  margin-bottom: 50px;
}

.section-services .section-header-v2 h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin: 16px 0 12px;
}

.section-services .section-header-v2 p {
  font-size: 18px;
  color: #6B7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid #F5F7FA;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.10), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: all 0.26s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(17, 17, 17, 0.14), inset 0 1px 0 rgba(255,255,255,0.7);
}

.service-card-media {
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, #F8FAFC, #EEF2FF);
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(47, 128, 237, 0.12), transparent 50%);
  opacity: 0.9;
}

.service-card-emoji {
  font-size: 48px;
  position: relative;
  z-index: 1;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 8px;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EAF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}

.service-card p {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.card-link {
  color: #2F80ED;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.card-link:hover {
  color: #1E5FBE;
  transform: translateX(2px);
}

/* ===============================================
   FEATURED SERVICES — INTERACTIVE 3D CAROUSEL
   =============================================== */

.featured-services {
  background: #FFFFFF;
  padding: 140px 0;
  overflow: visible;
}

/* ========== FINAL SERVICES SECTION ========== */

/* ===========================================
   SERVICES SECTION — Image Card Grid
   =========================================== */

.svc-section {
  background: #F8FAFC;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.svc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(47, 128, 237, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.svc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========== HEADER ========== */

.svc-header {
  text-align: center;
  margin-bottom: 56px;
}

.svc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.svc-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 850;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.svc-subtitle {
  font-size: 18px;
  color: #6B7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== GRID ========== */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  margin-bottom: 40px;
}

/* Wide cards span 2 cols */
.svc-card--wide {
  grid-column: span 2;
}

/* ========== CARD ========== */

.svc-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* Image area */
.svc-card__img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #E5E7EB;
  flex-shrink: 0;
}

.svc-card--wide .svc-card__img {
  height: 240px;
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover .svc-card__img img {
  transform: scale(1.06);
}

.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(10, 15, 28, 0.45) 100%
  );
  transition: opacity 0.35s ease;
}

.svc-card:hover .svc-card__overlay {
  opacity: 0.7;
}

/* Body area */
.svc-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.svc-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #2F80ED;
  background: rgba(47, 128, 237, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-bottom: 2px;
}

.svc-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.svc-card--wide .svc-card__body h3 {
  font-size: 22px;
}

.svc-card__body p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2F80ED;
  margin-top: 8px;
  transition: gap 0.25s ease;
}

.svc-card:hover .svc-card__cta {
  gap: 10px;
}

.svc-card__cta svg {
  flex-shrink: 0;
}

/* ========== FOOTER CTA ========== */

.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 18px;
  padding: 24px 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.svc-footer p {
  font-size: 16px;
  color: #374151;
  margin: 0;
  font-weight: 500;
}

.svc-footer p strong {
  color: #111827;
  font-weight: 700;
}

.svc-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2F80ED;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px rgba(47, 128, 237, 0.25);
  flex-shrink: 0;
}

.svc-footer__btn:hover {
  background: #1D6FD3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.35);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .svc-section {
    padding: 64px 0 56px;
  }

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

  .svc-title {
    font-size: 34px;
  }

  .svc-subtitle {
    font-size: 16px;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .svc-card--wide {
    grid-column: span 2;
  }

  .svc-card__img,
  .svc-card--wide .svc-card__img {
    height: 180px;
  }

  .svc-card__body {
    padding: 18px 18px 20px;
  }

  .svc-card__body h3 {
    font-size: 17px;
  }

  .svc-footer {
    flex-direction: column;
    text-align: center;
    padding: 22px 24px;
  }
}

@media (max-width: 520px) {
  .svc-section {
    padding: 48px 0 40px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc-card--wide {
    grid-column: span 1;
  }

  .svc-card__img,
  .svc-card--wide .svc-card__img {
    height: 200px;
  }

  .svc-header {
    margin-bottom: 32px;
  }

  .svc-title {
    font-size: 30px;
  }
}

/* Old services section - keep for reference but hide */
.popular-services { display: none; }

.services-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: start;
}

.services-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin: 12px 0 16px;
}

.services-intro p {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0 0 28px;
}

.services-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.services-metrics div {
  padding: 16px;
  background: #F8FAFC;
  border-radius: 16px;
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.metric-label {
  font-size: 13px;
  color: #6B7280;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 14px;
  background: #2F80ED;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(47, 128, 237, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(47, 128, 237, 0.35);
}

.services-grid-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-tile {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #F1F5F9;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.12);
}

.service-tile-image {
  border-radius: 18px;
  overflow: hidden;
  height: 180px;
  background: #F5F7FA;
  margin-bottom: 16px;
}

.service-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-tile-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #111111;
}

.service-tile-body p {
  margin: 0 0 12px;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
}

.service-tile-body span {
  color: #2F80ED;
  font-weight: 600;
  font-size: 14px;
}

.featured-services .section-header-v2 {
  margin-bottom: 70px;
}

.carousel {
  position: relative;
  perspective: none;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.carousel-ring {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 12px 20px;
  scroll-snap-type: x mandatory;
  transform: none;
  animation: none;
  transform-style: flat;
}

.carousel-card {
  position: relative;
  top: auto;
  left: auto;
  width: 320px;
  height: 400px;
  transform: none;
  margin-left: 0;
  min-width: 320px;
  scroll-snap-align: center;
  background: #FFFFFF;
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.12);
  filter: drop-shadow(0 0 30px rgba(47, 128, 237, 0.15));
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.carousel:hover .carousel-card {
  filter: drop-shadow(0 0 24px rgba(47, 128, 237, 0.1)) brightness(0.98);
}

.carousel:hover .carousel-card:not(:hover) {
  filter: drop-shadow(0 0 18px rgba(47, 128, 237, 0.08)) brightness(0.95);
}

.carousel-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 50px 120px rgba(17, 17, 17, 0.25);
  filter: drop-shadow(0 0 30px rgba(47, 128, 237, 0.15));
  z-index: 5;
}

.carousel-card-image {
  width: 100%;
  height: 210px;
  background: #F5F7FA;
  border-radius: 20px;
  overflow: hidden;
}

.carousel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-card-body {
  padding: 10px 6px 4px;
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.carousel-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.carousel-card-body p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
}

.carousel-card-link {
  color: #2F80ED;
  font-weight: 600;
  font-size: 14px;
}

@keyframes carousel-rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* ============================
   $20M Carousel Enhancements
   Glow + Blur + Tilt + Motion
   ============================ */

.services-carousel {
  position: relative;
  perspective: none;
  transform-style: flat;
}

.services-ring {
  position: relative;
  transform-style: flat;
  will-change: transform;
}

.services-carousel .service-card {
  position: relative;
  left: auto;
  top: auto;
  transform-style: flat;
  transform-origin: center;
  translate: 0 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 20px 40px rgba(17, 17, 17, 0.08),
    0 60px 100px rgba(17, 17, 17, 0.08);
  transition:
    filter 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
  will-change: transform, filter, opacity;
  overflow: hidden;
}

.services-carousel .service-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
  background:
    radial-gradient(circle at 30% 20%,
      rgba(47, 128, 237, 0.22),
      rgba(47, 128, 237, 0.10) 30%,
      rgba(47, 128, 237, 0.00) 60%);
  filter: blur(10px);
}

.services-carousel .service-card.is-front {
  opacity: 1;
  filter: none;
  box-shadow:
    0 40px 80px rgba(17, 17, 17, 0.15),
    0 80px 140px rgba(17, 17, 17, 0.15);
}

.services-carousel .service-card.is-front::before {
  opacity: 1;
}

.services-carousel .service-card.is-back {
  opacity: 1;
  filter: none;
}

.services-carousel .service-card.is-far {
  opacity: 1;
  filter: none;
}

.services-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .services-carousel .service-card,
  .services-ring,
  .services-tilt {
    transition: none !important;
    animation: none !important;
  }
}

.cta-buttons {
  display: flex;
  gap: 16px;
.btn-v2.secondary:hover {
  border-color: #2F80ED;
  color: #2F80ED;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card-subtitle {
  font-weight: 500;
  color: #6B7280;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.btn-v2.primary {
  background: #2F80ED;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.25);
}

.btn-v2.primary:hover {
  background: #1e5ab8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47, 128, 237, 0.35);
}

.btn-v2.secondary {
  background: #FFFFFF;
  color: #374151;
  border: 2px solid #E5E7EB;
}

.btn-v2.secondary:hover {
  border-color: #2F80ED;
  color: #2F80ED;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
  font-weight: 500;
  color: #6B7280;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.pricing-card-features li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card-features li::before {
  content: '✓';
  color: #2F80ED;
  font-weight: 700;
  font-size: 1.125rem;
}

/* ===============================================
   SECTION 3 — WHY URBANCE PROOF
   =============================================== */

/* ===============================================
   SECTION 6 — TRUST & QUALITY (BEAUTIFUL)
   =============================================== */

.trust-beauty-section {
  position: relative;
  padding: 60px 0 50px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Magic */
.trust-beauty-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.trust-beauty-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #ffffff 100%);
}

.trust-beauty-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float-orb 8s ease-in-out infinite;
}

.trust-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.08) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.trust-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -3s;
}

.trust-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(-30px, -30px) scale(1.02); }
}

.trust-beauty-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(47, 128, 237, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 128, 237, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

/* Content */
.trust-beauty-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* Header */
.trust-beauty-header {
  margin-bottom: 32px;
}

.trust-beauty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2F80ED;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(47, 128, 237, 0.06);
}

.trust-badge-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.trust-beauty-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin: 0 0 14px 0;
  letter-spacing: -0.03em;
}

.trust-title-accent {
  background: linear-gradient(135deg, #2F80ED 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-beauty-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Stats Row */
.trust-beauty-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trust-stat-glass {
  position: relative;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(47, 128, 237, 0.08);
  border-radius: 20px;
  min-width: 140px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(47, 128, 237, 0.04);
}

.trust-stat-glass:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(47, 128, 237, 0.15);
  box-shadow: 0 12px 40px rgba(47, 128, 237, 0.08);
}

.trust-stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.trust-stat-glass:hover .trust-stat-glow {
  opacity: 1;
}

.trust-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-plus,
.trust-stat-star,
.trust-stat-percent {
  font-size: 1.25rem;
  color: #2F80ED;
  margin-left: 2px;
}

.trust-stat-star { color: #fbbf24; }
.trust-stat-percent { color: #10b981; }

.trust-stat-label {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Feature Cards */
.trust-beauty-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-beauty-card {
  position: relative;
  padding: 32px 24px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(47, 128, 237, 0.08);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(47, 128, 237, 0.04);
}

.trust-beauty-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(47, 128, 237, 0.15);
  box-shadow: 
    0 16px 48px rgba(47, 128, 237, 0.08),
    0 0 0 1px rgba(47, 128, 237, 0.06) inset;
}

.trust-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.03), transparent);
  transition: left 0.6s ease;
}

.trust-beauty-card:hover .trust-card-shine {
  left: 100%;
}

.trust-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(47, 128, 237, 0.04);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 128, 237, 0.08);
}

.trust-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.trust-card-text {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .trust-beauty-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .trust-beauty-title {
    font-size: 2.25rem;
  }
  
  .trust-beauty-stats {
    gap: 14px;
  }
  
  .trust-stat-glass {
    padding: 20px 24px;
    min-width: 120px;
  }
  
  .trust-stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 700px) {
  .trust-beauty-section {
    padding: 48px 0 40px 0;
  }
  
  .trust-beauty-content {
    padding: 0 24px;
  }
  
  .trust-beauty-title {
    font-size: 1.875rem;
  }
  
  .trust-beauty-subtitle {
    font-size: 1rem;
  }
  
  .trust-beauty-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-stat-glass {
    width: 100%;
    max-width: 260px;
  }
  
  .trust-beauty-cards {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   SECTION 4 — FEATURED SERVICE CATEGORIES
   =============================================== */

.featured-services-section {
  padding: 100px 0;
}

.service-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-v2 {
  cursor: pointer;
}

.service-card-v2-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.service-card-v2-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.service-card-v2-promise {
  font-size: 0.9375rem;
  color: #6B7280;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.service-card-v2-cta {
  color: #2F80ED;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card-v2:hover .service-card-v2-cta {
  gap: 10px;
}

/* ===============================================
   SECTION 5 — IMAGE GALLERY
   =============================================== */

.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 16px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* ===============================================
   SECTION 6 — HOW IT WORKS STEPS
   =============================================== */

.steps-section {
  padding: 100px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid #F5F7FA;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2F80ED, #1e5ab8);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.step-content p {
  font-size: 0.9375rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}

.steps-image {
  border-radius: 24px;
}

/* ===============================================
   SECTION 7 — TESTIMONIALS RIBBON (DEPRECATED — see testimonials-v2.css)
   =============================================== */

/* Old styles hidden — replaced by testimonials-v2 */
/*
.testimonials-ribbon {
  background: #EAF2FF;
  padding: 72px 0;
  overflow: hidden;
}

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

.t-head {
  max-width: 640px;
  margin-bottom: 28px;
  text-align: left;
}

.t-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pill {
  display: inline-block;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #2F80ED;
  border: 1px solid rgba(47, 128, 237, 0.18);
}

.t-head h2 {
  margin: 14px 0 10px;
  font-size: 40px;
  line-height: 1.15;
  color: #111111;
}

.t-head p {
  margin: 0;
  color: #6B7280;
  font-size: 16px;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimonials-scroll 40s linear infinite;
}

.marquee:hover .track {
  animation-play-state: paused;
}

.t-card {
  width: 360px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
}

.stars {
  font-size: 13px;
  letter-spacing: 2px;
  color: #F5B301;
  margin-bottom: 10px;
}

.quote {
  margin: 0 0 12px;
  color: #111111;
  font-size: 15px;
  line-height: 1.45;
}

.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
  font-size: 13px;
  flex-wrap: wrap;
}

.name {
  color: #111111;
  font-weight: 600;
}

.verified {
  color: #2F80ED;
  font-size: 12px;
  font-weight: 600;
}

.tag {
  margin-top: 8px;
  font-size: 12px;
  color: #6B7280;
  border: 1px solid rgba(47, 128, 237, 0.2);
  background: #FFFFFF;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .t-head h2 {
    font-size: 32px;
  }

  .t-card {
    width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .track {
    animation: none;
  }
}
*/

/* ===============================================
   SECTION 8 — MEET THE PROS
   =============================================== */

.meet-pros-section {
  padding: 100px 0;
}

.pros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pro-card {
  text-align: center;
}

.pro-card-image {
  border-radius: 20px;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
}

.pro-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px 0;
}

.pro-card-specialty {
  font-size: 0.9375rem;
  color: #6B7280;
  margin: 0 0 12px 0;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
}

.verified-badge::before {
  content: '✓';
}

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

/* ===============================================
   SECTION 9 — FAQ
   =============================================== */


.faq-section {
  padding: 72px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #2F80ED;
}

.faq-icon {
  font-size: 1.1rem;
  color: #2F80ED;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===============================================
   SECTION 10 — BLOG / TIPS
   =============================================== */

.blog-section {
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  cursor: pointer;
}

.blog-card-image {
  border-radius: 20px;
  margin-bottom: 20px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: #6B7280;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.blog-card-cta {
  color: #2F80ED;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-cta {
  gap: 10px;
}

/* ===============================================
   SECTION 11 — FINAL CTA
   =============================================== */

.final-cta-v2 {
  padding: 120px 0;
}

.final-cta-container {
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
}

.final-cta-container h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.final-cta-container .cta-buttons {
  justify-content: center;
  margin-bottom: 24px;
}

.final-cta-trust {
  font-size: 0.9375rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.final-cta-trust span {
  position: relative;
}

.final-cta-trust span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -10px;
  color: #D1D5DB;
}

/* ===============================================
   MOBILE RESPONSIVE
   =============================================== */

@media (max-width: 1024px) {
  .popular-services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .popular-services-track {
    grid-auto-columns: 280px;
  }
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .services-grid-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  /* Section 2: Service Cards - 2 columns on tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .service-card {
    padding: 18px;
  }
  
  .service-card-media {
    height: 150px;
  }
  
  .section-services {
    padding: 100px 0;
  }
  
  .proof-cards,
  .service-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .popular-services-header h2 {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 18px;
  }
  
  .service-card-media {
    height: 170px;
  }
  
  .section-services {
    padding: 80px 0;
  }
  .services-grid-showcase {
    grid-template-columns: 1fr;
  }
  .section-v2 {
    padding: 60px 0;
  }
  
  .section-title-v2 {
    font-size: 2rem;
  }
  
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Section 2: Service Cards - 1 column on mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 18px;
  }
  
  .service-card-media {
    height: 170px;
  }
  
  .section-services {
    padding: 80px 0;
  }
  
  .icon-circle {
    height: 36px;
    font-size: 16px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .proof-cards,
  .service-grid-v2,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .featured-services {
    padding: 90px 0;
  }

  .carousel {
    perspective: none;
    height: auto;
  }

  .carousel-ring {
    position: static;
    height: auto;
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
    transform: none;
    animation: none;
  }

  .carousel-card {
    position: relative;
    transform: none;
    margin-left: 0;
    min-width: 85%;
    scroll-snap-align: center;
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
  
  .pros-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 40px 28px;
  }
  
  .testimonial-quote {
    font-size: 1.125rem;
  }
  
  .final-cta-container {
    padding: 48px 32px;
  }
  
  .final-cta-container h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-v2 {
    width: 100%;
    text-align: center;
  }
  
  .final-cta-trust {
    flex-direction: column;
    gap: 8px;
  }
  
  .final-cta-trust span::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .services-pricing-content h2 {
    font-size: 2rem;
  }
  .trust-items {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   FOOTER — PREMIUM FLOATING CARD REDESIGN
   =============================================== */

.footer-section {
  background: #F5F7FA;
  padding: 80px 0 40px;
}

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

.footer-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 32px;
  padding: 48px 56px 40px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.10);
}

.footer-cta-strip {
  background: #F8FBFF;
  border: 1px solid rgba(47, 128, 237, 0.10);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.footer-cta-content p {
  font-size: 1rem;
  color: #6B7280;
  margin: 0;
}

.footer-cta-button {
  background: #2F80ED;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.20);
  cursor: pointer;
}

.footer-cta-button:hover {
  background: #2563c9;
  box-shadow: 0 6px 24px rgba(47, 128, 237, 0.30);
  transform: translateY(-2px);
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px 0;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6B7280;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: #EAF2FF;
  color: #2F80ED;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 32px;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2F80ED;
}

.footer-divider {
  height: 1px;
  background: rgba(17, 17, 17, 0.06);
  margin: 32px 0;
}

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

.footer-bottom-strip p {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}

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

.footer-bottom-links a {
  font-size: 0.875rem;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #2F80ED;
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-card {
    padding: 36px 32px 32px;
  }
  
  .footer-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .footer-cta-button {
    width: 100%;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 60px 0 32px;
  }
  
  .footer-card {
    border-radius: 24px;
    padding: 28px 24px 24px;
  }
  
  .footer-cta-strip {
    padding: 20px;
    border-radius: 16px;
  }
  
  .footer-cta-content h3 {
    font-size: 1.25rem;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-bottom-strip {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* ===============================================
   Urbance — Floating Premium Footer (Reference Style)
   Only affects .u-footer namespace
   =============================================== */

.u-footer {
  position: relative;
  background: #F5F7FA;
  padding: 90px 0 110px;
}

.u-footer-bg {
  position: relative;
}

.u-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top CTA panel (soft, minimal — matches reference "hero" above card) */
.u-footer-hero {
  background: radial-gradient(1200px 280px at 50% 0%, rgba(47,128,237,0.10), rgba(47,128,237,0) 70%);
  border-radius: 36px;
  padding: 22px;
  margin-bottom: 22px;
}

.u-footer-hero-inner {
  background: #111111;
  border-radius: 28px;
  padding: 56px 46px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(17,17,17,0.18);
}

.u-footer-hero-inner h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.u-footer-hero-inner p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.74);
  font-size: 15px;
  line-height: 1.55;
}

.u-footer-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.u-footer-hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

/* Floating footer card */
.u-footer-card {
  background: #FFFFFF;
  border-radius: 30px;
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 40px 110px rgba(17,17,17,0.12);
  padding: 44px 46px 26px;
}

.u-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 34px;
  align-items: start;
}

.u-footer-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.u-footer-desc {
  margin: 0 0 16px;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

.u-footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.u-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(47,128,237,0.08);
  border: 1px solid rgba(47,128,237,0.12);
  color: #2F80ED;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.u-footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(47,128,237,0.12);
}

.u-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 24px;
}

.u-footer-col h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

.u-footer-col a {
  display: block;
  text-decoration: none;
  color: #6B7280;
  font-size: 14px;
  padding: 7px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.u-footer-col a:hover {
  color: #2F80ED;
  transform: translateX(2px);
}

.u-footer-rule {
  height: 1px;
  background: rgba(17,17,17,0.06);
  margin: 28px 0 18px;
}

.u-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #6B7280;
  font-size: 13px;
}

.u-footer-bottom p {
  margin: 0;
}

.u-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.u-footer-bottom-links a {
  color: #6B7280;
  text-decoration: none;
}

.u-footer-bottom-links a:hover {
  color: #2F80ED;
}

/* ===============================================
   WHY URBANCE SECTION — Two-Column Layout
   =============================================== */

.why-urbance-section {
  background: #FFFFFF;
  padding: 96px 0 96px 0;
  position: relative;
  overflow: hidden;
}

.why-urbance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-urbance-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-urbance-label {
  font-size: 12px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-urbance-title {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.why-urbance-highlight {
  background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-urbance-subtitle {
  font-size: 18px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

.why-urbance-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-urbance-point {
  display: flex;
  gap: 16px;
}

.why-urbance-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.why-urbance-point-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
}

.why-urbance-point-text p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.why-urbance-image {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.why-urbance-image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.why-urbance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-urbance-container {
    gap: 60px;
    padding: 0 32px;
  }

  .why-urbance-title {
    font-size: 40px;
  }

  .why-urbance-image {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .why-urbance-section {
    padding: 64px 0 64px 0;
  }

  .why-urbance-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .why-urbance-title {
    font-size: 32px;
  }

  .why-urbance-subtitle {
    font-size: 16px;
  }

  .why-urbance-image {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .why-urbance-section {
    padding: 48px 0 48px 0;
  }

  .why-urbance-container {
    padding: 0 16px;
    gap: 36px;
  }

  .why-urbance-title {
    font-size: 28px;
  }

  .why-urbance-points {
    gap: 20px;
  }

  .why-urbance-image {
    height: 300px;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .u-footer-top {
    grid-template-columns: 1fr;
  }
  .u-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .u-footer-card {
    padding: 34px 28px 22px;
  }
  .u-footer-hero-inner {
    padding: 44px 26px;
  }
}

@media (max-width: 620px) {
  .u-footer {
    padding: 70px 0 90px;
  }
  .u-footer-links {
    grid-template-columns: 1fr;
  }
  .u-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .u-footer-hero-inner h2 {
    font-size: 26px;
  }
}
