/* ==========================================================================
   BUSYTIZE - OFFICIAL DIGITAL AGENCY DESIGN SYSTEM
   Tech-Heavy, Premium, Responsive & High Performance
   Color Palette:
   - Primary BG: #FFFFFF (White)
   - Alt BG 1: #2E221C (Rich Espresso)
   - Alt BG 2: #FF6044 (Coral)
   - Accent Hover: #D66A49 (Burnt Orange)
   - Border: #E8E1DB (Soft Stone)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* --- Root Variables --- */
:root {
  --bg-white: #FFFFFF;
  --bg-espresso: #2E221C;
  --bg-espresso-light: #3D2F28;
  --bg-espresso-dark: #1D1511;
  --accent-coral: #FF6044;
  --accent-coral-rgb: 255, 96, 68;
  --accent-hover: #D66A49;
  --border-stone: #E8E1DB;
  --border-stone-dark: #4D3C33;
  --text-main: #2E221C;
  --text-muted: #6E6159;
  --text-light: #F5F1EE;
  --text-light-muted: #B8ADA5;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-code: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 12px rgba(46, 34, 28, 0.04);
  --shadow-md: 0 12px 32px rgba(46, 34, 28, 0.08);
  --shadow-lg: 0 20px 48px rgba(46, 34, 28, 0.14);
  --shadow-glow: 0 0 30px rgba(255, 96, 68, 0.25);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Setup --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--bg-espresso) 0%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-coral {
  color: var(--accent-coral);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 96, 68, 0.08);
  border: 1px solid rgba(255, 96, 68, 0.2);
  color: var(--accent-coral);
  font-family: var(--font-code);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-tag-dark {
  background: rgba(255, 96, 68, 0.15);
  border-color: rgba(255, 96, 68, 0.3);
  color: var(--accent-coral);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-coral);
  box-shadow: 0 0 8px var(--accent-coral);
  animation: pulse-dot 2s infinite;
}

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

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
}

.section-subtitle-dark {
  color: var(--text-light-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-coral);
  color: var(--bg-white);
  box-shadow: 0 10px 24px rgba(255, 96, 68, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(214, 106, 73, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
}

.btn-primary:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-espresso);
  border: 2px solid var(--border-stone);
}

.btn-secondary:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  transform: translateY(-3px);
  background: rgba(255, 96, 68, 0.04);
}

.btn-dark {
  background-color: var(--bg-espresso);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-stone);
  box-shadow: var(--shadow-sm);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
}

.header.scrolled .logo-img {
  height: 54px;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--bg-espresso);
  line-height: 1;
}

.logo-text .text-coral {
  color: var(--accent-coral);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.01em;
  margin-top: 3px;
  white-space: nowrap;
}

.logo-link:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-coral);
  transition: width var(--transition-fast);

}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Home page: header sits over dark hero, so light text until scrolled */
.home .header:not(.scrolled) .nav-link {
  color: var(--text-light);
}

.home .header:not(.scrolled) .nav-link:hover,
.home .header:not(.scrolled) .nav-link.active {
  color: var(--accent-coral);
}

.home .header:not(.scrolled) .logo-text {
  color: var(--text-light);
}

.home .header:not(.scrolled) .logo-tagline {
  color: var(--text-light-muted);
}

.home .header:not(.scrolled) .mobile-toggle span {
  background-color: var(--text-light);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all var(--transition-fast);

}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 96, 68, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 12% 85%, rgba(255, 96, 68, 0.10) 0%, transparent 45%),
    linear-gradient(135deg, #2E221C 0%, #1D1511 55%, #241812 100%);
  overflow: hidden;
}

/* Decorative background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero-orb-1 {
  width: 460px;
  height: 460px;
  top: -140px;
  right: -100px;
  background: rgba(255, 96, 68, 0.30);
  animation: orb-drift 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: 30%;
  background: rgba(255, 160, 122, 0.16);
  animation: orb-drift 18s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 220px;
  height: 220px;
  top: 40%;
  left: 6%;
  background: rgba(255, 96, 68, 0.20);
  animation: orb-drift 11s ease-in-out infinite;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.06); }
  66% { transform: translate(-20px, 20px) scale(0.96); }
}

/* Tech Canvas Particles */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-family: var(--font-code);
  font-size: 0.775rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.status-badge .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.hero-title span.accent-box {
  display: inline-block;
  color: var(--accent-coral);
  position: relative;
  padding: 0 6px;
  z-index: 1;
}

.hero-title span.accent-box::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 10px;
  background: rgba(255, 96, 68, 0.16);
  border-radius: 3px;
  z-index: -1;
  transform: skewX(-8deg);
  animation: accent-sweep 3s ease-in-out infinite;
}

