/* ============================================
   SERVICE DETAIL PAGES — SHARED DESIGN SYSTEM
   Smart Ven Tech Innovation
   Extends style.css with service-specific components
   ============================================ */

/* ---------- Service Detail Tokens ---------- */
:root {
  --sd-orange: #FF5A00;
  --sd-orange-soft: rgba(255, 90, 0, 0.08);
  --sd-orange-glow: rgba(255, 90, 0, 0.2);
  --sd-orange-dim: rgba(255, 90, 0, 0.04);
  --sd-dark: #111111;
  --sd-black: #040404;
  --sd-white: #FFFFFF;
  --sd-bg: #F7F7F8;
  --sd-text: #626874;
  --sd-text-dark: #1a1a1a;
  --sd-border: rgba(0, 0, 0, 0.06);
  --sd-gradient-orange: linear-gradient(135deg, #FF5A00 0%, #FF8C42 100%);
  --sd-gradient-dark: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
  --sd-section-gap: 140px;
  --sd-hero-min: 100vh;
}

/* ---------- Page Transition Overlay ---------- */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

.page-transition-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sd-orange);
  transform: translate(-50%, -50%) scale(0);
  will-change: transform;
}

.page-transition-overlay.is-entering .page-transition-circle {
  animation: ptReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-transition-overlay.is-revealing .page-transition-circle {
  transform: translate(-50%, -50%) scale(80);
  animation: ptRetract 0.6s 0.15s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ptReveal {
  0% { transform: translate(-50%, -50%) scale(0); }
  100% { transform: translate(-50%, -50%) scale(80); }
}

@keyframes ptRetract {
  0% { 
    transform: translate(-50%, -50%) scale(80); 
    opacity: 1;
  }
  100% { 
    transform: translate(-50%, -50%) scale(80);
    opacity: 0;
  }
}

/* ---------- Scroll Progress ---------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--sd-gradient-orange);
  z-index: 9998;
  transition: width 0.05s linear;
}

.scroll-section-markers {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9997;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.scroll-section-markers.visible {
  opacity: 1;
}

.scroll-marker {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  color: var(--sd-text);
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--sd-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-marker.active {
  background: var(--sd-orange);
  color: #fff;
  border-color: var(--sd-orange);
  transform: scale(1.15);
}

.scroll-marker:hover {
  border-color: var(--sd-orange);
  color: var(--sd-orange);
}

/* ---------- Custom Cursor ---------- */
.cursor-follower {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.25);
  pointer-events: none;
  z-index: 99990;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  will-change: transform;
  mix-blend-mode: normal;
  opacity: 0;
}

.cursor-follower.visible {
  opacity: 1;
}

.cursor-follower.hover-interactive {
  width: 60px;
  height: 60px;
  background: rgba(255, 90, 0, 0.1);
  border: 1px solid rgba(255, 90, 0, 0.3);
}

.cursor-follower-label {
  position: fixed;
  pointer-events: none;
  z-index: 99991;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sd-orange);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-follower-label.visible {
  opacity: 1;
}

/* ---------- Breadcrumb ---------- */
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--sd-text);
  padding: 20px 0 0;
}

.service-breadcrumb a {
  color: var(--sd-text);
  text-decoration: none;
  transition: color 0.2s;
}

.service-breadcrumb a:hover {
  color: var(--sd-orange);
}

.service-breadcrumb .sep {
  opacity: 0.4;
}

.service-breadcrumb .current {
  color: var(--sd-dark);
  font-weight: 500;
}

/* ============================================
   01 — SERVICE HERO
   ============================================ */

.service-hero.website-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--sd-white);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.service-hero-bg .ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  opacity: 0;
}

.service-hero-bg .hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0;
}

.service-hero-bg .cursor-spotlight {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,0,0.05) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.35);
}

.hero-svg-curve {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.service-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 50px;
  align-items: center;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 6% !important;
}

.service-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--sd-orange-soft);
  border-radius: 30px;
  color: var(--sd-orange);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.service-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: var(--sd-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.service-hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  filter: blur(4px);
}

.service-hero-heading .highlight-text {
  color: var(--sd-orange);
}

.service-hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--sd-text);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(30px);
}

.service-hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.sd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--sd-white);
  background: var(--sd-orange);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 90, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 90, 0, 0.35);
}

