/* ===================================================
   MPF / PARTICLEAR — ADDITIONAL STYLES
   Extra components & animations
   =================================================== */

/* ─── ANIMATED TEXT SPLIT ────────────────────────── */
.text-split {
  overflow: hidden;
  display: block;
}

.text-split-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-split-inner.revealed {
  transform: translateY(0);
}

/* ─── ABOUT PHILOSOPHY BLOCKS ────────────────────── */
.philosophy-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.philosophy-block {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.philosophy-block:hover {
  border-color: rgba(200, 90, 50, 0.3);
  background: rgba(200, 90, 50, 0.03);
}

.philosophy-block-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.philosophy-block-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.philosophy-block-text {
  font-size: 0.78rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ─── MARQUEE TEXT SECTION ───────────────────────── */
.marquee-section {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--black);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-muted);
}

.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ─── COUNTER ANIMATION ───────────────────────────── */
.counter-animate {
  display: inline-block;
}

/* ─── SERVICE ICON SVG ───────────────────────────── */
.service-icon svg {
  width: 100%;
  height: 100%;
}

/* ─── PROCESS NAV HINT ───────────────────────────── */
.process-nav-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-top: 24px;
}

.process-nav-hint svg {
  width: 20px;
  height: 20px;
}

/* ─── PORTFOLIO VIDEO BADGE ───────────────────────── */
.porto-video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

/* ─── TEAM SOCIAL HOVER ───────────────────────────── */
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200,90,50,0.85) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  transition: opacity var(--transition);
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

/* ─── ABOUT IMAGE GRID EXPANDED ──────────────────── */
.about-visual-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid rgba(200, 90, 50, 0.2);
  z-index: -1;
}

/* ─── GLOW EFFECT ─────────────────────────────────── */
.glow-blue {
  box-shadow: 0 0 80px rgba(26, 74, 122, 0.2);
}

/* ─── NUMBERED LIST ───────────────────────────────── */
.num-list {
  list-style: none;
  counter-reset: list;
}

.num-list li {
  counter-increment: list;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.num-list li::before {
  content: counter(list, decimal-leading-zero);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  padding-top: 2px;
  flex-shrink: 0;
}

/* ─── CTA AREA ─────────────────────────────────────── */
.cta-area {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── SECTION DIVIDER ORNAMENT ───────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.section-divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ─── SCROLL BAR ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-mid);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--terracotta);
}

/* ─── CONTACT FORM STYLE (optional) ──────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-input::placeholder {
  color: var(--gray-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.form-input:focus {
  border-bottom-color: var(--terracotta);
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

/* ─── AWARD BADGE ─────────────────────────────────── */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(200,90,50,0.3);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ─── TICKER TAPE ─────────────────────────────────── */
.ticker-section {
  background: var(--terracotta);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: marquee 12s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.ticker-sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