@keyframes accent-sweep {
  0%, 100% { width: 100%; opacity: 1; }
  50% { width: 70%; opacity: 0.7; }
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.hero-feature-tag:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  box-shadow: 0 2px 12px rgba(255, 122, 97, 0.15);
  transform: translateY(-2px);
  background: rgba(255, 96, 68, 0.10);
}

.hero .btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero .btn-secondary:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  background: rgba(255, 96, 68, 0.06);
}

/* Hero Media / Video HUD Container */
.hero-media-wrapper {
  position: relative;
}

.tech-hud-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-espresso);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(255, 96, 68, 0.15);
  border: 1px solid var(--border-stone-dark);
}

/* HUD corner brackets */
.hud-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent-coral);
  z-index: 3;
  pointer-events: none;
}

.hud-corner-tl { top: -10px; left: -10px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.hud-corner-tr { top: -10px; right: -10px; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.hud-corner-bl { bottom: -10px; left: -10px; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.hud-corner-br { bottom: -10px; right: -10px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }

.hud-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 14px;
}

.hud-dots {
  display: flex;
  gap: 8px;
}

.hud-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hud-dot.red { background-color: #EF4444; }
.hud-dot.yellow { background-color: #F59E0B; }
.hud-dot.green { background-color: #10B981; }

.hud-title {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--text-light-muted);
  letter-spacing: 0.05em;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background-color: var(--bg-espresso-dark);
}

.video-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tech-hud-frame:hover .video-placeholder-img {
  transform: scale(1.03);
}

.video-overlay-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(46, 34, 28, 0.2) 0%, rgba(46, 34, 28, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

/* Animated scanning line inside the HUD video frame */
.scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 96, 68, 0.7), transparent);
  z-index: 2;
  top: 0;
  animation: scan-move 4s linear infinite;
  pointer-events: none;
}

@keyframes scan-move {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hud-watermark {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  font-family: var(--font-code);
  font-size: 0.75rem;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-coral);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 0 30px rgba(255, 96, 68, 0.5);
  transition: all var(--transition-normal);
}

.video-play-btn:hover {
  transform: scale(1.15);
  background-color: var(--accent-hover);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 4px;
}

/* Floating Tech Badges */
.floating-badge {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-stone);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float-badge 6s ease-in-out infinite;
}

.floating-badge-1 {
  top: -20px;
  left: -20px;
}

.floating-badge-2 {
  bottom: -20px;
  right: -20px;
  animation-delay: -3s;
}

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

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 96, 68, 0.12);
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--bg-espresso);
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.hero-scroll-cue:hover {
  opacity: 0.7;
}

.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--accent-coral), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: #fff;
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { top: -40%; }
  100% { top: 110%; }
}

.hero-scroll-text {
  font-family: var(--font-code);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* --- Our Services (Tech-Heavy Modular Matrix) --- */
.services-section {
  padding: 35px 0 45px;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.services-section .section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.services-section .section-tag {
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.services-section .section-heading {
  font-size: clamp(2.0rem, 3.5vw, 2.5rem);
  margin-bottom: 4px;
  line-height: 1.2;
}

.services-section .section-subtitle-center {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.services-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.service-module {
  position: relative;
  background: #FAFAFA;
  border: 1px solid var(--border-stone);
  border-left: 4px solid var(--bg-espresso);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.service-module:hover {
  background: #FFFFFF;
  border-color: var(--accent-coral);
  border-left-color: var(--accent-coral);
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(255, 122, 97, 0.12), 0 4px 15px rgba(0, 0, 0, 0.04);
}

.module-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 122, 97, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-module:hover .module-glow {
  opacity: 1;
}

.module-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
}

.module-number {
  font-family: var(--font-code);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(46, 34, 28, 0.15);
  line-height: 1;
  transition: color 0.4s ease;
}

.service-module:hover .module-number {
  color: var(--accent-coral);
}

.module-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 122, 97, 0.08);
  border: 1px solid rgba(255, 122, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.module-icon svg {
  width: 20px;
  height: 20px;
}

.service-module:hover .module-icon {
  background: var(--accent-coral);
  color: #FFFFFF;
  border-color: var(--accent-coral);
  transform: rotate(6deg) scale(1.06);
}

.module-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.module-code-badge {
  font-family: var(--font-code);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-coral);
  letter-spacing: 0.06em;
}

.module-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--bg-espresso);
}

.module-body {
  margin-bottom: 0;
  flex: 1;
}

.module-tagline {
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 0;
}

.module-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.module-includes {
  background: rgba(46, 34, 28, 0.02);
  border: 1px solid rgba(46, 34, 28, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.includes-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.includes-icon {
  color: var(--accent-coral);
  font-size: 0.8rem;
}

.includes-title {
  font-family: var(--font-code);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--bg-espresso);
  letter-spacing: 0.05em;
}

.includes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  align-content: flex-start;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-stone);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.tech-pill::before {
  content: '✓';
  color: var(--accent-coral);
  font-weight: 800;
  margin-right: 4px;
  font-size: 0.68rem;
}

.tech-pill:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  background: rgba(255, 122, 97, 0.06);
  transform: translateY(-1px);
}