.sd-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sd-dark);
  background: var(--sd-bg);
  border: 1.5px solid rgba(255, 90, 0, 0.15);
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sd-btn-secondary:hover {
  background: var(--sd-orange-soft);
  border-color: var(--sd-orange);
  color: var(--sd-orange);
}

.service-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sd-text);
}

.trust-item .trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sd-orange);
}

/* Device Mockups Ecosystem */
.device-ecosystem {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1000px;
}

.device-desktop {
  position: absolute;
  top: 10px;
  right: 0;
  width: 380px;
  height: 240px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 3px solid #E2E8F0;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateX(100px);
}

.device-desktop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: #F1F5F9;
  border-bottom: 1.5px solid #E2E8F0;
  z-index: 3;
}

.device-desktop::after {
  content: '● ● ●';
  position: absolute;
  top: 5px;
  left: 14px;
  font-size: 7px;
  letter-spacing: 2px;
  color: #94A3B8;
  z-index: 4;
}

.device-desktop .device-screen {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  overflow: hidden;
}

.device-tablet {
  position: absolute;
  top: 130px;
  left: 15%;
  width: 200px;
  height: 270px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 4px solid #E2E8F0;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

.device-tablet::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background: #E2E8F0;
  z-index: 3;
}

.device-tablet .device-screen {
  position: absolute;
  top: 20px;
  left: 6px;
  right: 6px;
  bottom: 20px;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}

.device-phone {
  position: absolute;
  bottom: 10px;
  right: 8%;
  width: 110px;
  height: 220px;
  background: #1E293B;
  border-radius: 20px;
  border: 4px solid #0F172A;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 3;
  opacity: 0;
  transform: translateY(100px);
}

.device-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 4px;
  border-radius: 2px;
  background: #334155;
  z-index: 4;
}

.device-phone .device-screen {
  position: absolute;
  top: 18px;
  left: 4px;
  right: 4px;
  bottom: 18px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}

/* Simulated website mockup details */
.mockup-webpage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}

.mockup-webpage .m-navbar {
  height: 24px;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.mockup-webpage .m-logo {
  width: 36px;
  height: 8px;
  background: var(--sd-orange);
  border-radius: 2px;
}

.mockup-webpage .m-nav-items {
  display: flex;
  gap: 4px;
}

.mockup-webpage .m-dot {
  width: 4px;
  height: 4px;
  background: #94A3B8;
  border-radius: 50%;
}

.mockup-webpage .m-hero {
  padding: 16px 10px;
  background: var(--sd-bg);
  text-align: left;
}

.mockup-webpage .m-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--sd-dark);
  line-height: 1.2;
}

.mockup-webpage .m-subtitle {
  font-size: 8px;
  color: var(--sd-text);
  margin-top: 4px;
}

.mockup-webpage .m-cta {
  width: 60px;
  height: 14px;
  background: var(--sd-orange);
  border-radius: 20px;
  margin-top: 8px;
}

.mockup-webpage .m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}

.mockup-webpage .m-card {
  height: 48px;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-webpage .m-card.orange { background: var(--sd-orange-soft); border: 1px solid rgba(255,90,0,0.1); }
.mockup-webpage .m-card.dark { background: rgba(17,17,17,0.05); border: 1px solid rgba(17,17,17,0.05); }
.mockup-webpage .m-card.grey { background: var(--sd-bg); border: 1px solid rgba(0,0,0,0.04); }

.mockup-webpage .m-c-icon {
  width: 8px;
  height: 8px;
  background: var(--sd-orange);
  border-radius: 50%;
}
.mockup-webpage .m-card.dark .m-c-icon { background: var(--sd-dark); }
.mockup-webpage .m-card.grey .m-c-icon { background: #94A3B8; }

.mockup-webpage .m-c-line {
  width: 70%;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 90, 0, 0.15);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sd-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  will-change: transform;
  z-index: 5;
  opacity: 0;
}

.badge-resp { top: 15%; left: 0%; }
.badge-seo { top: 40%; right: 5%; }
.badge-fast { bottom: 30%; left: 8%; }
.badge-sec { bottom: 15%; right: 2%; }


/* ============================================
   02 — WEBSITES WE BUILD
   ============================================ */

.website-industries {
  padding: 120px 0;
  background: var(--sd-bg);
}

.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  padding: 0 24px;
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--sd-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--sd-text);
}

.industry-explorer-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 50px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.industry-list {
  display: flex;
  flex-direction: column;
}