.module-footer {
  padding-top: 10px;
  border-top: 1px dashed var(--border-stone);
  margin-top: auto;
}

.module-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--bg-espresso);
  transition: all 0.3s ease;
}

.module-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.service-module:hover .module-btn {
  color: var(--accent-coral);
}

.service-module:hover .module-btn svg {
  transform: translateX(4px);
}

/* =============================================
   3D FLIP CARD — Service Modules
   ============================================= */
.service-module.flip-card {
  background: transparent;
  border: none;
  border-left: none;
  padding: 0;
  height: 205px;
  overflow: visible;
  transform: none;
  box-shadow: none;
  perspective: 1200px;
}

.service-module.flip-card:hover {
  background: transparent;
  border: none;
  transform: none;
  box-shadow: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.service-module.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* --- FRONT FACE --- */
.flip-card-front {
  background: #FAFAFA;
  border: 1px solid var(--border-stone);
  border-left: 4px solid var(--bg-espresso);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-module.flip-card:hover .flip-card-front {
  border-color: var(--accent-coral);
  border-left-color: var(--accent-coral);
  box-shadow: 0 16px 35px rgba(255, 122, 97, 0.12);
}

.flip-card-front .module-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 122, 97, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-module.flip-card:hover .flip-card-front .module-glow {
  opacity: 1;
}

.service-module.flip-card:hover .flip-card-front .module-number {
  color: var(--accent-coral);
}

.service-module.flip-card:hover .flip-card-front .module-icon {
  background: var(--accent-coral);
  color: #FFFFFF;
  border-color: var(--accent-coral);
  transform: rotate(6deg) scale(1.06);
}

.flip-card-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-code);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-coral);
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 122, 97, 0.25);
  margin-top: auto;
  animation: hint-pulse 2.5s ease-in-out infinite;
}

.flip-card-hint svg {
  width: 12px;
  height: 12px;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* --- BACK FACE --- */
.flip-card-back {
  background: var(--bg-espresso);
  border: 1px solid rgba(255, 122, 97, 0.4);
  border-left: 4px solid var(--accent-coral);
  transform: rotateY(180deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 122, 97, 0.15);
}

.flip-card-back .module-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 122, 97, 0.2) 0%, transparent 70%);
  opacity: 1;
  pointer-events: none;
}

.back-header {
  margin-bottom: 6px;
}

.back-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 1px;
}

.flip-card-back .module-code-badge {
  color: var(--accent-coral);
  font-size: 0.64rem;
}

.flip-card-back .includes-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 4px;
  overflow: visible;
  max-height: none;
}

.flip-card-back .tech-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

.flip-card-back .tech-pill::before {
  color: var(--accent-coral);
  margin-right: 4px;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.flip-card-back .tech-pill:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
  color: #FFFFFF;
}

.flip-card-back .module-footer {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  margin-top: auto;
  padding-top: 8px;
}

.flip-card-back .module-btn {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}

.flip-card-back .module-btn:hover {
  color: var(--accent-coral);
}

.flip-card-back .module-btn svg {
  color: var(--accent-coral);
}

.why-card[data-delay="3"] { transition-delay: 0.15s; }
.why-card[data-delay="4"] { transition-delay: 0.2s; }
.why-card[data-delay="5"] { transition-delay: 0.25s; }

/* --- Industries We Serve Section --- */
.industries-section {
  padding: 100px 0;
  background-color: var(--bg-espresso);
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,122,97,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,122,97,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.industry-item:hover {
  background: rgba(255,122,97,0.1);
  border-color: rgba(255,122,97,0.4);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(255,122,97,0.1);
}

.industry-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  transition: all 0.4s ease;
  position: relative;
}

.industry-icon-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: conic-gradient(from 0deg, transparent, rgba(255,122,97,0.5), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: ring-spin 3s linear infinite paused;
}

.industry-item:hover .industry-icon-ring::after {
  opacity: 1;
  animation-play-state: running;
}

@keyframes ring-spin {
  100% { transform: rotate(360deg); }
}

.industry-icon-ring svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
}

.industry-item:hover .industry-icon-ring {
  border-color: var(--accent-coral);
  box-shadow: 0 0 18px rgba(255,122,97,0.25);
}

.industry-item:hover .industry-icon-ring svg {
  transform: scale(1.15);
}

.industry-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.industry-item:hover .industry-label {
  color: var(--accent-coral);
}

/* Staggered animation delays for industries */
.industry-item[data-delay="1"] { transition-delay: 0.05s; }
.industry-item[data-delay="2"] { transition-delay: 0.1s; }
.industry-item[data-delay="3"] { transition-delay: 0.15s; }
.industry-item[data-delay="4"] { transition-delay: 0.2s; }
.industry-item[data-delay="5"] { transition-delay: 0.25s; }
.industry-item[data-delay="6"] { transition-delay: 0.3s; }
.industry-item[data-delay="7"] { transition-delay: 0.35s; }


/* --- How We Work (Workflow) Section --- */
.workflow-section {
  padding: 60px 0 80px;
  background-color: var(--bg-espresso);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.workflow-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 96, 68, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.workflow-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.workflow-header .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.workflow-header h2 {
  color: var(--bg-white);
}

.workflow-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.workflow-line-bg {
  position: absolute;
  top: 45px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(232, 225, 219, 0.15);
  z-index: 0;
}

.workflow-line-active {
  position: absolute;
  top: 45px;
  left: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-hover));
  width: 20%;
  z-index: 1;
  transition: width var(--transition-normal);
  box-shadow: 0 0 12px var(--accent-coral);
}

.workflow-step {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.step-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-espresso-light);
  border: 2px solid var(--border-stone-dark);
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 20px;
  font-family: var(--font-code);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-normal);

}

.workflow-step:hover .step-node,
.workflow-step.active .step-node {
  background: var(--accent-coral);
  color: var(--bg-white);
  border-color: var(--accent-coral);
  box-shadow: 0 0 24px rgba(255, 96, 68, 0.5);
  transform: scale(1.15);
}

.step-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.workflow-step:hover .step-name,
.workflow-step.active .step-name {
  color: var(--bg-white);
}

/* Accordion details + chevron are mobile-only (hidden on desktop) */
.workflow-step .step-details {
  display: none;
}

.step-chevron {
  display: none;
}

/* Workflow Detail Console */
.workflow-console {
  background: var(--bg-espresso-dark);
  border: 1px solid var(--border-stone-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.console-title {
  font-size: 1.8rem;
  color: var(--bg-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.console-title .phase-badge {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 96, 68, 0.2);
  color: var(--accent-coral);
  font-family: var(--font-code);
}

.console-body {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.console-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-box {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.spec-label {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spec-val {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-white);
}

.console-tech-visual {
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: #10B981;
}

.code-line {
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.code-line .line-num {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.code-line .code-key { color: var(--accent-coral); }
.code-line .code-str { color: #F59E0B; }

/* --- Portfolio Preview Section --- */
.portfolio-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.portfolio-header {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio-header-center {
  text-align: center;
}

.portfolio-header-center .section-heading {
  margin-bottom: 0;
}

.portfolio-view-all-link {
  position: absolute;
  right: 0;
  bottom: -10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.portfolio-view-all-link:hover {
  color: var(--text-dark);
}

.portfolio-view-all-link .link-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.portfolio-view-all-link:hover .link-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .portfolio-view-all-link {
    position: static;
    margin-top: 16px;
  }
}

.portfolio-header .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.testimonials-header .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Work page: 3 columns, bigger gap so cards feel compact and well-spaced */
#work-projects-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

/* When the card itself is an anchor tag */
a.project-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-coral);
}

.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-espresso);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Hover overlay on card thumbnail */
.project-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 8, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover .project-thumb-overlay {
  opacity: 1;
}

.project-cta-label {
  font-family: var(--font-code);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  border: 2px solid var(--accent-coral);
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255, 96, 68, 0.2);
  backdrop-filter: blur(4px);
  transform: translateY(10px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-cta-label {
  transform: translateY(0);
}


.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(46, 34, 28, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: var(--accent-coral);
  font-family: var(--font-code);
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(255, 96, 68, 0.3);
}

.project-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  font-size: 0.7rem;
  font-family: var(--font-code);
  color: var(--text-muted);
  background: rgba(46, 34, 28, 0.05);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.project-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.35;
}

.project-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.project-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* --- Client Feedback / Testimonials --- */
.testimonials-section {
  padding: 60px 0 70px 0;
  background-color: rgba(232, 225, 219, 0.3);
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 45px;
}

.testimonials-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  padding: 30px 0 45px 0;
  cursor: grab;
  user-select: none;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  transform-style: preserve-3d;
  will-change: transform;
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 12px 32px rgba(46, 34, 28, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform, opacity;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(255, 96, 68, 0.16);
  border-color: var(--accent-coral);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-coral);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.client-details .client-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--bg-espresso);
}

.client-details .client-role {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* --- Final CTA & Contact Form Section --- */
.contact-section {
  padding: 130px 0;
  background-color: var(--bg-espresso);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;

}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 96, 68, 0.15);
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-coral);
  font-family: var(--font-code);
  text-transform: uppercase;
}

.contact-item-text span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-white);
}