.industry-row {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-row .ind-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--sd-text);
  opacity: 0.4;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.industry-row .ind-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sd-dark);
  flex: 1;
  transition: all 0.3s ease;
}

.industry-row .ind-arrow {
  font-size: 1rem;
  color: var(--sd-orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.industry-row .ind-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  overflow: hidden;
}

.industry-row .ind-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--sd-orange);
}

/* Active Industry List Row */
.industry-row.active {
  padding-left: 20px;
}

.industry-row.active .ind-num {
  color: var(--sd-orange);
  opacity: 1;
}

.industry-row.active .ind-title {
  color: var(--sd-orange);
}

.industry-row.active .ind-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Preview Browser Frame */
.industry-preview-viewport {
  width: 100%;
  display: flex;
  justify-content: center;
  will-change: transform;
}

.preview-browser-frame {
  width: 100%;
  max-width: 580px;
  height: 380px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.p-browser-header {
  height: 34px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.p-browser-header .p-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.p-browser-header .p-dot.red { background: #EF4444; }
.p-browser-header .p-dot.yellow { background: #F59E0B; }
.p-browser-header .p-dot.green { background: #10B981; }

.p-browser-header .p-browser-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #64748B;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 2px 24px;
  border-radius: 6px;
  white-space: nowrap;
}

.p-browser-body {
  flex: 1;
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
}

.preview-layout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  pointer-events: none;
}

.preview-layout.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Styled internal industry layout blocks */
.preview-layout::-webkit-scrollbar { width: 4px; }
.preview-layout::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.1); border-radius: 2px; }

.logo-box, .menu-box, .btn-box, .cat-box, .item-card, .prop-card, .prod-card, .crs-card, .fact-box, .exp-row {
  border-radius: 4px;
}

/* Corporate layout styling */
.l-corp { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-corp-header { display: flex; justify-content: space-between; align-items: center; }
.l-corp-header .logo-box { width: 80px; height: 12px; background: var(--sd-dark); }
.l-corp-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-corp-hero { padding: 30px 15px; background: var(--sd-bg); border-radius: 8px; text-align: left; }
.l-corp-hero .title-line { font-size: 22px; font-weight: 700; color: var(--sd-dark); margin-bottom: 8px; }
.l-corp-hero .subtitle-line { font-size: 11px; color: var(--sd-text); margin-bottom: 12px; }
.l-corp-hero .btn-box { display: inline-block; padding: 6px 14px; background: var(--sd-orange); color: #fff; font-size: 10px; font-weight: 700; }
.l-corp-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.l-corp-services .srv-box { background: #fff; border: 1px solid rgba(0,0,0,0.05); padding: 10px; font-size: 11px; font-weight: 600; text-align: center; }
.l-corp-overview { display: flex; flex-direction: column; gap: 6px; }
.l-corp-overview .text-line { height: 6px; background: rgba(0,0,0,0.05); border-radius: 2px; }
.l-corp-overview .text-line.long { width: 90%; }

/* Healthcare layout styling */
.l-health { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-health-header { display: flex; justify-content: space-between; align-items: center; }
.l-health-header .logo-box.healing { width: 80px; height: 12px; background: #0EA5E9; }
.l-health-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-health-hero { padding: 30px 15px; background: #F0F9FF; border-radius: 8px; text-align: left; }
.l-health-hero .title-line { font-size: 22px; font-weight: 700; color: #0369A1; margin-bottom: 8px; }
.l-health-hero .subtitle-line { font-size: 11px; color: #0284C7; margin-bottom: 12px; }
.l-health-hero .btn-box.healing { display: inline-block; padding: 6px 14px; background: #0EA5E9; color: #fff; font-size: 10px; font-weight: 700; }
.l-health-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.l-health-grid .cat-box { background: #fff; border: 1px solid #E0F2FE; padding: 10px; font-size: 11px; font-weight: 600; text-align: center; color: #0369A1; }
.l-health-info { display: flex; flex-direction: column; gap: 6px; }
.l-health-info .text-line { height: 6px; background: rgba(0,0,0,0.04); border-radius: 2px; }
.l-health-info .text-line.long { width: 85%; }

/* Restaurant layout styling */
.l-rest { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-rest-header { display: flex; justify-content: space-between; align-items: center; }
.l-rest-header .logo-box.rest { width: 60px; height: 12px; background: #C2410C; }
.l-rest-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-rest-hero { padding: 35px 15px; background: #FFF7ED; border-radius: 8px; text-align: center; }
.l-rest-hero .title-line { font-size: 20px; font-weight: 700; color: #7C2D12; margin-bottom: 8px; font-family: Georgia, serif; }
.l-rest-hero .subtitle-line { font-size: 11px; color: #9A3412; margin-bottom: 12px; }
.l-rest-hero .btn-box.rest { display: inline-block; padding: 6px 14px; background: #C2410C; color: #fff; font-size: 10px; font-weight: 700; }
.l-rest-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.l-rest-menu .item-card { background: #fff; border: 1px solid #FFEDD5; padding: 8px; display: flex; gap: 10px; align-items: center; }
.l-rest-menu .item-img { width: 40px; height: 40px; background: #FED7AA; border-radius: 4px; }
.l-rest-menu .item-name { font-size: 11px; font-weight: 600; color: #431407; }

/* Real Estate layout styling */
.l-estate { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-estate-header { display: flex; justify-content: space-between; align-items: center; }
.l-estate-header .logo-box.estate { width: 70px; height: 12px; background: #0F172A; }
.l-estate-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-estate-hero { padding: 30px 15px; background: #F8FAFC; border-radius: 8px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.l-estate-hero .title-line { font-size: 20px; font-weight: 700; color: #1E293B; }
.l-estate-hero .search-bar-mock { width: 80%; background: #fff; border: 1px solid #CBD5E1; border-radius: 20px; padding: 6px 12px; font-size: 10px; color: #94A3B8; text-align: left; }
.l-estate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.l-estate-grid .prop-card { background: #fff; border: 1px solid #E2E8F0; overflow: hidden; }
.l-estate-grid .prop-img { height: 70px; background: #E2E8F0; }
.l-estate-grid .prop-info { padding: 8px; }
.l-estate-grid .prop-price { font-size: 12px; font-weight: 700; color: var(--sd-orange); }
.l-estate-grid .prop-loc { font-size: 8px; color: #64748B; margin-top: 2px; }

/* E-Commerce layout styling */
.l-shop { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-shop-header { display: flex; justify-content: space-between; align-items: center; }
.l-shop-header .logo-box.shop { width: 60px; height: 12px; background: var(--sd-dark); }
.l-shop-header .menu-box { font-size: 12px; color: var(--sd-dark); }
.l-shop-hero { padding: 25px 15px; background: #F8FAFC; border-radius: 8px; text-align: left; }
.l-shop-hero .title-line { font-size: 20px; font-weight: 700; color: var(--sd-dark); }
.l-shop-hero .subtitle-line { font-size: 10px; color: var(--sd-text); margin-top: 4px; }
.l-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.l-shop-grid .prod-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); padding: 8px; text-align: center; }
.l-shop-grid .prod-img { height: 50px; background: var(--sd-bg); border-radius: 4px; margin-bottom: 6px; }
.l-shop-grid .prod-title { font-size: 9px; font-weight: 600; color: var(--sd-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.l-shop-grid .prod-price { font-size: 10px; font-weight: 700; color: var(--sd-orange); margin-top: 2px; }

/* Education layout styling */
.l-edu { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-edu-header { display: flex; justify-content: space-between; align-items: center; }
.l-edu-header .logo-box.edu { width: 70px; height: 12px; background: #4F46E5; }
.l-edu-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-edu-hero { padding: 30px 15px; background: #EEF2F6; border-radius: 8px; text-align: left; }
.l-edu-hero .title-line { font-size: 20px; font-weight: 700; color: #312E81; margin-bottom: 6px; }
.l-edu-hero .subtitle-line { font-size: 10px; color: #4338CA; margin-bottom: 12px; }
.l-edu-hero .btn-box.edu { display: inline-block; padding: 6px 14px; background: #4F46E5; color: #fff; font-size: 10px; font-weight: 700; }
.l-edu-courses { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.l-edu-courses .crs-card { background: #fff; border: 1px solid #E0E7FF; padding: 8px; font-size: 10px; font-weight: 600; display: flex; align-items: center; gap: 6px; color: #312E81; }
.l-edu-courses .crs-icon { font-size: 10px; color: #4F46E5; }

/* Manufacturing layout styling */
.l-manu { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-manu-header { display: flex; justify-content: space-between; align-items: center; }
.l-manu-header .logo-box.manu { width: 80px; height: 12px; background: #475569; }
.l-manu-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-manu-hero { padding: 30px 15px; background: #F1F5F9; border-radius: 8px; text-align: left; }
.l-manu-hero .title-line { font-size: 20px; font-weight: 700; color: #1E293B; margin-bottom: 6px; }
.l-manu-hero .subtitle-line { font-size: 10px; color: #475569; margin-bottom: 12px; }
.l-manu-hero .btn-box.manu { display: inline-block; padding: 6px 14px; background: #475569; color: #fff; font-size: 10px; font-weight: 700; }
.l-manu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.l-manu-grid .fact-box { background: #fff; border: 1px solid #E2E8F0; padding: 8px; text-align: center; }
.l-manu-grid .fact-title { font-size: 16px; font-weight: 700; color: var(--sd-orange); }
.l-manu-grid .fact-lbl { font-size: 8px; color: #64748B; margin-top: 2px; }

/* Professional Services layout styling */
.l-service { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.l-service-header { display: flex; justify-content: space-between; align-items: center; }
.l-service-header .logo-box.service { width: 80px; height: 12px; background: #0D9488; }
.l-service-header .menu-box { width: 40px; height: 10px; background: rgba(0,0,0,0.1); }
.l-service-hero { padding: 30px 15px; background: #F0FDFA; border-radius: 8px; text-align: left; }
.l-service-hero .title-line { font-size: 20px; font-weight: 700; color: #115E59; margin-bottom: 6px; }
.l-service-hero .subtitle-line { font-size: 10px; color: #0D9488; margin-bottom: 12px; }
.l-service-hero .btn-box.service { display: inline-block; padding: 6px 14px; background: #0D9488; color: #fff; font-size: 10px; font-weight: 700; }
.l-service-expertises { display: flex; flex-direction: column; gap: 8px; }
.l-service-expertises .exp-row { background: #fff; border: 1px solid #CCFBF1; padding: 8px; font-size: 10px; color: #115E59; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.l-service-expertises i { color: #0D9488; }


/* ============================================
   03 — WHY YOUR BUSINESS NEEDS A POWERFUL WEBSITE
   ============================================ */

.website-value {
  padding: 120px 0;
  background: var(--sd-white);
}

.stacked-cards-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.stacked-cards-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.value-card.scroll-card {
  position: sticky;
  top: 100px;
  background: var(--sd-white);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 30px;
  padding: 50px;
  min-height: 420px;
  align-items: center;
  transform-origin: top center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.value-card-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.value-card-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sd-orange);
  font-weight: 700;
}

.value-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--sd-orange-soft);
  color: var(--sd-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.value-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--sd-dark);
  letter-spacing: -0.01em;
}

.value-card-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--sd-text);
}

.value-card-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.anim-viewport {
  width: 100%;
  max-width: 320px;
  height: 220px;
  background: var(--sd-bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card 01 - Trust Animation */
.trust-box {
  width: 200px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: scale(0.9);
  opacity: 0.9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trust-header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.trust-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sd-orange);
}

.trust-title-stub {
  width: 80px;
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.trust-body {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0;
}

.trust-check-icon {
  font-size: 18px;
  color: #10B981;
}

.trust-brand-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--sd-dark);
  letter-spacing: 0.5px;
}

.trust-rating {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  font-size: 10px;
}

/* Card 02 - Stay Accessible Clock */
.clock-element {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--sd-orange);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.clock-face {
  width: 100%;
  height: 100%;
  position: relative;
}

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  background: var(--sd-dark);
  transform-origin: bottom center;
  border-radius: 2px;
}

.clock-hand.hour {
  width: 3px;
  height: 25px;
  margin-left: -1.5px;
  transform: rotate(45deg);
}

.clock-hand.minute {
  width: 2px;
  height: 35px;
  margin-left: -1px;
  transform: rotate(260deg);
  background: var(--sd-orange);
}

.radar-scan {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255,90,0,0.15);
  background: radial-gradient(circle, rgba(255,90,0,0.05) 0%, transparent 70%);
}

.customer-dots-container {
  position: absolute;
  inset: 0;
}

.customer-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sd-orange);
  box-shadow: 0 0 10px var(--sd-orange);
  opacity: 0;
}

.customer-dot.dot1 { top: 30px; left: 40px; }
.customer-dot.dot2 { top: 160px; right: 50px; }
.customer-dot.dot3 { bottom: 40px; left: 60px; }
.customer-dot.dot4 { top: 90px; right: 80px; }

/* Card 03 - Get Discovered Search engine Mockup */
.mock-search-engine {
  width: 260px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mse-header {
  padding: 10px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.mse-bar {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 8px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mse-typewriter {
  font-family: monospace;
  color: var(--sd-dark);
}

.mse-results {
  padding: 12px;
}

.mse-result-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mse-badge {
  font-size: 6px;
  font-weight: 700;
  color: var(--sd-orange);
  letter-spacing: 0.5px;
}

.mse-res-title {
  font-size: 11px;
  font-weight: 700;
  color: #1E3A8A;
}

.mse-res-desc {
  font-size: 8px;
  color: #475569;
  line-height: 1.3;
}

/* Card 04 - Drive Action Conversion Funnel */
.conversion-funnel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 180px;
}

.funnel-step {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
}

.funnel-step.f-service { background: var(--sd-dark); width: 140px; }
.funnel-step.f-trust { background: #475569; width: 110px; }
.funnel-step.f-cta { background: var(--sd-orange); width: 80px; }

.funnel-arrow {
  font-size: 8px;
  color: #94A3B8;
}

.virtual-cursor {
  position: absolute;
  font-size: 20px;
  color: var(--sd-dark);
  top: -10px;
  left: -20px;
  z-index: 10;
  pointer-events: none;
}

.enquiry-success {
  position: absolute;
  bottom: 0px;
  background: #10B981;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
  opacity: 0;
  transform: scale(0.8);
}


/* ============================================
   04 — HOW WE BUILD YOUR WEBSITE (Horizontal Scroll)
   ============================================ */

.website-process {
  padding: 120px 0;
  background: var(--sd-bg);
}

.process-section-header {
  max-width: var(--container-max);
  margin: 0 auto 50px;
  padding: 0 24px;
}

.timeline-scroll-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.timeline-rail {
  display: flex;
  width: max-content;
  position: relative;
  padding-left: 24px;
  will-change: transform;
}

.timeline-progress-track {
  position: absolute;
  top: 15px;
  left: 50px;
  right: 400px;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  z-index: 0;
}

.timeline-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--sd-orange);
}

.timeline-step {
  width: 460px;
  flex-shrink: 0;
  padding-right: 40px;
  position: relative;
  z-index: 1;
  opacity: 0.35;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.active {
  opacity: 1;
  transform: scale(1);
}

.step-card {
  background: var(--sd-white);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 380px;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-card-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sd-orange);
}

.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--sd-dark);
}

.step-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sd-text);
}

.step-card-anim {
  flex: 1;
  background: var(--sd-bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stage 1 - Strategy Nodes */
.node-center {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--sd-orange);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,90,0,0.3);
  z-index: 2;
}

.float-node {
  position: absolute;
  padding: 4px 10px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
  color: var(--sd-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  z-index: 1;
  will-change: transform;
}

.n-biz { top: 15px; left: 15px; }
.n-aud { top: 15px; right: 15px; }
.n-goal { bottom: 15px; left: 15px; }
.n-srv { bottom: 15px; right: 15px; }

/* Stage 2 - Sitemap Cards */
.sitemap-cards {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.sm-card {
  width: 100px;
  padding: 6px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--sd-dark);
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  position: absolute;
}

#smHome { top: 15px; left: 50%; transform: translateX(-50%); background: var(--sd-orange); color: #fff; border-color: var(--sd-orange); }
#smServices { top: 55px; left: 10px; }
#smAbout { top: 55px; right: 10px; }
#smProjects { top: 95px; left: 10px; }
#smContact { top: 95px; right: 10px; }

/* Stage 3 - Design Evolution */
.design-evolution-container {
  position: relative;
  width: 180px;
  height: 120px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.dev-wireframe {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
  z-index: 1;
}

.dev-w-header { height: 10px; background: rgba(0,0,0,0.05); }
.dev-w-hero { height: 35px; border: 1px dashed rgba(0,0,0,0.15); }
.dev-w-cards { display: flex; gap: 6px; }
.dev-w-card { flex: 1; height: 30px; border: 1px dashed rgba(0,0,0,0.15); }

.dev-color-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,90,0,0.1) 0%, transparent 100%);
  opacity: 0;
  z-index: 2;
}

.dev-typo-overlay {
  position: absolute;
  top: 40%;
  left: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--sd-dark);
  opacity: 0;
  z-index: 3;
}

.dev-final-ui {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
  opacity: 0;
  z-index: 4;
}

.final-header { height: 10px; display: flex; }
.final-logo { width: 30px; height: 100%; background: var(--sd-orange); }
.final-hero { height: 35px; background: var(--sd-bg); display: flex; align-items: center; padding-left: 8px; }
.final-title { font-size: 9px; font-weight: 800; }
.final-cards { display: flex; gap: 6px; }
.final-card { flex: 1; height: 30px; }
.final-card.orange { background: var(--sd-orange-soft); }
.final-card.black { background: rgba(0,0,0,0.04); }

/* Stage 4 - Develop Code */
.code-terminal {
  width: 140px;
  height: 90px;
  background: #0F172A;
  border-radius: 6px;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: absolute;
  left: 20px;
}

.term-header {
  height: 16px;
  background: #1E293B;
  display: flex;
  align-items: center;
  padding-left: 6px;
  gap: 3px;
  border-bottom: 1px solid #334155;
}

.term-header .t-dot { width: 4px; height: 4px; border-radius: 50%; }
.term-header .t-dot.red { background: #EF4444; }
.term-header .t-dot.yellow { background: #F59E0B; }
.term-header .t-dot.green { background: #10B981; }

.term-body {
  padding: 8px;
  font-family: monospace;
  font-size: 6px;
  color: #38BDF8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.term-body .code-line {
  white-space: nowrap;
  overflow: hidden;
  width: 0%;
}

.responsiveness-sim {
  position: absolute;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sim-frame {
  width: 32px;
  height: 24px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #64748B;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.sim-frame.desktop.active { border-color: var(--sd-orange); color: var(--sd-orange); }
.sim-frame.tablet.active { border-color: var(--sd-orange); color: var(--sd-orange); }
.sim-frame.mobile.active { border-color: var(--sd-orange); color: var(--sd-orange); }

/* Stage 5 - Launch phases */
.launch-phases {
  display: flex;
  gap: 6px;
  position: absolute;
  top: 15px;
}

.phase-badge {
  font-size: 7px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  color: #64748B;
  opacity: 0.5;
}

.phase-badge.active {
  background: var(--sd-orange-soft);
  border-color: var(--sd-orange);
  color: var(--sd-orange);
  opacity: 1;
}

.final-launch-pulse {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  opacity: 0;
  transform: scale(0.8);
}

.pulse-center {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sd-orange);
  color: #FFFFFF;
  font-size: 7px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255,90,0,0.3);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--sd-orange);
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
}


/* ============================================
   05 — FINAL CTA
   ============================================ */

.service-cta.website-cta {
  position: relative;
  padding: 160px 0;
  background: var(--sd-white);
  overflow: hidden;
  text-align: center;
}

.service-cta .cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
}

.service-cta .cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.35);
  will-change: transform;
}

.service-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-cta .cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--sd-dark);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.service-cta .cta-heading .word {
  display: inline-block;
  opacity: 0;
}

.service-cta .cta-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--sd-text);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sd-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--sd-dark);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 90, 0, 0.2);
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sd-btn-whatsapp:hover {
  background: #FFFFFF;
  border-color: var(--sd-orange);
  box-shadow: 0 10px 25px rgba(255, 90, 0, 0.12);
  transform: translateY(-2px);
}

.whatsapp-icon-accent {
  color: #25D366;
  font-size: 1.1rem;
}


/* ============================================
   SECTION HEADINGS — REVEAL SYSTEM
   ============================================ */

.sd-heading-reveal {
  overflow: hidden;
}

.sd-heading-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(12deg);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}


/* ============================================
   SECTION TRANSITIONS — Ambient Flow
   ============================================ */

.section-transition {
  position: relative;
}

.section-transition::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--sd-bg));
  pointer-events: none;
  z-index: 1;
}

.section-transition-reverse::after {
  background: linear-gradient(to bottom, transparent, var(--sd-white));
}

.section-transition-to-dark::after {
  background: linear-gradient(to bottom, transparent, var(--sd-dark));
}


/* ============================================
   RESPONSIVE DESIGN SYSTEM
   ============================================ */

@media (max-width: 1024px) {
  .service-hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px !important;
  }
  
  .service-hero-left {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .service-hero-desc {
    margin: 0 auto 36px;
  }
  
  .service-hero-ctas {
    justify-content: center;
  }
  
  .service-hero-trust {
    justify-content: center;
  }
  
  .device-ecosystem {
    height: 380px;
  }
  
  .device-desktop {
    width: 290px;
    height: 190px;
    left: 20%;
    top: 10px;
  }
  
  .device-tablet {
    width: 150px;
    height: 200px;
    left: 5%;
    top: 90px;
  }
  
  .device-phone {
    width: 85px;
    height: 170px;
    right: 15%;
    bottom: 20px;
  }

  .industry-explorer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-card.scroll-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 24px;
    min-height: auto;
  }

  .value-card-right {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
}

@media (max-width: 768px) {
  :root {
    --sd-section-gap: 80px;
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .service-hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .scroll-section-markers {
    display: none;
  }
  
  .cursor-follower,
  .cursor-follower-label {
    display: none !important;
  }
  
  .service-hero.website-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .service-hero-heading {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  
  .service-hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .sd-btn-primary,
  .sd-btn-secondary,
  .sd-btn-whatsapp {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 54px;
  }
  
  .device-ecosystem {
    height: 320px;
  }
  
  .device-desktop {
    width: 230px;
    height: 150px;
    left: 15%;
    top: 10px;
  }
  
  .device-tablet {
    width: 120px;
    height: 160px;
    left: 5%;
    top: 70px;
  }
  
  .device-phone {
    width: 70px;
    height: 140px;
    right: 10%;
    bottom: 10px;
  }
  
  .floating-badge {
    font-size: 0.55rem;
    padding: 6px 12px;
  }

  .industry-row {
    padding: 18px 5px;
  }

  .industry-row .ind-title {
    font-size: 1rem;
  }

  .timeline-scroll-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-rail {
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline-progress-track {
    display: none;
  }

  .timeline-step {
    width: 85vw;
    max-width: 380px;
    scroll-snap-align: center;
    opacity: 1;
    transform: none !important;
    padding-right: 15px;
  }

  .step-card {
    height: auto;
    min-height: 360px;
    padding: 24px;
  }
  
  .step-card-title {
    font-size: 1.3rem;
  }

  .step-card-anim {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .service-hero-heading {
    font-size: 2rem;
  }
  
  .service-breadcrumb {
    font-size: 0.72rem;
  }
  
  .service-hero-badge {
    font-size: 0.65rem;
    margin-bottom: 16px;
  }
  
  .service-hero-desc {
    font-size: 0.95rem;
  }

  .value-card.scroll-card {
    padding: 20px;
    border-radius: 16px;
  }

  .value-card-title {
    font-size: 1.4rem;
  }

  .value-card-text {
    font-size: 0.9rem;
  }

  .anim-viewport {
    height: 180px;
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .service-hero-heading .word,
  .sd-heading-reveal .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  
  .hero-particle,
  .cta-particle {
    display: none !important;
  }
  
  .cursor-follower,
  .cursor-follower-label {
    display: none !important;
  }
  
  .page-transition-overlay {
    display: none !important;
  }
  
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  
  .service-hero-desc,
  .service-hero-ctas,
  .service-hero-trust,
  .service-hero-bg .ambient-glow,
  .service-hero-bg .hero-grid,
  .service-cta .cta-bg-glow {
    opacity: 1 !important;
    transform: none !important;
  }
}



/* Mobile / Tablet responsive polish for service-detail pages */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu { display:none !important; }
  .hamburger { display:flex !important; margin-left:auto; }
  .mega-menu { display:none !important; }
  .container { max-width:100%; padding-left:28px; padding-right:28px; }
}

@media (max-width: 768px) {
  html, body { overflow-x:hidden; }
  .nav-menu { display:none !important; }
  .hamburger { display:flex !important; margin-left:auto; }
  .mega-menu { display:none !important; }
  .container { width:100%; max-width:100%; padding-left:15px; padding-right:15px; }

  .page-hero {
    padding:105px 0 52px;
    text-align:center;
  }

  .page-hero h1 {
    font-size:clamp(2.1rem, 10vw, 3rem);
    line-height:1;
  }

  .page-hero p {
    font-size:.84rem;
    line-height:1.7;
  }

  .service-detail-grid,
  .detail-grid,
  .feature-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns:1fr !important;
  }

  .service-detail-card,
  .feature-card,
  .pricing-card {
    width:100%;
  }

  input, select, textarea {
    font-size:16px !important;
  }
}