.contact-card-form {
  background: var(--bg-espresso-light);
  border: 1px solid var(--border-stone-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-espresso-dark);
  border: 1px solid var(--border-stone-dark);
  border-radius: var(--radius-md);
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-coral);
  box-shadow: 0 0 12px rgba(255, 96, 68, 0.3);
}

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

.form-submit-btn {
  width: 100%;
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-espresso-dark);
  color: var(--text-light-muted);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand-logo {
  height: 44px;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.925rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-links a:hover {
  color: var(--accent-coral);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

/* --- Cursor highlight glow (all pages) --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(255, 96, 68, 0.32) 0%,
    rgba(255, 160, 122, 0.18) 30%,
    rgba(46, 34, 28, 0.08) 55%,
    transparent 72%);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .workflow-pipeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .workflow-line-bg, .workflow-line-active {
    display: none;
  }

  .workflow-console {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  #work-projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    width: auto;
    height: auto;
    background: var(--bg-espresso);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    color: var(--bg-white);
    font-size: 1rem;
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 96, 68, 0.12);
  }

  .mobile-toggle {
    display: flex;
  }

  .services-matrix {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .workflow-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile: deck of stacked cards */
  .workflow-pipeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .workflow-step {
    display: block;
    text-align: left;
    position: relative;
    padding: 0;
    background: var(--bg-espresso-light);
    border: 1px solid var(--border-stone-dark);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: -20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transform: scale(0.97);
    opacity: 0.72;
    z-index: 1;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.45s ease,
                box-shadow 0.45s ease,
                margin-bottom 0.45s ease;
  }

  .workflow-step:last-child {
    margin-bottom: 0;
  }

  .workflow-step.active {
    transform: scale(1);
    opacity: 1;
    z-index: 5;
    border-color: var(--accent-coral);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4),
                0 0 0 1px var(--accent-coral);
  }

  /* Card header row: node + name */
  .workflow-step .step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: var(--bg-espresso-light);
  }

  .workflow-step .step-node {
    margin: 0;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    font-size: 0.8rem;
    border-width: 1.5px;
  }

  .workflow-step:hover .step-node,
  .workflow-step.active .step-node {
    transform: scale(1.06);
  }

  .workflow-step .step-name {
    font-size: 1rem;
  }

  /* Expandable detail panel inside the card */
  .workflow-step .step-details {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .workflow-step.active .step-details {
    max-height: 900px;
    opacity: 1;
  }

  .step-chevron {
    display: block;
  }

  .workflow-step .step-details-inner {
    padding: 16px 16px 20px;
  }

  .workflow-step .step-details-inner h3 {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .workflow-step .step-details-inner h3 .phase-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 96, 68, 0.2);
    color: var(--accent-coral);
    font-family: var(--font-code);
  }

  .workflow-step .step-details-inner p {
    color: var(--text-light-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .workflow-step .step-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .workflow-step .step-specs .spec-box {
    padding: 11px;
  }

  .workflow-step .step-code {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 14px;
    font-family: var(--font-code);
    font-size: 0.74rem;
    color: #10B981;
    white-space: pre-wrap;
    word-break: break-word;
  }

  /* Chevron indicator */
  .workflow-step .step-chevron {
    margin-left: auto;
    color: var(--accent-coral);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .workflow-step.active .step-chevron {
    transform: rotate(180deg);
  }

  .workflow-console {
    display: none;
  }

  .testimonial-card {
    width: 300px;
    padding: 24px;
  }

  /* Hero responsive */
  .hero {
    padding-top: 110px;
    padding-bottom: 70px;
    min-height: 100vh;
  }

  .hero-scroll-cue {
    display: none;
  }

  .floating-badge-1 {
    left: -8px;
  }

  .floating-badge-2 {
    right: -8px;
  }

  .hero-title span.accent-box::after {
    bottom: 3px;
    height: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* =============================================
   ABOUT PAGE — BLOG EDITORIAL STYLE
   ============================================= */

/* ---- About Hero ---- */
.about-hero {
  padding: 100px 0 5px;
  background: var(--bg-white);
  text-align: center;
}

.about-hero-eyebrow {
  font-family: var(--font-code);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-coral);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

/* ---- Section 1: Our Story (Light, Image Right) ---- */
.about-our-story {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-stone);
}

/* ---- Section 2: Why BUSYTIZE Started (Dark, Image Left) ---- */
.about-why-started {
  padding: 60px 0;
  background: var(--bg-espresso);
  color: var(--text-light);
}

/* Shared editorial split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-split-text {}

.about-split-label {
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-split-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--bg-espresso);
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-why-started .about-split-heading {
  color: var(--bg-white);
}

.about-split-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-why-started .about-split-body {
  color: var(--text-light-muted);
}

.about-split-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(46, 34, 28, 0.18);
}

.about-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-split-img-wrapper:hover .about-split-img {
  transform: scale(1.04);
}

/* ---- Section 3: Meet the Founders ---- */
.founders-section {
  position: relative;
  padding: 100px 0;
  background-color: #FAF8F6;
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
  overflow: hidden;
}

/* Background Animation Layer */
.founders-bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.founders-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(46, 34, 28, 0.08) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 122, 97, 0.05) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px;
  opacity: 0.6;
}

.founders-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.glow-coral {
  top: 10%;
  left: 15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 97, 0.3) 0%, rgba(255, 122, 97, 0) 70%);
  animation-delay: 0s;
}

.glow-espresso {
  bottom: 10%;
  right: 15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(46, 34, 28, 0.15) 0%, rgba(46, 34, 28, 0) 70%);
  animation-delay: 4s;
}

.glow-amber {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
  animation-delay: 2s;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15) translate(-15px, 20px);
    opacity: 0.6;
  }
  100% {
    transform: scale(0.9) translate(15px, -15px);
    opacity: 0.35;
  }
}

/* Floating Tech & Design Badges */
.floating-badge {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 97, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-espresso);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: floatBob 6s ease-in-out infinite alternate;
}

.badge-code {
  top: 25%;
  left: 8%;
  animation-duration: 5s;
}

.badge-design {
  top: 30%;
  right: 8%;
  animation-duration: 7s;
  animation-delay: 1s;
}

.badge-stack {
  bottom: 22%;
  left: 10%;
  animation-duration: 6.5s;
  animation-delay: 2s;
}

.badge-craft {
  bottom: 25%;
  right: 10%;
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}

@keyframes floatBob {
  0% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
  100% {
    transform: translateY(6px) rotate(-1.5deg);
  }
}

@media (max-width: 992px) {
  .floating-badge {
    display: none;
  }
}

/* Mobile Phone Mockups Container */
.founders-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.phone-mockup {
  position: relative;
  width: 300px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) rotate(1deg);
}

#phone-maya {
  transform: translateY(20px);
}

#phone-maya:hover {
  transform: translateY(10px) rotate(-1deg);
}

/* Phone Frame */
.phone-frame {
  position: relative;
  width: 300px;
  height: 580px;
  background: #1C1917;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.35),
    inset 0 0 0 2px #38332E,
    inset 0 0 0 3px #1C1917;
}

/* Phone Buttons */
.phone-side-btn {
  position: absolute;
  background: #2E2824;
  border-radius: 2px;
}

.phone-btn-vol-up {
  left: -4px;
  top: 110px;
  width: 4px;
  height: 45px;
}

.phone-btn-vol-down {
  left: -4px;
  top: 165px;
  width: 4px;
  height: 45px;
}

.phone-btn-power {
  right: -4px;
  top: 130px;
  width: 4px;
  height: 60px;
}

/* Screen */
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Status Bar & Notch */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1C1917;
  z-index: 10;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #1C1917;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 12;
}

.phone-speaker {
  width: 34px;
  height: 4px;
  background: #2E2824;
  border-radius: 2px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  background: #12100E;
  border-radius: 50%;
}

/* Content Area inside Phone */
.phone-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 12px;
}

.phone-photo-wrapper {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #2E221C;
  position: relative;
}

.phone-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-profile {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.phone-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-espresso);
  margin-bottom: 2px;
}

.phone-role {
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 10px;
}

.phone-intro {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.phone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.phone-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  background: #F0EAE5;
  color: var(--bg-espresso);
  border-radius: 12px;
}

.phone-linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bg-white);
  background: var(--bg-espresso);
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: auto;
}

.phone-linkedin-btn:hover {
  background: var(--accent-coral);
}

.phone-home-indicator {
  width: 100px;
  height: 4px;
  background: #38332E;
  border-radius: 2px;
  margin: 8px auto 0;
}

/* ---- Section 4: Why Work With Us (3D Laptop Screen Frame) ---- */
.why-work-section {
  padding: 50px 0 60px 0;
  background: var(--bg-espresso);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.laptop-container {
  max-width: 620px;
  margin: 36px auto 0 auto;
  perspective: 1200px;
}

.laptop-mockup {
  position: relative;
  width: 100%;
}

.laptop-screen-frame {
  background: #1A1614;
  border: 10px solid #2A231F;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  position: relative;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.laptop-camera {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: #080706;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.laptop-display {
  background: radial-gradient(circle at center, #261F1A 0%, #15110E 100%);
  padding: 12px 14px 16px 14px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Glass screen reflection overlay */
.laptop-display::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, transparent 60%);
  pointer-events: none;
  z-index: 5;
}

.laptop-os-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.os-window-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.os-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.os-close { background: #FF5F56; }
.os-min   { background: #FFBD2E; }
.os-max   { background: #27C93F; }

.os-title {
  font-family: var(--font-code);
  font-size: 0.65rem;
  color: var(--accent-coral);
  letter-spacing: 0.04em;
}

.os-status {
  font-family: var(--font-code);
  font-size: 0.62rem;
  color: #10B981;
}

.laptop-keyboard-base {
  height: 12px;
  background: linear-gradient(to bottom, #3A302B 0%, #201A17 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
  box-shadow: 
    0 10px 28px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.laptop-notch {
  width: 56px;
  height: 4px;
  background: #14100E;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid rgba(0,0,0,0.5);
}

.why-work-slider-wrapper {
  width: 100%;
  margin: 6px 0 0 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-work-slider-track {
  position: relative;
  width: 100%;
  min-height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-work-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);

  /* Entrance/Exit Transitions */
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px) scale(0.95);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.55s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.why-work-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  border-color: var(--accent-coral);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 96, 68, 0.15);
}

.why-work-slide.prev-exit {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px) scale(0.95);
}

.why-work-slide-num {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--accent-coral);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.why-work-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.slider-dot.active {
  width: 22px;
  border-radius: 6px;
  background: var(--accent-coral);
}

.slider-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 6;
}

.slider-btn:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 96, 68, 0.35);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .laptop-screen-frame {
    border-width: 8px;
  }
  .laptop-display {
    padding: 12px;
  }
  .why-work-slide {
    padding: 24px 16px;
  }
  .why-work-slider-track {
    min-height: 290px;
  }
}

.why-work-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-coral);
  margin-bottom: 10px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-work-card:hover .why-work-icon {
  transform: scale(1.15) rotate(-5deg);
}

.why-work-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 8px;
}

.why-work-desc {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* ---- Section 5: Mission & Vision (Light Background) ---- */
.mission-vision-section {
  padding: 70px 0;
  background: #FAF8F6;
  border-top: 1px solid var(--border-stone);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.mv-card {
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(46, 34, 28, 0.1);
  border-color: var(--accent-coral);
}

.mv-card-label {
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 122, 97, 0.1);
  border: 1px solid rgba(255, 122, 97, 0.2);
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-card-icon svg {
  width: 26px;
  height: 26px;
}

.mv-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg-espresso);
  margin-bottom: 16px;
}

.mv-card-text {
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- About CTA ---- */
.about-cta-section {
  padding: 100px 0;
  background: var(--bg-espresso);
  text-align: center;
}

.about-cta-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 54px 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 122, 97, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-split-img-wrapper {
    max-height: 380px;
  }
  .founders-grid, .mv-grid {
    grid-template-columns: 1fr;
  }
  .why-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-work-grid {
    grid-template-columns: 1fr;
  }
}

.about-narrative {
  max-width: 860px;
  margin: 0 auto;
}

.narrative-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--border-stone);
}

.narrative-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.narrative-subheading {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--bg-espresso);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.narrative-subheading svg {
  color: var(--accent-coral);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.narrative-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.narrative-text:last-child {
  margin-bottom: 0;
}

/* Founders Section — CARD STYLE ONLY */
.founders-section {
  padding: 110px 0;
  background-color: #FAFAFA;
  border-top: 1px solid var(--border-stone);
  border-bottom: 1px solid var(--border-stone);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 50px;
}

.founder-card {
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(46, 34, 28, 0.12), 0 0 30px rgba(255, 122, 97, 0.1);
  border-color: var(--accent-coral);
}

.founder-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-espresso);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.founder-card:hover .founder-img {
  transform: scale(1.05);
}

.founder-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-espresso);
  margin-bottom: 4px;
}

.founder-role {
  font-family: var(--font-code);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-coral);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.founder-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.founder-expertise {
  margin-bottom: 26px;
}

.expertise-label {
  font-family: var(--font-code);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--bg-espresso);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-linkedin {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
}

/* Mission Vision Values — Sequential Typography */
.mvv-section {
  padding: 110px 0;
  background: var(--bg-white);
}

/* Why Work With Us — Sequential List */
.why-section {
  padding: 110px 0;
  background: var(--bg-espresso);
  color: var(--text-light);
}

.why-list {
  max-width: 860px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-item {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.why-item-num {
  font-family: var(--font-code);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-coral);
}

.why-item-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bg-white);
}

.why-item-desc {
  font-size: 0.975rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* About CTA Banner */
.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-espresso-dark) 0%, var(--bg-espresso) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 54px 44px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 122, 97, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* =============================================
   FLOATING CONTACT TRIGGER BUTTON
   ============================================= */
.floating-contact-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Only the icon itself should be clickable — not the invisible surrounding area */
  pointer-events: none;
}

.floating-contact-btn:hover {
  transform: translateY(-5px) scale(1.04);
}

.floating-contact-label {
  background: rgba(30, 24, 20, 0.92);
  color: var(--text-light);
  font-family: var(--font-code);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 122, 97, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  white-space: nowrap;

  /* Hidden by default, pops out on hover */
  opacity: 0;
  visibility: hidden;
  transform: translateX(14px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.floating-contact-icon:hover ~ .floating-contact-label,
.floating-contact-btn:hover .floating-contact-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  box-shadow: 0 12px 30px rgba(255, 122, 97, 0.35);
  pointer-events: auto;
}

.floating-contact-icon {
  position: relative;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FF7A61 0%, #E65A40 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 
    0 12px 30px rgba(255, 122, 97, 0.45), 
    0 0 0 4px rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Re-enable clicks exactly on the icon circle */
  pointer-events: auto;
  cursor: pointer;
}

.floating-contact-btn:hover .floating-contact-icon {
  box-shadow: 
    0 16px 40px rgba(255, 122, 97, 0.7), 
    0 0 0 6px rgba(255, 122, 97, 0.3);
  transform: rotate(-10deg) scale(1.05);
}

.floating-contact-icon svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
}

.floating-contact-btn:hover .floating-contact-icon svg {
  transform: scale(1.1);
}

.floating-ping {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10B981;
  border: 2.5px solid #1C1917;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
  }
  .floating-contact-label {
    display: none;
  }
}
  .founders-grid {
    grid-template-columns: 1fr;
  }


/* ==========================================================================
   CONTACT PAGE — SITE-WIDE INTEGRATED STYLES
   ========================================================================== */

/* Subheading Note Banner */
.form-header-note {
  background: rgba(255, 96, 68, 0.1);
  border: 1px solid rgba(255, 96, 68, 0.3);
  border-left: 4px solid var(--accent-coral);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-header-note svg {
  color: var(--accent-coral);
  flex-shrink: 0;
}

/* FAQ Accordion Section */
.faq-section-project {
  padding: 50px 0 10px 0;
  background-color: var(--bg-espresso);
  border-top: 1px solid var(--border-stone-dark);
  border-bottom: 1px solid var(--border-stone-dark);
}

.faq-container-project {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item-project {
  background: var(--bg-espresso-light);
  border: 1px solid var(--border-stone-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item-project.active {
  border-color: var(--accent-coral);
  box-shadow: 0 8px 24px rgba(255, 96, 68, 0.15);
}

.faq-question-project {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question-project:hover {
  color: var(--accent-coral);
}

.faq-icon-project {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 96, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  font-family: var(--font-code);
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item-project.active .faq-icon-project {
  background: var(--accent-coral);
  color: var(--bg-white);
  transform: rotate(180deg);
}

.faq-answer-project {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item-project.active .faq-answer-project {
  max-height: 400px;
  padding: 0 24px 24px;
}

/* Compact Bottom Reach Section */
.bottom-reach-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-stone-dark);
}

.bottom-reach-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compact-reach-card {
  background: var(--bg-espresso-light);
  border: 1px solid var(--border-stone-dark);
  border-radius: var(--radius-md);
  padding: 20px;
}

.compact-reach-header {
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compact-phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.compact-phone-item:last-child {
  border-bottom: none;
}

.compact-phone-text {
  font-family: var(--font-code);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-white);
}

.compact-btn-group {
  display: flex;
  gap: 6px;
}

.compact-badge-btn {
  font-family: var(--font-code);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.compact-badge-btn.call {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
}

.compact-badge-btn.call:hover {
  background: var(--accent-coral);
}

.compact-badge-btn.wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.compact-badge-btn.wa:hover {
  background: #25D366;
  color: #FFF;
}

.compact-social-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.compact-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-stone-dark);
  border-radius: var(--radius-full);
  color: var(--bg-white);
  font-family: var(--font-code);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.compact-social-pill svg {
  width: 14px;
  height: 14px;
}

.compact-social-pill:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  background: rgba(255, 96, 68, 0.1);
}

@media (max-width: 900px) {
  .contact-split-wrapper {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  .bottom-reach-wrapper {
    grid-template-columns: 1fr;
  }
}





